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 7,141 public repositories matching this topic...
-
Updated
Jan 19, 2021 - Python
-
Updated
Feb 9, 2021 - Jupyter Notebook
-
Updated
Feb 13, 2021 - Python
-
Updated
Feb 17, 2021 - Python
-
Updated
Feb 18, 2021 - Python
-
Updated
Feb 18, 2021 - Python
-
Updated
Jun 12, 2017
Change tensor.data to tensor.detach() due to
pytorch/pytorch#6990 (comment)
tensor.detach() is more robust than tensor.data.
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 18, 2021 - Python
-
Updated
Feb 17, 2021 - Python
-
Updated
Dec 22, 2020 - Python
more details at: allenai/allennlp#2264 (comment)
-
Updated
Feb 14, 2021 - Python
-
Updated
Feb 18, 2021
-
Updated
Jan 1, 2021 - Python
Current pytorch implementation ignores the argument split_f in the function train_batch_ch13 as shown below.
def train_batch_ch13(net, X, y, loss, trainer, devices):
if isinstance(X, list):
# Required for BERT Fine-tuning (to be covered later)
X = [x.to(devices[0]) for x in X]
else:
X = X.to(devices[0])
...Todo: Define the argument `
-
Updated
Oct 20, 2020 - Jupyter Notebook
-
Updated
Feb 18, 2021 - Java
-
Updated
Dec 3, 2020 - Python
-
Updated
Feb 6, 2021
-
Updated
Feb 14, 2021 - Python
-
Updated
Feb 18, 2021 - Python
Hello spoooopyyy hackers
This is a Hacktoberfest only issue!
This is also data-sciency!
The Problem
Our English dictionary contains words that aren't English, and does not contain common English words.
Examples of non-common words in the dictionary:
"hlithskjalf",
"hlorrithi",
"hlqn",
"hm",
"hny",
"ho",
"hoactzin",
"hoactzine
-
Updated
Feb 16, 2021 - Python
-
Updated
Feb 10, 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