YAML Metadata Error:
"language" must only contain lowercase characters
YAML Metadata Error:
"language" with value "ISO 639-1 code for your language, or `multilingual`" is not valid. It must be an ISO 639-1, 639-2 or 639-3 code (two/three letters), or a special value like "code", "multilingual". If you want to use BCP-47 identifiers, you can specify them in language_bcp47.
XLNet-LMGC-M for Machine-Paraphrased Plagiarism Detection
This is the checkpoint for LMGC based on XLNet-base after being trained on the Machine-Paraphrased Plagiarism Dataset:
Additional information about this model:
The model can be loaded to perform Plagiarism like so:
from transformers import AutoModelForSequenceClassification, AutoTokenizer
AutoModelForSequenceClassification("jpelhaw/xlnet-base-plagiarism-detection")
AutoTokenizer.from_pretrained("jpelhaw/xlnet-base-plagiarism-detection")
input = 'Copyright infringement is viewed as an infringement of scholarly uprightness and a penetrate of editorial morals.'
example = tokenizer.tokenize(input, add_special_tokens=True)
answer = model(**example)
# "plagiarism"
- Downloads last month
- 98