File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2424│ └─< pre-trained models>
2525├─train
2626├─tta
27- └─utils
27+ └─library
2828```
2929
3030Set the necessary parameters, and then run the script:
Original file line number Diff line number Diff line change @@ -66,23 +66,23 @@ n_epochs=5
6666echo " Number of epochs: " $n_epochs " "
6767
6868echo " [DEBUG]: testing tta without a proxy and no preprocessing:"
69- tta_command1=` cat ./documentation/tta_readme.md | grep ' ds_path $path_to_images --out_path $path_to_output --pretrained $path_to_pretrained_model --prep_mode 4' `
69+ tta_command1=` cat ./documentation/tta_readme.md | grep ' --image_path $path_to_images --output_path $path_to_output --pretrained $path_to_pretrained_model --prep_mode 4' `
7070echo $tta_command1
7171eval $tta_command1
7272
7373echo " [DEBUG]: testing tta without a proxy and including preprocessing:"
74- tta_command2=` cat ./documentation/tta_readme.md | grep ' ds_path $path_to_images --out_path $path_to_output --ps_path $path_to_preprocessed_images --pretrained $path_to_pretrained_model --prep_mode 1' `
74+ tta_command2=` cat ./documentation/tta_readme.md | grep ' --image_path $path_to_images --output_path $path_to_output --preprocessed_path $path_to_preprocessed_images --pretrained $path_to_pretrained_model --prep_mode 1' `
7575echo $tta_command2
7676eval $tta_command2
7777
7878
7979echo " [DEBUG]: testing tta with a proxy and no preprocessing:"
80- tta_command3=` cat ./documentation/tta_readme.md | grep ' ds_path $path_to_images --px_path $path_to_proxy_labels --out_path $path_to_output --pretrained $path_to_pretrained_model --prep_mode 4' `
80+ tta_command3=` cat ./documentation/tta_readme.md | grep ' --image_path $path_to_images --proxy_path $path_to_proxy_labels --output_path $path_to_output --pretrained $path_to_pretrained_model --prep_mode 4' `
8181echo $tta_command3
8282eval $tta_command3
8383
8484echo " [DEBUG]: testing tta with a proxy and including preprocessing:"
85- tta_command4=` cat ./documentation/tta_readme.md | grep ' ds_path $path_to_images --px_path $path_to_proxy_labels --out_path $path_to_output --ps_path $path_to_preprocessed_images --pretrained $path_to_pretrained_model --prep_mode 1' `
85+ tta_command4=` cat ./documentation/tta_readme.md | grep ' --image_path $path_to_images --proxy_path $path_to_proxy_labels --output_path $path_to_output --preprocessed_path $path_to_preprocessed_images --pretrained $path_to_pretrained_model --prep_mode 1' `
8686echo $tta_command4
8787eval $tta_command4
8888
You can’t perform that action at this time.
0 commit comments