Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,13 +3,13 @@ import gradio as gr
|
|
3 |
import torch
|
4 |
|
5 |
|
6 |
-
title = "erpsarang's AI ChatBot"
|
7 |
description = "bigdata GPT"
|
8 |
examples = [["How are you?"]]
|
9 |
|
10 |
|
11 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
12 |
-
model = AutoModelForCausalLM.from_pretrained("
|
13 |
|
14 |
|
15 |
def predict(input, history=[]):
|
|
|
3 |
import torch
|
4 |
|
5 |
|
6 |
+
title = "erpsarang's bigdata AI ChatBot"
|
7 |
description = "bigdata GPT"
|
8 |
examples = [["How are you?"]]
|
9 |
|
10 |
|
11 |
+
tokenizer = AutoTokenizer.from_pretrained("erpsarang/Llama-3-Open-Ko-8B-Instruct-erpsarang")
|
12 |
+
model = AutoModelForCausalLM.from_pretrained("erpsarang/Llama-3-Open-Ko-8B-Instruct-erpsarang")
|
13 |
|
14 |
|
15 |
def predict(input, history=[]):
|