Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ app = FastAPI()
|
|
8 |
# This function will be able to generate text
|
9 |
# given an input.
|
10 |
pipe = pipeline("text2text-generation",
|
11 |
-
model="
|
12 |
|
13 |
# Define a function to handle the GET request at `/generate`
|
14 |
# The generate() function is defined as a FastAPI route that takes a
|
@@ -16,11 +16,7 @@ model="google/flan-t5-small")
|
|
16 |
# containing the generated text under the key "output"
|
17 |
@app.get("/generate")
|
18 |
def generate(text: str):
|
19 |
-
|
20 |
-
Using the text2text-generation pipeline from `transformers`, generate text
|
21 |
-
from the given input text. The model used is `google/flan-t5-small`, which
|
22 |
-
can be found [here](<https://huggingface.co/google/flan-t5-small>).
|
23 |
-
"""
|
24 |
# Use the pipeline to generate text from the given input text
|
25 |
output = pipe(text)
|
26 |
|
|
|
8 |
# This function will be able to generate text
|
9 |
# given an input.
|
10 |
pipe = pipeline("text2text-generation",
|
11 |
+
model="mat27/medmnistPrueba")
|
12 |
|
13 |
# Define a function to handle the GET request at `/generate`
|
14 |
# The generate() function is defined as a FastAPI route that takes a
|
|
|
16 |
# containing the generated text under the key "output"
|
17 |
@app.get("/generate")
|
18 |
def generate(text: str):
|
19 |
+
|
|
|
|
|
|
|
|
|
20 |
# Use the pipeline to generate text from the given input text
|
21 |
output = pipe(text)
|
22 |
|