Undocumented dependencies in text classification example
See original GitHub issueText classification example depends on sentencepiece
and subword_nmt
packages. These should be documented in the README for the example.
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Discovering Information Explaining API Types Using Text ...
classify tutorial sections as explaining a given API type or not with a precision between ... that take into account dependencies between words...
Read more >Text Analysis using SVM - RPubs
SVM uses features of the the categories to predict its classification. In the case of text analysis, if the category uses certain words,Β ......
Read more >Graph-based Representations for Text Classification
Below is an example of a dependency graph constructed from a random sentence from one of our corpora. Are you able to reconstruct...
Read more >udpipe.pdf
a character vector: The character vector contains the text you want to tok- enize, lemmatise, tag and perform dependency parsing. The names ofΒ ......
Read more >Past and future uses of text mining in ecology and evolution
Training a classifier requires examples of both positive and negative cases (e.g. relevant and irrelevant articles). Databases that reportΒ ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@fbbradheintz This looks like some issue with the conda package for TorchText
conda
doesnβt installsentencepiece
as dependency fortorchtext
:Doing
pip show torchtext
after installingtorchtext
with conda listssentencepiece
as requirement :Directly installing
torchtext
throughpip
command installssentencepiece
as dependencyFIxed in docs.
NB: It looks like
sentencepiece
is a dependency, butsubword_nmt
is not (at least in the latest version oftorchtext
).