aixsatoshi commited on
Commit
57b5322
·
verified ·
1 Parent(s): 58e53d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -6,7 +6,7 @@ from transformers import AutoModelForCausalLM, AutoTokenizer, TextIteratorStream
6
  import gradio as gr
7
  from threading import Thread
8
 
9
- model_id = "sudy-super/Yamase-12B"
10
  tokenizer = AutoTokenizer.from_pretrained(model_id)
11
  model = AutoModelForCausalLM.from_pretrained(
12
  model_id,
@@ -15,10 +15,10 @@ model = AutoModelForCausalLM.from_pretrained(
15
  use_flash_attention_2=True,
16
  )
17
 
18
- TITLE = "<h1><center>sudy-super/Yamase-12B Chat webui</center></h1>"
19
 
20
  DESCRIPTION = """
21
- <h3>MODEL: <a href="https://huggingface.co/sudy-super/Yamase-12B">sudy-super/Yamase-12B</a></h3>
22
  <center>
23
  <p>This model is designed for conversational interactions.</p>
24
  </center>
 
6
  import gradio as gr
7
  from threading import Thread
8
 
9
+ model_id = "llm-jp/llm-jp-3-1.8b-instruct"
10
  tokenizer = AutoTokenizer.from_pretrained(model_id)
11
  model = AutoModelForCausalLM.from_pretrained(
12
  model_id,
 
15
  use_flash_attention_2=True,
16
  )
17
 
18
+ TITLE = "<h1><center>llm-jp/llm-jp-3-1.8b-instruct Chat webui</center></h1>"
19
 
20
  DESCRIPTION = """
21
+ <h3>MODEL: <a href="https://huggingface.co/llm-jp/llm-jp-3-1.8b-instruct">llm-jp/llm-jp-3-1.8b-instruct</a></h3>
22
  <center>
23
  <p>This model is designed for conversational interactions.</p>
24
  </center>