Skip to content

Fix typo in active learning #1854

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion active_learning/liver_tumor_al/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ python active_learning.py --base_dir ${LOG_DIR}/all_data_iter2k --data_root ${DA
python active_learning.py --base_dir ${LOG_DIR}/random_i5_q5_iter2k --data_root ${DATA_ROOT} --json_path ${JSON_PATH} --seed 3840 --active_iters 6 --dropout_ratio 0.2 --mc_number 10 --initial_pool 5 --queries 5 --strategy random --steps 2000 --val_interval 1 --batch_size 1 --val_batch_size 1 --lr 1e-4

# # Initial Pool 5 Queries 5 Variance Strategy
python active_learning.py --base_dir ${LOG_DIR}/variance_i5_q5_iter2k --data_root ${DATA_ROOT} --json_path ${JSON_PATH} --seed 3840 --active_iters 6 --dropout_ratio 0.2 --mc_number 10 --initial_pool 5 --queries 5 --strategy random --steps 2000 --val_interval 1 --batch_size 1 --val_batch_size 1 --lr 1e-4
python active_learning.py --base_dir ${LOG_DIR}/variance_i5_q5_iter2k --data_root ${DATA_ROOT} --json_path ${JSON_PATH} --seed 3840 --active_iters 6 --dropout_ratio 0.2 --mc_number 10 --initial_pool 5 --queries 5 --strategy variance --steps 2000 --val_interval 1 --batch_size 1 --val_batch_size 1 --lr 1e-4
2 changes: 1 addition & 1 deletion active_learning/tool_tracking_al/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ python active_learning.py --base_dir ${LOG_DIR}/all_data_iter5k --data_root ${DA
python active_learning.py --base_dir ${LOG_DIR}/random_i15_q15_iter5k --data_root ${DATA_ROOT} --json_path ${JSON_PATH} --seed 240 --active_iters 5 --dropout_ratio 0.2 --mc_number 10 --initial_pool 20 --queries 20 --strategy random --steps 5000 --val_interval 1 --batch_size 1 --val_batch_size 1 --lr 1e-4

# Initial Pool 20 Queries 20 Variance Strategy
python active_learning.py --base_dir ${LOG_DIR}/variance_i15_q15_iter5k --data_root ${DATA_ROOT} --json_path ${JSON_PATH} --seed 240 --active_iters 5 --dropout_ratio 0.2 --mc_number 10 --initial_pool 20 --queries 20 --strategy random --steps 5000 --val_interval 1 --batch_size 1 --val_batch_size 1 --lr 1e-4
python active_learning.py --base_dir ${LOG_DIR}/variance_i15_q15_iter5k --data_root ${DATA_ROOT} --json_path ${JSON_PATH} --seed 240 --active_iters 5 --dropout_ratio 0.2 --mc_number 10 --initial_pool 20 --queries 20 --strategy variance --steps 5000 --val_interval 1 --batch_size 1 --val_batch_size 1 --lr 1e-4
Loading