|
from __future__ import annotations |
|
from typing import Iterable, List, Dict, Tuple |
|
|
|
import gradio as gr |
|
from gradio.themes.base import Base |
|
from gradio.themes.soft import Soft |
|
from gradio.themes.monochrome import Monochrome |
|
from gradio.themes.default import Default |
|
from gradio.themes.utils import colors, fonts, sizes |
|
|
|
import spaces |
|
import torch |
|
import os |
|
import io |
|
import colorsys |
|
|
|
import numpy as np |
|
|
|
from transformers import AutoTokenizer, AutoModelForSequenceClassification, AutoModelForTokenClassification, pipeline |
|
|
|
import matplotlib.pyplot as plt |
|
import plotly.graph_objects as go |
|
from wordcloud import WordCloud |
|
|
|
|
|
def hex_to_rgb(hex_color: str) -> tuple[int, int, int]: |
|
hex_color = hex_color.lstrip('#') |
|
return tuple(int(hex_color[i:i+2], 16) for i in (0, 2, 4)) |
|
|
|
def rgb_to_hex(rgb_color: tuple[int, int, int]) -> str: |
|
return "#{:02x}{:02x}{:02x}".format(*rgb_color) |
|
|
|
def adjust_brightness(rgb_color: tuple[int, int, int], factor: float) -> tuple[int, int, int]: |
|
hsv_color = colorsys.rgb_to_hsv(*[v / 255.0 for v in rgb_color]) |
|
new_v = max(0, min(hsv_color[2] * factor, 1)) |
|
new_rgb = colorsys.hsv_to_rgb(hsv_color[0], hsv_color[1], new_v) |
|
return tuple(int(v * 255) for v in new_rgb) |
|
|
|
monochrome = Monochrome() |
|
|
|
auth_token = os.environ['HF_TOKEN'] |
|
|
|
model1 = AutoModelForSequenceClassification.from_pretrained("AlGe/deberta-v3-large_Int_segment", num_labels=1, token=auth_token) |
|
tokenizer1 = AutoTokenizer.from_pretrained("AlGe/deberta-v3-large_Int_segment", token=auth_token) |
|
|
|
model2 = AutoModelForSequenceClassification.from_pretrained("AlGe/deberta-v3-large_seq_ext", num_labels=1, token=auth_token) |
|
|
|
|
|
def process_classification(text: str, model1, model2, tokenizer1) -> Tuple[str, str, str]: |
|
inputs1 = tokenizer1(text, max_length=512, return_tensors='pt', truncation=True, padding=True) |
|
|
|
with torch.no_grad(): |
|
outputs1 = model1(**inputs1) |
|
outputs2 = model2(**inputs1) |
|
|
|
prediction1 = outputs1[0].item() |
|
prediction2 = outputs2[0].item() |
|
score = prediction1 / (prediction2 + prediction1) |
|
|
|
return f"{round(prediction1, 1)}", f"{round(prediction2, 1)}", f"{round(score, 2)}" |
|
|
|
@spaces.GPU |
|
def all(text: str): |
|
classification_output = process_classification(text, model1, model2, tokenizer1) |
|
|
|
return (classification_output[0], classification_output[1], classification_output[2]) |
|
|
|
examples = [ |
|
['Bevor ich meinen Hund kaufte bin ich immer alleine durch den Park gelaufen. Gestern war ich aber mit dem Hund losgelaufen. Das Wetter war sehr schön, nicht wie sonst im Winter. Ich weiß nicht genau. Mir fällt sonst nichts dazu ein. Wir trafen auf mehrere Spaziergänger. Ein Mann mit seinem Kind. Das Kind hat ein Eis gegessen.'], |
|
['Also, ich kann mir total vorstellen, dass ich in so zwei Jahren eine mega Geburtstagsparty für meinen besten Freund organisieren werde. Also, das wird echt krass, ich schwöre es dir. Ich werde eine coole Location finden, wahrscheinlich so ein Haus am See oder so, und dann lade ich echt alle seine Freunde und Familie ein. Und dann, das wird der Hammer, ich werde eine Band organisieren, die so seine ganze Lieblingsmusik spielt, weißt du? Und dann, weil ich ja keine Lust habe, selbst zu kochen, hol ich mir so einen professionellen Catering-Service, die dann für alle Gäste kochen. Na ja, ich hoff mal, dass das Wetter mitspielt und wir alle draußen feiern können. Ich sag dir, das wird echt ne unvergessliche Feier, und mein Freund wird ausflippen vor Überraschung, echt jetzt.'], |
|
["So, I really imagine that in two years, I'll finally be living my dream and writing a novel. I'll find a quiet place where I can fully concentrate on writing. I'll tell a story that really engages me and that I want to share with others. I'll draw inspiration from my experiences and the people around me, just like in real life. I'll spend many hours putting my thoughts on paper and bringing my characters to life. Well, I hope that readers also find my story fascinating; that would be really cool."], |
|
['Oh mein Gott, ich muss dir diese total lustige Geschichte aus meiner Schulzeit erzählen! Du wirst es nicht glauben. Also, ich kam eines Tages zu spät zur Schule, richtig? Du weißt, wie das ist, man ist in Eile und achtet nicht wirklich darauf. Ich habe einfach ein Paar Schuhe gegriffen und bin aus dem Haus gerannt. Erst als ich in der Schule war und mich zum Mittagessen hinsetzte, bemerkte ich, dass ich zwei völlig unterschiedliche Schuhe anhatte! Ich hatte einen schwarzen und einen weißen Turnschuh an. Und ich mache keine Witze, die Leute haben es sofort bemerkt. Ein Typ namens Tommy hat mich Mismatch Mike genannt und bald haben alle mitgemacht. Oh Mann, ich war damals so peinlich berührt! Jetzt finde ich es einfach nur witzig und frage mich, wie mir das nicht aufgefallen ist. Das ist eine dieser Geschichten, die ich jetzt auf Partys erzähle, und die Leute finden es total lustig.'], |
|
["You know, this conversation reminded me of an incredible experience I had at a music festival in college. I'll never forget it. It was a rainy day, but we didn't care, and the band that was playing was my absolute favorite. Even though we were all soaked, the crowd kept on dancing and singing along. The energy was incredible, and I remember feeling so connected to everyone around me. It was as if the rain made the whole experience even more magical. I was surrounded by friends, and we all shared this special moment together. It was one of the best moments of my life, and I still get goosebumps when I think about it. Sometimes, it's the unexpected things that create the most amazing memories, you know?"], |
|
] |
|
|
|
iface = gr.Interface( |
|
fn=all, |
|
inputs=gr.Textbox(lines=5, label="Input Text", placeholder="Write about how your breakfast went or anything else that happened or might happen to you ..."), |
|
outputs=[ |
|
gr.Label(label="Internal Detail Count"), |
|
gr.Label(label="External Detail Count"), |
|
gr.Label(label="Approximated Internal Detail Ratio"), |
|
], |
|
|
|
|
|
examples=examples, |
|
theme=monochrome |
|
) |
|
|
|
iface.launch() |