-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
265 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This can take a lot of time. Generate only needed! | ||
# TODO: provide same for 5M benchmarks | ||
|
||
# trivial | ||
python scripts/ruleset_generator.py \ | ||
--chain_depth=0 \ | ||
--num_distractor_objects=3 \ | ||
--total_rulesets=1_000_000 \ | ||
--save_path="trivial_1m" | ||
|
||
|
||
# small | ||
python scripts/ruleset_generator.py \ | ||
--prune_chain \ | ||
--prune_prob=0.3 \ | ||
--chain_depth=1 \ | ||
--sample_distractor_rules \ | ||
--num_distractor_rules=2 \ | ||
--num_distractor_objects=2 \ | ||
--total_rulesets=1_000_000 \ | ||
--save_path="small_1m" | ||
|
||
# medium | ||
python scripts/ruleset_generator.py \ | ||
--prune_chain \ | ||
--prune_prob=0.3 \ | ||
--chain_depth=2 \ | ||
--sample_distractor_rules \ | ||
--num_distractor_rules=3 \ | ||
--num_distractor_objects=0 \ | ||
--total_rulesets=1_000_000 \ | ||
--save_path="medium_1m" | ||
|
||
|
||
# high | ||
python scripts/ruleset_generator.py \ | ||
--prune_chain \ | ||
--prune_prob=0.1 \ | ||
--chain_depth=3 \ | ||
--sample_distractor_rules \ | ||
--num_distractor_rules=4 \ | ||
--num_distractor_objects=1 \ | ||
--total_rulesets=1_000_000 \ | ||
--save_path="high_1m" | ||
|
||
|
||
# medium + distractors | ||
python scripts/ruleset_generator.py \ | ||
--prune_chain \ | ||
--prune_prob=0.8 \ | ||
--chain_depth=2 \ | ||
--sample_distractor_rules \ | ||
--num_distractor_rules=4 \ | ||
--num_distractor_objects=2 \ | ||
--total_rulesets=1_000_000 \ | ||
--save_path="medium_dist_1m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.