Difference between revisions of "Charlifter"
Jump to navigation
Jump to search
(Created page with ' ==Training== You need a corpus: * <code>XX-corpus.txt</code>: A clean (orthographically correct) corpus in the language You need two wordlists: * <code>XX-clean.txt</code>:…') |
|||
Line 1: | Line 1: | ||
==Training== |
==Training== |
||
Line 20: | Line 19: | ||
<pre> |
<pre> |
||
$ cat cv-training.crp | perl sf.pl -t -l cv |
$ cat cv-training.crp | perl sf.pl -t -l cv |
||
Reading the clean dictionary... |
|||
Clean dictionary processed... |
|||
Reading the "pretty clean" dictionary... |
|||
"Pretty clean" dictionary processed... |
|||
Reading the training text... |
|||
Training texts processed (1143 words)... |
|||
Computing final probabilities... |
|||
Dumping plain text hashes to disk... |
|||
</pre> |
|||
Then: |
|||
<pre> |
|||
$ perl sf.pl -m -l cv |
|||
Reading in plain text hashes... |
|||
Saving storable hashes to disk... |
|||
</pre> |
</pre> |
||
Now you should be able to use the program. |
|||
;Usage |
|||
<pre> |
|||
$ cat testing/cv-source.txt | perl sf.pl -r -d . -l cv |
|||
</pre> |
|||
Revision as of 16:56, 18 August 2011
Training
You need a corpus:
XX-corpus.txt
: A clean (orthographically correct) corpus in the language
You need two wordlists:
XX-clean.txt
: A file with a list of known clean wordsXX-prettyclean.txt
: A file with a list of probably clean words (can be really small)
- Process
First do 'make', you might want to edit the makefile
to change your paths.
Then, put the source files (corpus, wordlists) where sf.pl
can find them, and run:
$ cat cv-training.crp | perl sf.pl -t -l cv Reading the clean dictionary... Clean dictionary processed... Reading the "pretty clean" dictionary... "Pretty clean" dictionary processed... Reading the training text... Training texts processed (1143 words)... Computing final probabilities... Dumping plain text hashes to disk...
Then:
$ perl sf.pl -m -l cv Reading in plain text hashes... Saving storable hashes to disk...
Now you should be able to use the program.
- Usage
$ cat testing/cv-source.txt | perl sf.pl -r -d . -l cv