Instructions to use Hello-SimpleAI/chatgpt-detector-roberta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Hello-SimpleAI/chatgpt-detector-roberta with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hello-SimpleAI/chatgpt-detector-roberta")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Hello-SimpleAI/chatgpt-detector-roberta") model = AutoModelForSequenceClassification.from_pretrained("Hello-SimpleAI/chatgpt-detector-roberta") - Inference
- Notebooks
- Google Colab
- Kaggle
Correct mispelling
Browse files
README.md
CHANGED
|
@@ -12,7 +12,7 @@ tags:
|
|
| 12 |
|
| 13 |
This model is trained on **the mix of full-text and splitted sentences** of `answer`s from [Hello-SimpleAI/HC3](https://huggingface.co/datasets/Hello-SimpleAI/HC3).
|
| 14 |
|
| 15 |
-
More details refer to [arxiv: 2301.07597](https://arxiv.org/abs/2301.07597) and
|
| 16 |
|
| 17 |
|
| 18 |
The base checkpoint is [roberta-base](https://huggingface.co/roberta-base).
|
|
|
|
| 12 |
|
| 13 |
This model is trained on **the mix of full-text and splitted sentences** of `answer`s from [Hello-SimpleAI/HC3](https://huggingface.co/datasets/Hello-SimpleAI/HC3).
|
| 14 |
|
| 15 |
+
More details refer to [arxiv: 2301.07597](https://arxiv.org/abs/2301.07597) and Github project [Hello-SimpleAI/chatgpt-comparison-detection](https://github.com/Hello-SimpleAI/chatgpt-comparison-detection).
|
| 16 |
|
| 17 |
|
| 18 |
The base checkpoint is [roberta-base](https://huggingface.co/roberta-base).
|