Create frequency dictionaries for yomichan out of media
Project description
yomidict
Create frequency dictionaries for yomichan out of media.
Currently supported formats are: epub, html, srt, ass, txt
pip install yomidict
MWE:
import yomidict
dm = yomidict.DictMaker()
filelist = ["test.html"]*5 + ["test.epub"]*2 + ["test.srt"]*2
dm.feed_files(filelist)
dm.save("zipfile.zip", "name_in_yomichan", use_suffix=True)
Docs:
DictMaker Object
wcounter
Is a Counter which saves the number of occurences for the tokens that were found during feeding.
refcounter
Keeps track of in how many files a certain token was found. E.g. a value of 0.5 (if normalized) would mean that the token occurs in 50% of all files that were fed.
DictMaker.feedfiles()
def feed_files(
self,
filelist,
skip_errors=True,
reset_refcounter=True,
normalize_refcounter=True,
)
skip_erros: does exactly as the name suggests, it skips errors. During processing of a bunch of files all sorts of errors could occur which would abort the feeding. This might be undesirable and so they can be skipped. The errored files will also be taken in consideration when calculating the DictMaker.refcounter.
reset_refcounter: resets the refcounter before feeding files.
normalize_refcounter: count/total_number_of_files. Therefore, if a token comes up in 8 out of 10 books the value of the counter would be 0.8 instead of 8. This makes it easier to read even without knowing the total number of files that were fed into DictMaker.
DictMaker.save()
def save(
self,
filepath,
dictname,
only_rank_and_freq=False,
use_suffix=True,
use_suffix_rank=False,
use_suffix_freq=False,
)
only_rank_and_freq: by default it the word rank, the word frequency and the refcounter_value get saved. This deactivates the refcounter_value.
use_suffix: activates use_suffix_rank and use_suffix_freq.
use_suffix_rank: if the number is above 1000 the number gets replaced by "num/1000 K" e.g. 2530 becomes 2K and 2434455 becomes 2M.
use_suffix_freq: same as use_suffix_freq but for the frequency
DictMaker.feed_text()
def feed_text(self, text, refcounter_add=False)
can be used to feed a string into DictMaker.
refcounter_add: If true it adds 1 occurrence in refcounter to all the tokens that were found in the fed text.
How to feed a large text file
Do you want to use refcounter? If yes, do you know the number of works inside the large text file? No? Don't use refcounter.
If you do know the number of works inside the large text file, do you know where one work ends and the other begins? Nice, just read it as chunks and let it add to the refcounter and normalize it in the end. If not, don't use refcounter.
To feed a large text file you can just read the text file line by line or sentence by sentence and utilizie the DictMaker._clean_txt()
function.
dm = yomidict.DictMaker()
for line in large_txt_file:
dm.feed_text(dm._clean_txt(line))
If you know the boundaries of each work and can it eat in chunks you could something like this:
dm = yomidict.DictMaker()
for work in large_txt_file:
dm.feed_text(dm._clean_txt(work), refcounter_add=True)
dm.normalize_refcounter(works_in_large_txt_file)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file yomidict-0.1.6.tar.gz
.
File metadata
- Download URL: yomidict-0.1.6.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.5 CPython/3.8.3 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d035cb7ce0d6d4b1eaa4c217cc66a13a2721f451212ab8c2603e00652740849 |
|
MD5 | 21a98968ea3e4d94008d174ce365f544 |
|
BLAKE2b-256 | 7059b527cb6d535d9ff9f71eb54a5ce31cc7516235c590d236c7186b7ec7a4de |
File details
Details for the file yomidict-0.1.6-py3-none-any.whl
.
File metadata
- Download URL: yomidict-0.1.6-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.5 CPython/3.8.3 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c057243f5e6c393e72df12b38cafa3a019d1c55c8b490bb41c5d55c6256b155 |
|
MD5 | c49774ca1fd0df82ed40cafb33ed0b77 |
|
BLAKE2b-256 | ac9f68cf99f0d61b4206a3a0b23600dafd5497c36909c3eaaf27a1955c8b6624 |