From 2d9760dfed12f443985c3862e86a8290c4dc4ef8 Mon Sep 17 00:00:00 2001 From: AndreaLeylavergne <119771926+AndreaLeylavergne@users.noreply.github.com> Date: Thu, 29 Feb 2024 07:01:28 +0100 Subject: [PATCH] testing import tensorflow and HTTPException --- main.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index 424a17a..f3a3474 100644 --- a/main.py +++ b/main.py @@ -1,11 +1,9 @@ from fastapi import FastAPI, HTTPException from pydantic import BaseModel import tensorflow as tf -from keras.models import load_model -from keras.preprocessing.sequence import pad_sequences -from keras.preprocessing.text import Tokenizer + app = FastAPI() @app.get("/") async def root(): - return {"message": "Hello, honey world 3.9"} \ No newline at end of file + return {"message": "Hello, honey World 3.9"} \ No newline at end of file