PgsFile 0.3.8__py3-none-any.whl → 0.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of PgsFile might be problematic. Click here for more details.
- PgsFile/Corpora/Stopwords/english.txt +97 -91
- PgsFile/PgsFile.py +106 -1
- PgsFile/__init__.py +2 -2
- PgsFile/models/dics/unigram_freq_only.json +1 -0
- {PgsFile-0.3.8.dist-info → PgsFile-0.4.0.dist-info}/METADATA +4 -4
- {PgsFile-0.3.8.dist-info → PgsFile-0.4.0.dist-info}/RECORD +9 -8
- {PgsFile-0.3.8.dist-info → PgsFile-0.4.0.dist-info}/LICENSE +0 -0
- {PgsFile-0.3.8.dist-info → PgsFile-0.4.0.dist-info}/WHEEL +0 -0
- {PgsFile-0.3.8.dist-info → PgsFile-0.4.0.dist-info}/top_level.txt +0 -0
PgsFile/__init__.py
CHANGED
|
@@ -49,7 +49,7 @@ from .PgsFile import ngrams, bigrams, trigrams, everygrams, compute_similarity,
|
|
|
49
49
|
from .PgsFile import word_list, batch_word_list
|
|
50
50
|
from .PgsFile import cs, cs1, sent_tokenize, word_tokenize, word_tokenize2
|
|
51
51
|
from .PgsFile import word_lemmatize, word_POS, word_NER
|
|
52
|
-
from .PgsFile import extract_noun_phrases, get_LLMs_prompt
|
|
52
|
+
from .PgsFile import extract_noun_phrases, get_LLMs_prompt, extract_keywords_en
|
|
53
53
|
from .PgsFile import extract_dependency_relations, extract_dependency_relations_full
|
|
54
54
|
from .PgsFile import predict_category
|
|
55
55
|
|
|
@@ -63,6 +63,6 @@ from .PgsFile import timeit
|
|
|
63
63
|
# 9. Visualization
|
|
64
64
|
from .PgsFile import replace_white_with_transparency
|
|
65
65
|
from .PgsFile import simhei_default_font_path_MacOS_Windows
|
|
66
|
-
from .PgsFile import get_font_path
|
|
66
|
+
from .PgsFile import get_font_path, resize_image
|
|
67
67
|
|
|
68
68
|
name = "PgsFile"
|