Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dodoels committed Nov 29, 2018
1 parent 3c7f28d commit 97dbead
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,37 @@
# n_gram_language_detection
# n_gram_language_detection

To train unigram model with English corpus

```
python -m main train -n 1 -l en
```

To train unigram model with French corpus

```
python -m main train -n 1 -l fr
```

To train bigram model with English corpus

```
python -m main train -n 2 -l en
```

To train bigram model with French corpus

```
python -m main train -n 2 -l fr
```

To detect the language used as sentences with unigram

```
python -m main predict -n 1
```

To detect the language used as sentences with bigram

```
python -m main predict -n 2
```

0 comments on commit 97dbead

Please sign in to comment.