Skip to content

Commit 67ea72c

Browse files
committed
Added summary of the paper
2 parents 2e02c4c + 446286a commit 67ea72c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Simplified implementation of "Convolutional Neural Networks for Sentence Classif
1212
* Refer [this](http://nlp.stanford.edu/projects/glove/) to train or download Glove embeddings and [this](https://code.google.com/archive/p/word2vec/) for Word2Vec embeddings.
1313
* Run `python3 app/train.py --data_dir=path_to_folder_containing_input.txt_and_label.txt --embedding_file_path=path_to_embedding_vectors_file --model_name=name_of_model_from_the_paper`
1414
* For example, if data is in `data` folder, embedding file is `vectors.txt` and model is `cnn_static`, run `python3 app/train.py --data_dir=data --embedding_file_path=vectors.txt --model_name=cnn_static`
15-
* To define your own model, pass `model_name` as `self`, define your model in [app/model/model.py](app/model/model.py)and invoke from `model_selector` function (in [model.py](app/model/model.py)).'
15+
* To define your own model, pass `model_name` as `self`, define your model in [app/model/model.py](app/model/model.py) and invoke from `model_selector` function (in [model.py](app/model/model.py)).
1616
* All supported arguments can be seen in [here](app/utils/argumentparser.py)
1717

1818
## References

0 commit comments

Comments
 (0)