Ralfouzan commited on
Commit
3cfcad4
·
1 Parent(s): 5fabbc2

Upload spacy.aravec.model/config.cfg

Browse files
Files changed (1) hide show
  1. spacy.aravec.model/config.cfg +91 -0
spacy.aravec.model/config.cfg ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = null
3
+ dev = null
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ seed = 0
9
+ gpu_allocator = null
10
+
11
+ [nlp]
12
+ lang = "ar"
13
+ pipeline = []
14
+ disabled = []
15
+ before_creation = null
16
+ after_creation = null
17
+ after_pipeline_creation = null
18
+ batch_size = 1000
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+
21
+ [components]
22
+
23
+ [corpora]
24
+
25
+ [corpora.dev]
26
+ @readers = "spacy.Corpus.v1"
27
+ path = ${paths.dev}
28
+ gold_preproc = false
29
+ max_length = 0
30
+ limit = 0
31
+ augmenter = null
32
+
33
+ [corpora.train]
34
+ @readers = "spacy.Corpus.v1"
35
+ path = ${paths.train}
36
+ gold_preproc = false
37
+ max_length = 0
38
+ limit = 0
39
+ augmenter = null
40
+
41
+ [training]
42
+ seed = ${system.seed}
43
+ gpu_allocator = ${system.gpu_allocator}
44
+ dropout = 0.1
45
+ accumulate_gradient = 1
46
+ patience = 1600
47
+ max_epochs = 0
48
+ max_steps = 20000
49
+ eval_frequency = 200
50
+ frozen_components = []
51
+ annotating_components = []
52
+ dev_corpus = "corpora.dev"
53
+ train_corpus = "corpora.train"
54
+ before_to_disk = null
55
+ logger = {"@loggers":"spacy.ConsoleLogger.v1"}
56
+
57
+ [training.batcher]
58
+ @batchers = "spacy.batch_by_words.v1"
59
+ discard_oversize = false
60
+ tolerance = 0.2
61
+
62
+ [training.batcher.size]
63
+ @schedules = "compounding.v1"
64
+ start = 100
65
+ stop = 1000
66
+ compound = 1.001
67
+
68
+ [training.optimizer]
69
+ @optimizers = "Adam.v1"
70
+ beta1 = 0.9
71
+ beta2 = 0.999
72
+ L2_is_weight_decay = true
73
+ L2 = 0.01
74
+ grad_clip = 1.0
75
+ use_averages = false
76
+ eps = 0.00000001
77
+ learn_rate = 0.001
78
+
79
+ [training.score_weights]
80
+
81
+ [initialize]
82
+ vectors = ${paths.vectors}
83
+ init_tok2vec = ${paths.init_tok2vec}
84
+ vocab_data = null
85
+ lookups = null
86
+ before_init = null
87
+ after_init = null
88
+
89
+ [initialize.components]
90
+
91
+ [initialize.tokenizer]