SmilingTree commited on
Commit
7250ed9
·
verified ·
1 Parent(s): ab3189d

test model TheBloke/storytime-13B-GPTQ

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -1,9 +1,8 @@
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
- # pipeline = pipeline("text-generation")
5
- # pipeline = pipeline("text-generation", model="TheBloke/WizardLM-Uncensored-SuperCOT-StoryTelling-30B-SuperHOT-8K-GPTQ", trust_remote_code=True)
6
- pipeline = pipeline("text-generation", model="isarth/distill_gpt2_story_generator")
7
 
8
  def text_generate(input_text):
9
  result = pipeline(input_text)
 
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
+ # pipeline = pipeline("text-generation", model="isarth/distill_gpt2_story_generator")
5
+ pipeline = pipeline("text-generation", model="TheBloke/storytime-13B-GPTQ")
 
6
 
7
  def text_generate(input_text):
8
  result = pipeline(input_text)