Skip to content

Commit

Permalink
[UPDATE] configs info
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorreia11 committed Feb 12, 2025
1 parent 20ed20b commit 2da3c43
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 39 deletions.
4 changes: 2 additions & 2 deletions examples/config_files/ES.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exp_name: "ES_EXAMPLE_CONFIG"

init_pop_path: ".../.../path_to_seed_compounds.tsv"
init_pop_path: "data/seed_compounds.csv"
init_pop_size: 100
standardize: True

Expand All @@ -11,4 +11,4 @@ generations: 100
algorithm: "ES"
elitist: True

output_path: ".../output_dir_path/"
output_path: "output_dir_path/"
6 changes: 3 additions & 3 deletions examples/config_files/GA.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
exp_name: "GA_EXAMPLE_CONFIG"

init_pop_path: ".../.../path_to_seed_compounds.tsv"
init_pop_size: 100
init_pop_path: "data/seed_compounds.csv"
init_pop_size: 11
standardize: True

max_rules_by_iter: 22949
Expand All @@ -10,4 +10,4 @@ tolerance: 0.1
generations: 100
algorithm: "GA"

output_path: ".../output_dir_path/"
output_path: "output_dir_path/"
4 changes: 2 additions & 2 deletions examples/config_files/IBEA.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exp_name: "IBEA_EXAMPLE_CONFIG"

init_pop_path: ".../.../path_to_seed_compounds.tsv"
init_pop_path: "data/seed_compounds.csv"
init_pop_size: 100
standardize: True

Expand All @@ -11,4 +11,4 @@ generations: 100
algorithm: "IBEA"
kappa: 1.0

output_path: ".../output_dir_path/"
output_path: "output_dir_path/"
22 changes: 0 additions & 22 deletions examples/config_files/LS.yaml

This file was deleted.

8 changes: 4 additions & 4 deletions examples/config_files/NSGAII.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
exp_name: "NSGAII_EXAMPLE_CONFIG"

init_pop_path: ".../.../path_to_seed_compounds.tsv"
init_pop_size: 100
init_pop_path: "data/seed_compounds.csv"
init_pop_size: 11
standardize: True

max_rules_by_iter: 22949
tolerance: 0.1

generations: 100
generations: 10
algorithm: "NSGAII"

output_path: ".../output_dir_path/"
output_path: "output_dir_path/"
4 changes: 2 additions & 2 deletions examples/config_files/NSGAIII.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exp_name: "NSGAIII_EXAMPLE_CONFIG"

init_pop_path: ".../.../path_to_seed_compounds.tsv"
init_pop_path: "data/seed_compounds.csv"
init_pop_size: 100
standardize: True

Expand All @@ -10,4 +10,4 @@ tolerance: 0.1
generations: 100
algorithm: "NSGAIII"

output_path: ".../output_dir_path/"
output_path: "output_dir_path/"
4 changes: 2 additions & 2 deletions examples/config_files/SA.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exp_name: "SA_EXAMPLE_CONFIG"

init_pop_path: ".../.../path_to_seed_compounds.tsv"
init_pop_path: "data/seed_compounds.csv"
init_pop_size: 100
standardize: True

Expand All @@ -13,4 +13,4 @@ temperature: 1.0
minimum_temperature: 0.000001
alpha: 0.95

output_path: ".../output_dir_path/"
output_path: "output_dir_path/"
4 changes: 2 additions & 2 deletions examples/config_files/SPEA2.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exp_name: "SPEA2_EXAMPLE_CONFIG"

init_pop_path: ".../.../path_to_seed_compounds.tsv"
init_pop_path: "data/seed_compounds.csv"
init_pop_size: 100
standardize: True

Expand All @@ -10,4 +10,4 @@ tolerance: 0.1
generations: 100
algorithm: "SPEA2"

output_path: ".../output_dir_path/"
output_path: "output_dir_path/"

0 comments on commit 2da3c43

Please sign in to comment.