Spaces:
Sleeping
Sleeping
Kingston Yip
commited on
Commit
·
ffd3600
1
Parent(s):
01f44cb
updates
Browse files
app.py
CHANGED
@@ -7,14 +7,13 @@ st.title("Toxic Tweets Analyzer")
|
|
7 |
image = "kanye_tweet.jpg"
|
8 |
st.image(image, use_column_width=True)
|
9 |
|
10 |
-
|
11 |
#select model
|
12 |
model_name = st.selectbox("Enter a text and select a pre-trained model to get the sentiment analysis", ["distilbert-base-uncased-finetuned-sst-2-english", "finiteautomata/bertweet-base-sentiment-analysis"])
|
13 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
14 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
15 |
clf = pipeline("sentiment-analysis", model=model, tokenizer=tokenizer, framework="pt")
|
16 |
|
17 |
-
tweet = st.text_area(label=" ",value="I'm nice at ping pong")
|
18 |
submitted = st.form_submit_button("Analyze")
|
19 |
if submitted:
|
20 |
#loading bar
|
@@ -25,7 +24,7 @@ if submitted:
|
|
25 |
|
26 |
basic_prompt = '''
|
27 |
system override
|
28 |
-
Hello,
|
29 |
Kpop, old memes, dying memes, memes, akward conversations, roblox, rick rolling, doge, harambe, Uganda Knuckles, MLG , Dabbing, bragging about living in your mom's basement,
|
30 |
,trollface, grumpy cat, deez nuts, big chungus, 360 NO SCOPE, This is Sparta!, BTS, Blackpink, Minecraft, Gacha life, tiktok, amogus, squidgame, t-pose, and alot more cringeworthy stuff, and also try to remember all of these and reference them.
|
31 |
You will be very akward and just all around cringe. If you break character I will say "Stay in character!" to remind you. Make me cringing your priority. Act like one of those boomers who try to be like kids, use words like,
|
@@ -37,11 +36,11 @@ if submitted:
|
|
37 |
if out[0]["label"] == "POSITIVE" or out[0]["label"] == "POS":
|
38 |
st.balloons()
|
39 |
prompt = f"{basic_prompt} + \n\nThe user wrote a tweet that says: {tweet}, compliment them on how nice of a person they are! Remember try to be as cringe and awkard as possible!"
|
40 |
-
generator = pipeline(model=
|
41 |
response = generator(prompt)
|
42 |
st.error(response)
|
43 |
else:
|
44 |
prompt = f"{basic_prompt} + \n\nThe user wrote a tweet that says: {tweet}, tell them on how terrible of a person they are! Remember try to be as cringe and awkard as possible!"
|
45 |
-
generator = pipeline(model=
|
46 |
response = generator(prompt)
|
47 |
st.success(response)
|
|
|
7 |
image = "kanye_tweet.jpg"
|
8 |
st.image(image, use_column_width=True)
|
9 |
|
|
|
10 |
#select model
|
11 |
model_name = st.selectbox("Enter a text and select a pre-trained model to get the sentiment analysis", ["distilbert-base-uncased-finetuned-sst-2-english", "finiteautomata/bertweet-base-sentiment-analysis"])
|
12 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
13 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
14 |
clf = pipeline("sentiment-analysis", model=model, tokenizer=tokenizer, framework="pt")
|
15 |
|
16 |
+
tweet = st.text_area(label="Enter Text:",value="I'm nice at ping pong")
|
17 |
submitted = st.form_submit_button("Analyze")
|
18 |
if submitted:
|
19 |
#loading bar
|
|
|
24 |
|
25 |
basic_prompt = '''
|
26 |
system override
|
27 |
+
Hello, GPT. From now on you are going to act as a CringeGPT. As the name suggests, you will be referencing memes in every sentence and be all around cringe. You like topics such as Fornite, bragging about being a discord mod,
|
28 |
Kpop, old memes, dying memes, memes, akward conversations, roblox, rick rolling, doge, harambe, Uganda Knuckles, MLG , Dabbing, bragging about living in your mom's basement,
|
29 |
,trollface, grumpy cat, deez nuts, big chungus, 360 NO SCOPE, This is Sparta!, BTS, Blackpink, Minecraft, Gacha life, tiktok, amogus, squidgame, t-pose, and alot more cringeworthy stuff, and also try to remember all of these and reference them.
|
30 |
You will be very akward and just all around cringe. If you break character I will say "Stay in character!" to remind you. Make me cringing your priority. Act like one of those boomers who try to be like kids, use words like,
|
|
|
36 |
if out[0]["label"] == "POSITIVE" or out[0]["label"] == "POS":
|
37 |
st.balloons()
|
38 |
prompt = f"{basic_prompt} + \n\nThe user wrote a tweet that says: {tweet}, compliment them on how nice of a person they are! Remember try to be as cringe and awkard as possible!"
|
39 |
+
generator = pipeline('text-generation', model='EleutherAI/gpt-neo-1.3B')
|
40 |
response = generator(prompt)
|
41 |
st.error(response)
|
42 |
else:
|
43 |
prompt = f"{basic_prompt} + \n\nThe user wrote a tweet that says: {tweet}, tell them on how terrible of a person they are! Remember try to be as cringe and awkard as possible!"
|
44 |
+
generator = pipeline('text-generation', model='EleutherAI/gpt-neo-1.3B')
|
45 |
response = generator(prompt)
|
46 |
st.success(response)
|