Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import os
|
2 |
import gradio as gr
|
3 |
from transformers import GPT2LMHeadModel, GPT2Tokenizer
|
|
|
4 |
|
5 |
# Clone the Gradio repository
|
6 |
os.system("git clone https://github.com/gradio-app/gradio.git")
|
@@ -11,6 +12,9 @@ os.system("cd gradio && pip install .")
|
|
11 |
# Install transformers
|
12 |
os.system("pip install transformers")
|
13 |
|
|
|
|
|
|
|
14 |
class ArabicAssistant:
|
15 |
def __init__(self):
|
16 |
self.model_name = "EleutherAI/gpt-neo-2.7B"
|
@@ -40,5 +44,5 @@ def chatbot_interaction(user_input):
|
|
40 |
|
41 |
return response
|
42 |
|
43 |
-
iface = gr.Interface(fn=chatbot_interaction, inputs=
|
44 |
iface.launch()
|
|
|
1 |
import os
|
2 |
import gradio as gr
|
3 |
from transformers import GPT2LMHeadModel, GPT2Tokenizer
|
4 |
+
import torch
|
5 |
|
6 |
# Clone the Gradio repository
|
7 |
os.system("git clone https://github.com/gradio-app/gradio.git")
|
|
|
12 |
# Install transformers
|
13 |
os.system("pip install transformers")
|
14 |
|
15 |
+
# Install PyTorch
|
16 |
+
os.system("pip install torch==1.10.0+cpu torchvision==0.11.1+cpu torchaudio==0.10.0+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html")
|
17 |
+
|
18 |
class ArabicAssistant:
|
19 |
def __init__(self):
|
20 |
self.model_name = "EleutherAI/gpt-neo-2.7B"
|
|
|
44 |
|
45 |
return response
|
46 |
|
47 |
+
iface = gr.Interface(fn=chatbot_interaction, inputs=gr.Textbox(), outputs=gr.Textbox(), live=True, theme="huggingface", layout="vertical", title="Arabic Assistant Chatbot", description="Chat with the Arabic Assistant in the Egyptian dialect.")
|
48 |
iface.launch()
|