Matthew Honnibal
1b64a44d85
Add dependency patterns example
2017-10-24 11:48:20 +02:00
John Haley
44c61fde25
Fix Keras install in keras_parikeh_entailment
...
The master branch of Keras doesn't work with this example anymore so this pins Keras to version 1.2.2 for this example.
2017-10-19 08:56:28 -07:00
Matthew Honnibal
8b581fdac5
Remove unused example
2017-07-22 13:36:54 +02:00
Matthew Honnibal
94267ec50f
Fix merge conflit in printer
2017-07-22 13:35:15 +02:00
Matthew Honnibal
a405660068
Add commit to tagger example
2017-07-22 13:32:48 +02:00
Matthew Honnibal
3fef5f642b
Rename tagger training example
2017-07-22 13:29:15 +02:00
Matthew Honnibal
8bb443be4f
Add standalone tagger training example
2017-07-22 13:28:51 +02:00
Callum Kift
dfaeee1f37
fixed bug in training ner documentation and example
2017-06-30 09:56:33 +02:00
akYoung
c158cdb1da
Corretions for model test example
...
The sentences of test data in sentence entailment example should be generated with integers limited to vocab_size.
2017-05-03 22:41:23 +08:00
Matthew Honnibal
2da16adcc2
Add dropout optin for parser and NER
...
Dropout can now be specified in the `Parser.update()` method via
the `drop` keyword argument, e.g.
nlp.entity.update(doc, gold, drop=0.4)
This will randomly drop 40% of features, and multiply the value of the
others by 1. / 0.4. This may be useful for generalising from small data
sets.
This commit also patches the examples/training/train_new_entity_type.py
example, to use dropout and fix the output (previously it did not output
the learned entity).
2017-04-27 13:18:39 +02:00
Matthew Honnibal
0605b95f2e
Merge branch 'master' of https://github.com/explosion/spaCy
2017-04-18 13:48:00 +02:00
Matthew Honnibal
2f84626417
Fix train_new_entity_type example
2017-04-18 13:47:36 +02:00
Ines Montani
e7ae3b7cc2
Fix formatting and typo ( closes #967 )
2017-04-16 23:56:12 +02:00
Ines Montani
734b0a4e4a
Update train_new_entity_type.py
2017-04-16 23:42:16 +02:00
ines
264af6cd17
Add documentation
2017-04-16 20:37:46 +02:00
ines
c7adca58a9
Tidy up example and only save/test if output_directory is not None
2017-04-16 16:55:01 +02:00
Matthew Honnibal
40e3024241
Move standalone NER training script into examples directory
2017-04-15 16:13:42 +02:00
Matthew Honnibal
b9c26aae11
Remove neptune refs from new train example
2017-04-15 16:13:17 +02:00
Matthew Honnibal
c729d72fc6
Add new example for training new entity types
2017-04-15 16:11:06 +02:00
Matthew Honnibal
a7626bd7fd
Tmp commit to example
2017-04-15 15:43:14 +02:00
Matthew Honnibal
97b83c74dc
WIP on training example
2017-04-14 23:54:27 +02:00
Kumaran Rajendhiran
3f55d6afae
Update README
2017-04-05 16:59:52 +05:30
Kumaran Rajendhiran
47d7137c83
Set max_length to 100 for demo and evaluate
2017-04-05 16:48:35 +05:30
Kumaran Rajendhiran
10e8dcdfdb
Remove not needed parameters from function
2017-04-05 16:20:47 +05:30
Matthew Honnibal
07726cf0a6
Add example of standalone NER training
2017-03-19 15:01:38 +01:00
Matthew Honnibal
f028f8ad28
Remove unfinished examples
2017-02-18 11:04:41 +01:00
Matthew Honnibal
c031c677cc
Remove unused model_dir option
...
As noted in #845 , the `model_dir` argument was not being used. I've removed it for now, although it would be good to have this option restored and working.
2017-02-18 10:38:22 +01:00
Matthew Honnibal
16ce7409e4
Merge branch 'master' of https://github.com/explosion/spaCy
2017-01-31 13:27:34 -06:00
Matthew Honnibal
80aa4e114b
Fix x keras deep learning example
2017-01-31 13:27:13 -06:00
Matthew Honnibal
ab70f6e18d
Update NER training example
2017-01-27 12:27:10 +01:00
Ines Montani
853130bcf8
Update installation instructions (see #727 )
2017-01-14 22:12:42 +01:00
Matthew Honnibal
5a319060b9
Merge branch 'master' of https://github.com/explosion/spaCy
2016-12-20 16:26:57 -06:00
Matthew Honnibal
7793e2ad82
Fix use of dropout in sentiment analysis LSTM example
2016-12-20 16:26:38 -06:00
Christos Savvopoulos
c19b83f6ae
use model_dir inside of load_model
2016-12-12 20:23:24 +00:00
Christos Savvopoulos
93cf4af701
actually commit load_ner.py
2016-12-12 20:13:33 +00:00
Christos Savvopoulos
ad54a929f8
train_ner should save vocab; add load_ner example
2016-12-12 20:09:49 +00:00
Matthew Honnibal
d0c999e0ad
Add config.py for paddle example
2016-11-20 23:24:51 +01:00
Matthew Honnibal
d75fe7c19a
Update paddle example
2016-11-20 21:45:08 +01:00
Matthew Honnibal
1ef541ddff
Add train.sh for paddle
2016-11-20 21:44:33 +01:00
Matthew Honnibal
001abe2b9d
Update config.py
2016-11-20 03:45:51 +01:00
Matthew Honnibal
409a18bd42
Add paddle sentiment example
2016-11-20 03:35:23 +01:00
Matthew Honnibal
e7eac08819
Work on paddle example
2016-11-20 03:29:36 +01:00
Matthew Honnibal
1ed40682a3
Set vectors in chainer example
2016-11-19 18:42:58 -06:00
Matthew Honnibal
b701a08249
Fix embedding in chainer sentiment example
2016-11-19 19:05:37 +01:00
Matthew Honnibal
8a2de46fcb
Fix GPU usage in chainer example
2016-11-19 10:58:00 -06:00
Matthew Honnibal
4c84aae571
Merge branch 'master' of https://github.com/explosion/spaCy
2016-11-19 02:41:17 -06:00
Matthew Honnibal
3195c52741
Add WIP Chainer sentiment analysis code.
2016-11-19 09:27:59 +01:00
Matthew Honnibal
ff5ab75f5e
Add partial embedding updates to Parikh model, fix dropout, other corrections.
2016-11-18 06:32:12 -06:00
Matthew Honnibal
718e66a7b9
Minibatch the forward pass. THe output argmax is incorrect...
2016-11-16 06:15:28 -06:00
Matthew Honnibal
8f053fd943
Add flag to toggle GPU to DyNet code
2016-11-16 05:51:00 -06:00