natural-language
Here are 298 public repositories matching this topic...
Description
Add a ReadMe file in the GitHub folder.
Explain usage of the Templates
Other Comments
Principles of NLP Documentation
Each landing page at the folder level should have a ReadMe which explains -
○ Summary of what this folder offers.
○ Why and how it benefits users
○ As applicable - Documentation of using it, brief description etc
Scenarios folder:
○
When using a pocketsphinx wakeword mycroft tries to load a language specific model. If the model doesn't exist the load fails. (report on the forums)
This should be handled by using a fallback mechanism, so if no language specific model exists it should log a warning and fallback to using the english model that is included in mycr
It would be great if simple replace could be made (partly) case sensitive. By this I mean:
- detect if there is uppercase in part before =
- if so, change behaviour to suggest check left part case sensitively, and suggest the right parts the same; except for the first token when this is at the start of the sentence
-
Updated
May 28, 2020 - JavaScript
-
Updated
Apr 23, 2020 - JavaScript
Ghost unit tests no longer pass, for unknown reason. The last passed in pull req #3632 on 4 March 2020 and fail on #3636 which does nothing but modify the README.
The last time all 11 unit tests ran and passed was https://circleci.com/gh/opencog/opencog/2422 (later pull reqs did not run all tests!?)
There were only two changes: first change is opencog/opencog@852c6
mocha@7 deprecated mocha.opts.
We need to migrate mocha.opts to mocharc.json.
I've created migration script https://github.com/azu/mocha-migrate
Task
- Upgrade to Mocha@7 Probably already done?
- Migrate mocha.opts to mocharc.json
Useful oneliner:
./node_modules/.bin/lerna exec --no-bail npx @azu/mocha-migrate migrate-opts -- -file test/mocha.opts -type json
-
Updated
May 27, 2020 - TypeScript
-
Updated
May 27, 2020 - Python
I wanted to use pytextrank together with spacy_udpipe to get keywords from texts in other languages (see https://stackoverflow.com/questions/59824405/spacy-udpipe-with-pytextrank-to-extract-keywords-from-non-english-text) but I realized, that udpipe-spacy somehow "overrides" the original spacy's pipeline so the noun_chunks are not generated (btw: the noun_chunks are created in lang/en/syntax_itera
您好~
最近看rasa_nlu官方文档,上面写pipline有多种选择方式,除了作者您描述的两种以外,有一种推荐是:
Best for most: spaCy + sklearn
问题是:这个组合+jieba能用来处理中文吗?不了解spaCy,所以想问问作者,当初为什么选择jieba+mitie+sklearn。而不是上面这种组合呢?谢谢
This is also on page 356.
from nltk.corpus import sentiwordnet as swn
good = swn.senti_synsets('good', 'n')[0]
Traceback (most recent call last):
File "", line 1, in
TypeError: 'filter' object is not subscriptable
-
Updated
Mar 29, 2020 - HTML
-
Updated
Jan 25, 2020 - Python
-
Updated
May 29, 2020 - Java
-
Updated
Apr 1, 2020 - Vim script
-
Updated
Jun 1, 2020 - Ring
The newest training script for the NER in particular says it takes in 4 arguments (train_dir, test_dir, format, config_file), however the documentation still says it takes in 3 (only train_dir, test_dir, config_file). It's also unclear what the various types of acceptable formats are.
I assume that given that the format option was added to most scripts, many of the usage instructions need to b
-
Updated
May 28, 2020 - Java
-
Updated
Mar 31, 2020 - Jupyter Notebook
I'm using link-grammar-5.3.15.
This one didn't work for me:
https://github.com/opencog/link-grammar/blob/master/bindings/java/org/linkgrammar/LinkGrammar.java#L43
Even when I added /usr/local/lib to jvm props:
java.lang.UnsatisfiedLinkError: no liblink-grammar in java.library.path
I fixed it by replacing that line into:
System.load("/usr/local/lib/liblink-grammar-java.so")
-
Updated
Nov 25, 2019 - TeX
-
Updated
Mar 1, 2019 - Python
-
Updated
Mar 12, 2020 - Python
-
Updated
May 20, 2020 - Python
-
Updated
May 26, 2020 - JavaScript
-
Updated
May 29, 2020 - Go
-
Updated
Jun 12, 2018 - Swift
Improve this page
Add a description, image, and links to the natural-language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the natural-language topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Other related issues: #408 #251
I trained a Chinese model for spaCy, linked it to
[spacy's package folder]/data/zh(usingspacy link) and want to use that for ludwig. However, when I tried to set the config for ludwig, I received an error, which tell me that there is no way to load the Chinese model.