From e7a36e4c0d785b76e7f0e5dff2ae8a4272162e7b Mon Sep 17 00:00:00 2001 From: Ryan Kassab <33270781+kassabry@users.noreply.github.com> Date: Wed, 10 Jan 2024 09:17:10 -0600 Subject: [PATCH] Update test.yml Updated the BT_Clustering code line --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a1f3dd..b9f44a6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,7 +42,9 @@ jobs: # Tests the BT clustering - name: Test BT_Clustering shell: bash --login {0} - run: python active_learning_dd/utils/generate_bt_clustering.py --csv_file_or_dir=datasets/sample_data/training_data/iter_0.csv --output_dir=datasets/sample_data/training_data --feature_name="Morgan FP_2_1024" --cutoff=0.4 --dist_function=tanimoto_dissimilarity --process_count=2 --index_name="Index ID" + run: | + cd active_learning_dd/utils + python generate_bt_clustering.py --csv_file_or_dir=./sample_data/unlabeled_data/unlabeled_0.csv --output_dir=./tmp_test --feature_name="Morgan FP_2_1024" --cutoff=0.4 # Tests that base Simulation Runner - name: Test Simulation Runner shell: bash --login {0}