Natural language processing
Natural language processing (NLP) is a field of computer science that studies how computers and humans interact. In the 1950s, Alan Turing published an article that proposed a measure of intelligence, now called the Turing test. More modern techniques, such as deep learning, have produced results in the fields of language modeling, parsing, and natural-language tasks.
Here are 13,088 public repositories matching this topic...
-
Updated
Jan 20, 2021 - Python
-
Updated
Jan 19, 2021 - Python
-
Updated
Feb 22, 2021 - Python
-
Updated
Feb 22, 2021 - Python
-
Updated
Jun 12, 2017
Not a high-priority at all, but it'd be more sensible for such a tutorial/testing utility corpus to be implemented elsewhere - maybe under /test/ or some other data- or doc- related module – rather than in gensim.models.word2vec.
Originally posted by @gojomo in RaRe-Technologies/gensim#2939 (comment)
-
Updated
Feb 12, 2021
-
Updated
Feb 10, 2021
-
Updated
Feb 22, 2021 - Python
-
Updated
Feb 21, 2021 - Python
-
Updated
Dec 22, 2020 - Python
-
Updated
Feb 21, 2021 - JavaScript
Unfortunately, I can't find any examples of what it "does" do, but it appears to take a file that is NOT in json format, but has a complete json representation on every single line of the file, with two keys: "text" and "label".
The code showing that is in its _read method:
....
def _read(self, file_path):
with open(cached_path(file_path), "r") as data_file:
for line in
-
Updated
Feb 14, 2021 - Python
-
Updated
Feb 20, 2021 - TypeScript
-
Updated
Jan 1, 2021 - Python
-
Updated
Oct 20, 2020 - Jupyter Notebook
-
Updated
Apr 20, 2020 - Jupyter Notebook
-
Updated
Feb 18, 2021 - Java
-
Updated
Feb 22, 2021 - Python
-
Updated
Oct 22, 2020 - Python
-
Updated
Oct 22, 2020
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))
-
Updated
Sep 23, 2020 - Jupyter Notebook
-
Updated
Jan 22, 2021 - Python
Created by Alan Turing
- Wikipedia
- Wikipedia


This is an intermediate issue, which is why it gets both the good first issue and good second issue tags.
We have an automated script to check when copies of the same code are consistent inside the library, which allows us to avoid subclassing and keep all code for one model's forward pass inside one file (see our philosophy for more details on this).
The XxxModelForYyy are very similar