Lukekim commited on
Commit
235fc9d
·
1 Parent(s): 3ec14d5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -1
README.md CHANGED
@@ -10,4 +10,43 @@ 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)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```
17
+ from transformers import *
18
+ import numpy as np
19
+ import pandas as pd
20
+ import os
21
+ import torch
22
+ import torch.nn as nn
23
+
24
+ model = AutoModelForSequenceClassification.from_pretrained("axiomlabs/chatgpt-qa-detector-deberta-v3-large", num_labels=2)
25
+ tokenizer = AutoTokenizer.from_pretrained("axiomlabs/chatgpt-qa-detector-deberta-v3-large")
26
+
27
+ model.eval()
28
+
29
+ prompt = "What do you think about Bitcoin?"
30
+ explanation = ''' As an AI language model, I do not have personal opinions or emotions. However, I can provide information and insights about Bitcoin.
31
+
32
+ Bitcoin is a decentralized digital currency that operates on a peer-to-peer network, without the need for intermediaries such as banks or financial institutions. It was created in 2009 by an unknown person or group using the pseudonym Satoshi Nakamoto.
33
+
34
+ Bitcoin has gained popularity as a means of exchange and a store of value, with some proponents seeing it as a potential alternative to traditional fiat currencies. However, it has also been subject to criticism due to its perceived lack of regulation and potential use in illegal activities.
35
+
36
+ From a technical standpoint, Bitcoin is based on blockchain technology, a distributed ledger that records all transactions made on the network. The blockchain ensures that transactions are secure and transparent, while also allowing for anonymity.
37
+
38
+ Like any investment or asset, Bitcoin has its risks and potential rewards. Its value can be volatile and subject to market fluctuations, and there is no guarantee of returns. It is important to do thorough research and seek professional advice before making any investment decisions.
39
+ '''
40
+
41
+ encoded_input = tokenizer(prompt, explanation, max_length=512, truncation=True, padding="max_length", return_tensors="pt")
42
+
43
+ with torch.no_grad():
44
+ output = model(**encoded_input).logits
45
+ probs = nn.Softmax(dim=1)(output)
46
+ predicted_class = torch.argmax(probs).item()
47
+ if predicted_class == 1:
48
+ print("Likely to be generated by ChatGPT!")
49
+ else:
50
+ print("Likely to be generated by Human!")
51
+
52
+ ```