From c16c545bc8c4939abbf9096577acda2721059a6c Mon Sep 17 00:00:00 2001 From: Varyngoth Date: Tue, 11 Nov 2025 22:05:44 -0400 Subject: [PATCH] Functional runs from nsga_exp.py, however, extremely slow due to limited parallelization --- .gitignore | 5 ++++- setup.sh | 24 ++++++++++++++++++++++++ src/nsga_batch.sh | 4 ++-- src/nsga_exp.py | 19 ++++++++++++------- 4 files changed, 42 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 739e9a2..64e3e15 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ -./src/test/ \ No newline at end of file +./src/test/ +./src/cal_housing.csv +./src/__pycache__ +./src/results_nsga \ No newline at end of file diff --git a/setup.sh b/setup.sh index dc6531b..3b4836b 100644 --- a/setup.sh +++ b/setup.sh @@ -10,3 +10,27 @@ mount -t nfs -o vers=3,proto=tcp 192.168.2.69:/mnt/user/ml_datasets0 /mnt/data WORK_DIR=/mnt/data mkdir -p /mnt/data/cache # ensure directory exists export OPENML_CACHE_DIR=/mnt/data/cache + + +apt install python3-venv + +python3 -m venv + +source