mat27 commited on
Commit
64a27af
·
1 Parent(s): 5826980

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -7,9 +7,13 @@ from tensorflow import keras
7
  from tensorflow.keras import layers
8
  app = FastAPI()
9
 
 
10
  model = from_pretrained_keras("mat27/medmnistPrueba")
11
  model.compile(loss="categorical_crossentropy", optimizer="adam", metrics=["accuracy"])
 
12
 
 
13
  @app.get("/generate")
14
  def generate(example: np.array):
15
- print(model.predict(example))
 
 
7
  from tensorflow.keras import layers
8
  app = FastAPI()
9
 
10
+ '''
11
  model = from_pretrained_keras("mat27/medmnistPrueba")
12
  model.compile(loss="categorical_crossentropy", optimizer="adam", metrics=["accuracy"])
13
+ '''
14
 
15
+ pipe = pipeline(model="mat27/medmnistPrueba")
16
  @app.get("/generate")
17
  def generate(example: np.array):
18
+ output = pipe(example)
19
+ print(output)