Spaces:
Runtime error
Runtime error
from fastapi import FastAPI | |
from transformers import pipeline | |
# Create a new FastAPI app instance | |
app = FastAPI() | |
pipe = pipeline("text2text-generation", | |
model="mat27/medmnistPrueba") | |
def generate(imagen: np.array): | |
output = pipe(imagen) | |
return {"Precisión: ": output} |