We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bd00ac commit 50057f0Copy full SHA for 50057f0
configs/ensemble/fullEnsembleWithWMV.yaml
@@ -0,0 +1,18 @@
1
+class_path: chebai.ensemble.FullEnsembleWMV
2
+init_args:
3
+ data_processed_dir_main: "path/to/data/processed/main/directory"
4
+# reader_dir_name: "name_of_reader_dir" # default is `smiles_token`
5
+# _validate_configs: False # To avoid check for using same model with same model configs
6
+ model_configs: {
7
+ "model_1_name": {
8
+ "ckpt_path": "path/to/your/model_1/checkpoint.ckpt",
9
+ "class_path": "path/to/your/model_1/class",
10
+ "labels_path": "path/to/your/model_1/classes.json",
11
+ },
12
+
13
+ "model_2_name": {
14
+ "ckpt_path": "path/to/your/model_2/checkpoint.ckpt",
15
+ "class_path": "path/to/your/model_2/class",
16
+ "labels_path": "path/to/your/model_2/classes.json",
17
18
+ }
0 commit comments