Skip to content

Commit

Permalink
clean up, and adding more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
todd-cook committed Feb 25, 2019
1 parent 3454f2c commit a94a071
Show file tree
Hide file tree
Showing 19 changed files with 670 additions and 7,246 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,5 @@ _templates

# our virtual environment
p37

data
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "data/treebank_data"]
path = data/treebank_data
url = https://github.com/PerseusDL/treebank_data.git
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Practical ML with examples. Support for articles, arguments, and tutorials.
* Interesting applications of Natural Language Processing and Machine Learning.
* Practical demonstration notebooks
* Longer methods and code extracted from the notebooks for type checking, linting, testing and increased robustness.
* Reproducible experiments
* Type checking via MyPy annotations
* Linting via Pylint
* Doctests whenever possible
Expand All @@ -16,9 +17,9 @@ Practical ML with examples. Support for articles, arguments, and tutorials.
### Install Python 3
### Create Virtual Environment
```
mkdir p37
`which python3` -m venv ./p37
source p37/bin/activate
mkdir p3
`which python3` -m venv ./p3
source p3/bin/activate
```
### Install Requirements

Expand All @@ -44,8 +45,6 @@ mkdir p37
* [1. Assessing Corpus Quality](building_language_model/assessing_corpus_quality.ipynb)
* [2. Making a Frequency Distribution](building_language_model/make_frequency_distribution.ipynb)
* [3. Making a Trie Language Model](building_language_model/make_trie_language_model.ipynb)
### Bootstrapping Classification
* [4. Bootstrapping - Classifying Corpus Documents](bootstrapping_classification/corpus_doc_classify.ipynb)
### Detecting Loanwords
* [5. Making a Frequency Distribution of Transliterated Greek](detecting_loanwords/make_frequency_distribution_greek_transliterated.ipynb)
* [6. Boosting Training Data](detecting_loanwords/boosting_training_data.ipynb)
Expand Down
Loading

0 comments on commit a94a071

Please sign in to comment.