File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,18 @@ This could be one way to do it:
21
21
num_rounds=10
22
22
23
23
for i in $( seq -w 1 ${num_rounds} ) ; do
24
- ./conda.sif python generate_data.py \
24
+ python generate_data.py \
25
25
--num-samples 2000 \
26
26
--training-data data/train_${i} .csv \
27
27
--test-data data/test_${i} .csv
28
28
29
- ./conda.sif python generate_predictions.py \
29
+ python generate_predictions.py \
30
30
--num-neighbors 7 \
31
31
--training-data data/train_${i} .csv \
32
32
--test-data data/test_${i} .csv
33
33
--predictions results/predictions_${i} .csv
34
34
35
- ./conda.sif python plot_results.py \
35
+ python plot_results.py \
36
36
--training-data data/train_${i} .csv \
37
37
--predictions results/predictions_${i} .csv \
38
38
--output-chart results/chart_${i} .png
@@ -51,7 +51,7 @@ For the following we will assume that we have the input data available:
51
51
num_rounds=10
52
52
53
53
for i in $( seq -w 1 ${num_rounds} ) ; do
54
- ./conda.sif python generate_data.py \
54
+ python generate_data.py \
55
55
--num-samples 2000 \
56
56
--training-data data/train_${i} .csv \
57
57
--test-data data/test_${i} .csv
You can’t perform that action at this time.
0 commit comments