Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ except ImportError:
|
|
18 |
caption_model = pipeline("image-to-text", model="Salesforce/blip-image-captioning-base")
|
19 |
|
20 |
# Load the GPT-2 model for story generation
|
21 |
-
story_generator = pipeline("text-generation", model="gpt2")
|
22 |
|
23 |
def generate_caption(image):
|
24 |
# Generate the caption for the uploaded image
|
@@ -27,7 +27,7 @@ def generate_caption(image):
|
|
27 |
|
28 |
def generate_story(caption):
|
29 |
# Generate the story based on the caption using the GPT-2 model
|
30 |
-
prompt = f"Imagine you are a storyteller for young children. Based on the image described as '{caption}', create a
|
31 |
story = story_generator(prompt, max_length=200, num_return_sequences=1)[0]["generated_text"]
|
32 |
return story
|
33 |
|
|
|
18 |
caption_model = pipeline("image-to-text", model="Salesforce/blip-image-captioning-base")
|
19 |
|
20 |
# Load the GPT-2 model for story generation
|
21 |
+
story_generator = pipeline("text-generation", model="openai-community/gpt2")
|
22 |
|
23 |
def generate_caption(image):
|
24 |
# Generate the caption for the uploaded image
|
|
|
27 |
|
28 |
def generate_story(caption):
|
29 |
# Generate the story based on the caption using the GPT-2 model
|
30 |
+
prompt = f"Imagine you are a storyteller for young children. Based on the image described as '{caption}', create a interesting and attractive story for children aged 3-10. Keep it positive and happy in tone. Also, add more imagination"
|
31 |
story = story_generator(prompt, max_length=200, num_return_sequences=1)[0]["generated_text"]
|
32 |
return story
|
33 |
|