-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |