Spaces:
Sleeping
Sleeping
change model
Browse files
app.py
CHANGED
@@ -2,7 +2,8 @@ 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 |
|
7 |
def text_generate(input_text):
|
8 |
result = pipeline(input_text)
|
|
|
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)
|