kingabzpro commited on
Commit
9e25427
1 Parent(s): b9bec37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -20
app.py CHANGED
@@ -1,40 +1,39 @@
1
  import gradio as gr
2
 
3
  from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline
 
4
 
5
- MODEL_URL = "https://huggingface.co/serdarakyol/interpress-turkish-news-classification"
6
- WEBSITE_URL = "https://www.kodiks.com/ai_solutions.html"
7
 
8
- tokenizer = AutoTokenizer.from_pretrained("serdarakyol/interpress-turkish-news-classification")
9
- model = AutoModelForSequenceClassification.from_pretrained("serdarakyol/interpress-turkish-news-classification")
 
 
10
 
11
  def prediction(news):
12
  # create pipeline
13
- clasifer = pipeline("sentiment-analysis", tokenizer=tokenizer, model=model, return_all_scores=True)
14
-
15
- preds = clasifer(news)
16
 
17
- preds_dict={}
18
- for pred in preds[0]:
19
- preds_dict[pred['label']] = pred['score']
20
 
21
- return preds_dict
22
 
23
 
24
  gradio_ui = gr.Interface(
25
  fn=prediction,
26
- title="Turkish News Classification",
27
- description=f"Enter Turkish news article to see the category of the news.\n For this classification, the {MODEL_URL} model was used.",
28
  examples=[
29
- ['Son dakika haberi... Sağlık Bakanlığı corona virüsü (koronavirüs) için son gelişmeleri ve Türkiye Günlük Korona Tablosu\'nu açıkladı. Türkiye\'de son 24 saatte 355 bin 947 Kovid-19 testi yapıldı, 26 bin 896 kişinin testi pozitif çıktı, 210 kişi yaşamını yitirdi. Tabloda vaka ve vefat sayılarına dikkat çeken Bakan Koca, "Bu ölümlerin bir kısmı birden çok sebebin bir araya gelmesine bağlı ve önlenebilir. Örneğin, Covid-19’a kronik hastalıkların eşlik etmesi riski artıran bir faktör. Tam doz aşı bu riski azaltıyor." çağrısında bulundu. Öte yandan ikinci doz aşılama oranı %75\'e çıkan Tunceli, mavi kategoriye yükseldi.'],
30
- ["Galatasaray'dan sezon başında ayrılan ve Rayo Vallecano'nun yolunu tutan Radamel Falcao, İspanya'da şov yapmaya devam ediyor. Kolombiyalı yıldızın, Barcelona karşısında attığı gol maça damga vurdu."],
31
- ["Instagram, 3 yıl önce kullanıcıların beğenisine sunduğu IGTV özelliğini kaldırıyor. IGTV’nin yerine gelecek yeni özelliğin ise platformun Reels'tan elde ettiği başarıyı pekiştirip içerik üreticileri için kullanışlı bir zemin oluşturması bekleniyor."],
32
- ["Kamu bankaları Halkbank, Vakıfbank ve Ziraat Bankası ortak bir açıklama yayınlayarak kredi faiz oranlarında indirim yapıldığını açıkladı. Söz konusu indirimler ticari ve konut kredileri kapsıyor. Tüketici kredisi kapsam dışında bırakıldı."]
33
  ],
34
- inputs=gr.inputs.Textbox(lines=10, label="Paste some news here"),
35
- outputs=gr.outputs.Label(num_top_classes=5, type="auto", label="News categories probabilities"),
36
  theme="huggingface",
37
- article="<p style='text-align: center'>for our other AI works: <a href='https://www.kodiks.com/ai_solutions.html' target='_blank'>https://www.kodiks.com/ai_solutions.html</a> | <a href='https://twitter.com/KodiksBilisim' target='_blank'>Contact us</a></p>",
38
  )
39
 
40
  gradio_ui.launch()
 
1
  import gradio as gr
2
 
3
  from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline
4
+ import torch
5
 
6
+ MODEL_URL = "kingabzpro/Llama-3.1-8B-Instruct-Mental-Health-Classification"
 
7
 
8
+ tokenizer = AutoTokenizer.from_pretrained(MODEL_URL)
9
+
10
+ model = AutoModelForSequenceClassification.from_pretrained(MODEL_URL, low_cpu_mem_usage=True, return_dict=True,torch_dtype=torch.float16,
11
+ device_map="cpu")
12
 
13
  def prediction(news):
14
  # create pipeline
15
+ clasifer = pipeline("text-generation", tokenizer=tokenizer, model=model, torch_dtype=torch.float16,
16
+ device_map="cpu",)
 
17
 
18
+ outputs = pipe(prompt, max_new_tokens=2, do_sample=True, temperature=0.1)
19
+ preds = outputs[0]["generated_text"].split("label: ")[-1].strip())
 
20
 
21
+ return preds
22
 
23
 
24
  gradio_ui = gr.Interface(
25
  fn=prediction,
26
+ title="Mental Health Disorder Classification",
27
+ description=f"Input the text to generate a Mental Health Disorder.\n For this classification, the {MODEL_URL} model was used.",
28
  examples=[
29
+ ['trouble sleeping, confused mind, restless heart. All out of tune'],
30
+ ["In the quiet hours, even the shadows seem too heavy to bear."],
31
+ ["Riding a tempest of emotions, where ecstatic highs crash into desolate lows without warning."]
 
32
  ],
33
+ inputs=gr.inputs.Textbox(lines=10, label="Write the text here"),
34
+ outputs=gr.outputs.Label(num_top_classes=5, type="auto", label="Mental Health Disorder Category"),
35
  theme="huggingface",
36
+ article="<p style='text-align: center'>Please read the tutorial to fine-tune the Llama 3.1 model on Mental Health Classification <a href='https://www.datacamp.com/tutorial/fine-tuning-llama-3-1' target='_blank'>https://www.datacamp.com/tutorial/fine-tuning-llama-3-1</a></p>",
37
  )
38
 
39
  gradio_ui.launch()