lachlanyoung
commited on
Commit
•
d0d0c7c
1
Parent(s):
0815061
Upload config.json
Browse files- config.json +119 -0
config.json
ADDED
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"paths": {
|
3 |
+
"train": "\"./procare_referrer_organisation_train.spacy\"",
|
4 |
+
"dev": "\"./procare_referrer_organisation_dev.spacy\"",
|
5 |
+
"vectors": "null",
|
6 |
+
"init_tok2vec": "null"
|
7 |
+
},
|
8 |
+
"system": {
|
9 |
+
"gpu_allocator": "null",
|
10 |
+
"seed": "0"
|
11 |
+
},
|
12 |
+
"nlp": {
|
13 |
+
"lang": "\"en\"",
|
14 |
+
"pipeline": "[\"textcat_multilabel\"]",
|
15 |
+
"batch_size": "1000",
|
16 |
+
"disabled": "[]",
|
17 |
+
"before_creation": "null",
|
18 |
+
"after_creation": "null",
|
19 |
+
"after_pipeline_creation": "null",
|
20 |
+
"tokenizer": "{\"@tokenizers\":\"spacy.Tokenizer.v1\"}"
|
21 |
+
},
|
22 |
+
"components": {},
|
23 |
+
"components.textcat_multilabel": {
|
24 |
+
"factory": "\"textcat_multilabel\"",
|
25 |
+
"scorer": "{\"@scorers\":\"spacy.textcat_multilabel_scorer.v2\"}",
|
26 |
+
"threshold": "0.5"
|
27 |
+
},
|
28 |
+
"components.textcat_multilabel.model": {
|
29 |
+
"@architectures": "\"spacy.TextCatBOW.v2\"",
|
30 |
+
"exclusive_classes": "false",
|
31 |
+
"ngram_size": "1",
|
32 |
+
"no_output_layer": "false",
|
33 |
+
"no": "null"
|
34 |
+
},
|
35 |
+
"corpora": {},
|
36 |
+
"corpora.dev": {
|
37 |
+
"@readers": "\"spacy.Corpus.v1\"",
|
38 |
+
"path": "${paths.dev}",
|
39 |
+
"max_length": "0",
|
40 |
+
"gold_preproc": "false",
|
41 |
+
"limit": "0",
|
42 |
+
"augmenter": "null"
|
43 |
+
},
|
44 |
+
"corpora.train": {
|
45 |
+
"@readers": "\"spacy.Corpus.v1\"",
|
46 |
+
"path": "${paths.train}",
|
47 |
+
"max_length": "0",
|
48 |
+
"gold_preproc": "false",
|
49 |
+
"limit": "0",
|
50 |
+
"augmenter": "null"
|
51 |
+
},
|
52 |
+
"training": {
|
53 |
+
"dev_corpus": "\"corpora.dev\"",
|
54 |
+
"train_corpus": "\"corpora.train\"",
|
55 |
+
"seed": "${system.seed}",
|
56 |
+
"gpu_allocator": "${system.gpu_allocator}",
|
57 |
+
"dropout": "0.1",
|
58 |
+
"accumulate_gradient": "1",
|
59 |
+
"patience": "1600",
|
60 |
+
"max_epochs": "0",
|
61 |
+
"max_steps": "20000",
|
62 |
+
"eval_frequency": "200",
|
63 |
+
"frozen_components": "[]",
|
64 |
+
"annotating_components": "[]",
|
65 |
+
"before_to_disk": "null",
|
66 |
+
"before_update": "null"
|
67 |
+
},
|
68 |
+
"training.batcher": {
|
69 |
+
"@batchers": "\"spacy.batch_by_words.v1\"",
|
70 |
+
"discard_oversize": "false",
|
71 |
+
"tolerance": "0.2",
|
72 |
+
"get_length": "null"
|
73 |
+
},
|
74 |
+
"training.batcher.size": {
|
75 |
+
"@schedules": "\"compounding.v1\"",
|
76 |
+
"start": "100",
|
77 |
+
"stop": "1000",
|
78 |
+
"compound": "1.001",
|
79 |
+
"t": "0.0"
|
80 |
+
},
|
81 |
+
"training.logger": {
|
82 |
+
"@loggers": "\"spacy.ConsoleLogger.v1\"",
|
83 |
+
"progress_bar": "false"
|
84 |
+
},
|
85 |
+
"training.optimizer": {
|
86 |
+
"@optimizers": "\"Adam.v1\"",
|
87 |
+
"beta1": "0.9",
|
88 |
+
"beta2": "0.999",
|
89 |
+
"l2_is_weight_decay": "true",
|
90 |
+
"l2": "0.01",
|
91 |
+
"grad_clip": "1.0",
|
92 |
+
"use_averages": "false",
|
93 |
+
"eps": "0.00000001",
|
94 |
+
"learn_rate": "0.001"
|
95 |
+
},
|
96 |
+
"training.score_weights": {
|
97 |
+
"cats_score": "1.0",
|
98 |
+
"cats_score_desc": "null",
|
99 |
+
"cats_micro_p": "null",
|
100 |
+
"cats_micro_r": "null",
|
101 |
+
"cats_micro_f": "null",
|
102 |
+
"cats_macro_p": "null",
|
103 |
+
"cats_macro_r": "null",
|
104 |
+
"cats_macro_f": "null",
|
105 |
+
"cats_macro_auc": "null",
|
106 |
+
"cats_f_per_type": "null"
|
107 |
+
},
|
108 |
+
"pretraining": {},
|
109 |
+
"initialize": {
|
110 |
+
"vectors": "${paths.vectors}",
|
111 |
+
"init_tok2vec": "${paths.init_tok2vec}",
|
112 |
+
"vocab_data": "null",
|
113 |
+
"lookups": "null",
|
114 |
+
"before_init": "null",
|
115 |
+
"after_init": "null"
|
116 |
+
},
|
117 |
+
"initialize.components": {},
|
118 |
+
"initialize.tokenizer": {}
|
119 |
+
}
|