Skip to content

Commit 020db70

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents f62a840 + ebc8d5e commit 020db70

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# README
22

3-
## Update 04-02-2019
3+
## Update 12-02-2019
44

5-
- Code development for NER evaluation (F1 scores for tag based, bio+tag based) still continues. I slowed down it a little bit due to personal life issues.
6-
- Decided to simplify README.md and use [Wiki](https://github.com/hbahadirsahin/nlp-experiments-in-pytorch/wiki) of this repository.
7-
- All entries related to the updates in January 2019 are moved to [related Wiki page](https://github.com/hbahadirsahin/nlp-experiments-in-pytorch/wiki/Previous-Updates-(January-2019)).
8-
- I will save my experiment results in Wiki, too.
9-
- While trying to figure out how to use README and Wiki more efficiently, I will figure better things out hopefully =)
10-
- As you may noticed, TextCNN experiments are finished. I will continue with LSTM/GRU experiments (first, I have to figure out a good parameter set =)).
5+
- Since I separated classification and NER trainers/evaluators, I decided to create "scorer" folder to prevent bloating "utils.py" with metric calculation functions.
6+
- "scorer/" will contain current and future metric calculation methods (not giving too much details, since you can always check it =)).
7+
- I encountered some bugs in NER training and evaluation processes due to save/load functionalities. Hopefully, I fully fixed them. but if anyone out there reading this and using this repository, if you find any bugs, just let me know.
8+
- Made some minor changes in namings and indexing (not much crucial stuff, details can be found in git commit message).
9+
- Personal life issues still continues, hence slow development-slow experiment mode still continues.
1110

1211
# Table Of Contents
1312

@@ -62,6 +61,8 @@ I try to keep every part of the project clean and easy to follow. Even though th
6261
- `./model/xyz.py` contains network objects.
6362
- `./model/Util_xyz.py` contains custom-defined objects that are used in `xyz`.
6463
- `./optimizer/custom_optimizer.py` contains custom-defined optimizer objects.
64+
- `./scorer/accuracy_scorer.py` contains classification accuracy metric calculations.
65+
- `./scorer/ner_scorer.py` contains NER-task related metric calculations.
6566
- `./training/trainer.py` is a class that returns the necessary trainer for the user's selected learning model
6667
- `./training/xyz_trainer.py` methods are the trainer functions for specified models.
6768
- `./utils/utils.py` contains both utility and common methods that are being used in several places in the project.
@@ -193,6 +194,15 @@ In this title, I will save the previous updates for me and the visitors to keep
193194

194195
## February 2019
195196

197+
### 04-02-2019
198+
199+
- Code development for NER evaluation (F1 scores for tag based, bio+tag based) still continues. I slowed down it a little bit due to personal life issues.
200+
- Decided to simplify README.md and use [Wiki](https://github.com/hbahadirsahin/nlp-experiments-in-pytorch/wiki) of this repository.
201+
- All entries related to the updates in January 2019 are moved to [related Wiki page](https://github.com/hbahadirsahin/nlp-experiments-in-pytorch/wiki/Previous-Updates-(January-2019)).
202+
- I will save my experiment results in Wiki, too.
203+
- While trying to figure out how to use README and Wiki more efficiently, I will figure better things out hopefully =)
204+
- As you may noticed, TextCNN experiments are finished. I will continue with LSTM/GRU experiments (first, I have to figure out a good parameter set =)).
205+
196206
## References for Code Development
197207

198208
Below repositories really helped me to write a decent and working code:

0 commit comments

Comments
 (0)