Upd default config

This commit is contained in:
Matthew Honnibal 2020-09-28 12:00:23 +02:00
parent e44a7519cd
commit 9f6ad06452
1 changed files with 7 additions and 9 deletions

View File

@ -48,15 +48,6 @@ max_length = 0
# Limitation on number of training examples # Limitation on number of training examples
limit = 0 limit = 0
[prepare]
# The 'prepare' step is run before training or pretraining. Components and
# the tokenizer can each define their own prepare step, giving them a chance
# to gather resources like lookup-tables, build label sets, construct vocabularies,
# etc. After 'prepare' is finished, the result will be saved out to disk, which
# will then be read in at the start of training. You can call the prepare step
# separately with the `spacy prepare` command, or you can let the train script
# do it for you.
# Training hyper-parameters and additional features. # Training hyper-parameters and additional features.
[training] [training]
seed = ${system.seed} seed = ${system.seed}
@ -109,6 +100,13 @@ use_averages = false
eps = 1e-8 eps = 1e-8
learn_rate = 0.001 learn_rate = 0.001
# The 'initialize' step is run before training or pretraining. Components and
# the tokenizer can each define their own prepare step, giving them a chance
# to gather resources like lookup-tables, build label sets, construct vocabularies,
# etc. After 'prepare' is finished, the result will be saved out to disk, which
# will then be read in at the start of training. You can call the prepare step
# separately with the `spacy prepare` command, or you can let the train script
# do it for you.
[initialize] [initialize]
tokenizer = {} tokenizer = {}
components = {} components = {}