Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,12 +3,13 @@ from transformers import pipeline
|
|
3 |
from datasets import Dataset, DatasetDict
|
4 |
import pandas as pd
|
5 |
import numpy as np
|
|
|
6 |
from transformers import RobertaTokenizerFast, RobertaForSequenceClassification,Trainer, TrainingArguments
|
7 |
|
8 |
|
9 |
-
|
10 |
|
11 |
-
huggingface-cli login --token
|
12 |
|
13 |
model = RobertaForSequenceClassification.from_pretrained('Prakhar618/Gptdetect')
|
14 |
tokenizer = RobertaTokenizerFast.from_pretrained('Prakhar618/Gptdetect', max_length = 256)
|
|
|
3 |
from datasets import Dataset, DatasetDict
|
4 |
import pandas as pd
|
5 |
import numpy as np
|
6 |
+
import subprocess
|
7 |
from transformers import RobertaTokenizerFast, RobertaForSequenceClassification,Trainer, TrainingArguments
|
8 |
|
9 |
|
10 |
+
TOKEN = os.environ.get('token', None)
|
11 |
|
12 |
+
subprocess.run(["huggingface-cli", "login", "--token", TOKEN])
|
13 |
|
14 |
model = RobertaForSequenceClassification.from_pretrained('Prakhar618/Gptdetect')
|
15 |
tokenizer = RobertaTokenizerFast.from_pretrained('Prakhar618/Gptdetect', max_length = 256)
|