Skip to content

Commit

Permalink
generalized config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
MasonDill committed Nov 12, 2024
1 parent 39eddba commit 375e744
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
config.json
20 changes: 10 additions & 10 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"training_dataset_path": "",
"testing_dataset_path": "",
"test_set_path": "P:/project/models/ofta-v2/test.txt",
"train_set_path": "P:/project/models/ofta-v2/train.txt",
"checkpoint_path": "P:/project/models/kv1-checkpoint.keras",
"model_path": "P:/project/models/ofta-v2/otfa-v2-10-10.meta",
"log_path": "P:/project/logs/kv1.txt",
"corpus_path":"P:/project/datasets/CameraPrIMuS/Corpus",
"voc_path": "P:/project/tf-end-to-end/Data/vocabulary_semantic.txt",
"test_set_path": "/path/to/test.txt",
"train_set_path": "/path/to/train.txt",
"checkpoint_path": "/path/to/checkpoint.keras",
"model_path": "/path/to/model.meta",
"log_path": "/path/to/log.txt",
"corpus_path":"path/to/CameraPrIMuS/Corpus",
"voc_path": "./Data/vocabulary_semantic.txt",
"voc_type": "semantic",
"val_split": 0.1,
"model_params_path": "P:/project/tf-end-to-end/model-params.json",
"otfa_params": "P:/project/tf-end-to-end/otfa.json",
"test_results_path": "P:/project/logs/test_results.txt"
"model_params_path": "./model-params.json",
"otfa_params": "./otfa.json",
"test_results_path": "/path/to/test_results.txt"
}

0 comments on commit 375e744

Please sign in to comment.