xlnet
Here are 54 public repositories matching this topic...
-
Updated
Apr 20, 2020 - Python
- Add CI test for building documentations (Do not ignore
warningsand add spellcheck). - Fix docstrings with incorrect/inconsistent Sphinx format. Currently, such issues are treated as
warningsin the docs building.
-
Updated
Oct 23, 2019
On home page of website: https://nlp.johnsnowlabs.com/ I read "Full Python, Scala, and Java support"
Unfortunately it's 3 days now I'm trying to use Spark NLP in Java without any success.
- I cannot find Java API (JavaDoc) of the framework.
- not event a single example in Java is available
- I do not know Scala, I do not know how to convert things like:
val testData = spark.createDataFrame(
-
Updated
May 18, 2020 - Python
Hi,
When we try to tokenize the following sentence:
If we use spacy
a = spacy.load('en_core_web_lg')
doc = a("I like the link http://www.idph.iowa.gov/ohds/oral-health-center/coordinator")
list(doc)
We got
[I, like, the, link, http://www.idph.iowa.gov, /, ohds, /, oral, -, health, -, center, /, coordinator]
But if we use the Spacy transformer tokenizer:
-
Updated
May 6, 2020 - Python
-
Updated
Apr 3, 2020 - Python
-
TransformerDecoder.forward: where doesself.trainingcome from?
https://github.com/asyml/texar-pytorch/blob/d17d502b50da1d95cb70435ed21c6603370ce76d/texar/torch/modules/decoders/transformer_decoders.py#L448-L449 -
All arguments should say their types explicitly in the docstring. E.g., what is the type of
infer_mode? The [method signature](https://texar-pytorch.readthedocs.
-
Updated
Jul 3, 2019 - Jupyter Notebook
-
Updated
Jul 8, 2020
I have trained almost 80thousand examples within 2000 labels,valid acc almost 92%,but test result all example prob is blew 0.01.
I have tried tranning examples to predict.
-
Updated
Apr 24, 2020 - Python
-
Updated
Sep 13, 2019 - Python
Describe the bug
When using the LMFineTuner and specifying the learning_rate_finder_configs , an error is thrown when passing these configs to finetuner.find_learning_rate() as suggested in the documentation and in the [Colab example](https://colab.research.google.com/github/Novetta/adaptnlp/blob/master/tutor
-
Updated
Jul 27, 2019 - Python
-
Updated
Nov 5, 2019 - Python
-
Updated
May 21, 2020 - Python
-
Updated
Mar 24, 2020 - Python
-
Updated
May 18, 2020 - Python
-
Updated
Jul 7, 2020 - Python
-
Updated
Feb 17, 2020 - Python
-
Updated
Jan 8, 2020 - Python
-
Updated
Oct 11, 2019
-
Updated
Oct 23, 2019 - Python
-
Updated
May 7, 2020 - Jupyter Notebook
-
Updated
Jan 4, 2020 - Python
Improve this page
Add a description, image, and links to the xlnet topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the xlnet topic, visit your repo's landing page and select "manage topics."
Consider this code that downloads models and tokenizers to disk and then uses
BertTokenizer.from_pretrainedto load the tokenizer from disk.ISSUE:
BertTokenizer.from_pretrained()does not seem to be compatible with Python's native pathlib module.