Update README.md
Browse files
README.md
CHANGED
@@ -10,9 +10,10 @@ We used a few tricks during training to optimize classification results.
|
|
10 |
|
11 |
Fine-tuning was done for 1 epoch with 8:2 train/validation split. Recorded a validation accuracy of 99% for both GPT Wiki intro and HC3 after the 1st epoch.
|
12 |
|
13 |
-
This model recorded an accuracy of **93.467%** on the public leaderboard of Kaggle's [Detect ChatGPT Answers Contest](https://www.kaggle.com/competitions/ml-olympiad-detect-chatgpt-answers/data)
|
14 |
|
15 |
|
|
|
16 |
```python
|
17 |
from transformers import *
|
18 |
import numpy as np
|
|
|
10 |
|
11 |
Fine-tuning was done for 1 epoch with 8:2 train/validation split. Recorded a validation accuracy of 99% for both GPT Wiki intro and HC3 after the 1st epoch.
|
12 |
|
13 |
+
This model recorded an accuracy of **93.467%** on the public leaderboard and **94.00%** on the private leaderboard of Kaggle's [Detect ChatGPT Answers Contest](https://www.kaggle.com/competitions/ml-olympiad-detect-chatgpt-answers/data)
|
14 |
|
15 |
|
16 |
+
### Example Usage
|
17 |
```python
|
18 |
from transformers import *
|
19 |
import numpy as np
|