pp3232133 commited on
Commit
e5f91d9
·
1 Parent(s): fdf845c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -4
app.py CHANGED
@@ -1,7 +1,27 @@
1
  import gradio as gr
 
2
 
3
- def fake_function(x):
4
- return x
 
 
5
 
6
- iface = gr.Interface(fake_function, inputs="text", outputs="text")
7
- iface.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ from transformers import AutoModelForCausalLM, AutoTokenizer
3
 
4
+ # Wczytanie własnego modelu chatbota z Hugging Face
5
+ model_name = "pp3232133/pp3232133-distilgpt2-wikitext2"
6
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
7
+ model = AutoModelForCausalLM.from_pretrained(model_name)
8
 
9
+ # Funkcja obsługująca wejście i wyjście dla interfejsu Gradio
10
+ def chatbot_interface(input_text):
11
+ input_ids = tokenizer.encode(input_text, return_tensors="pt")
12
+ chatbot_output = model.generate(input_ids, max_length=100)[0]
13
+ response = tokenizer.decode(chatbot_output, skip_special_tokens=True)
14
+ return response
15
+
16
+ # Interfejs Gradio dla chatbota
17
+ iface = gr.Interface(
18
+ fn=chatbot_interface,
19
+ inputs="text",
20
+ outputs="text",
21
+ title="Chatbot",
22
+ description="Custom chatbot based on your Hugging Face model. Start typing to chat with the bot.",
23
+ theme="compact"
24
+ )
25
+
26
+ # Uruchomienie interfejsu
27
+ iface.launch()