First test

This commit is contained in:
2026-05-21 13:45:42 +02:00
parent c7d4dbdea0
commit d7b39f6c9f
2 changed files with 431 additions and 3 deletions

24
run.sh
View File

@@ -1,5 +1,23 @@
#!/bin/bash
echo "Hello!"
sleep 15
echo "Goodbye!"
set -e
VENV_DIR=".venv"
# 1. Create venv if needed
if [[ ! -d "$VENV_DIR" ]]; then
echo "Creating virtual environment..."
python3 -m venv "$VENV_DIR"
fi
# 2. Activate venv
source "$VENV_DIR/bin/activate"
# 3. Install dependencies (lightweight, safe to re-run)
echo "Installing dependencies..."
pip install --upgrade pip
pip install pandas numpy matplotlib seaborn pillow scikit-learn tensorflow
pip install --upgrade kagglehub[pandas-datasets,hf-datasets]
python3 skin_cancer_classification.py
echo "Done."