Skip to main content

TF Served Model Over Docker Missing Model Information, Returns 404 If Requested

I have a trained model I am trying to deploy an image classifier through tensorflow serving in a Docker container. When I run my python code to request over REST I get a 404 response. The request looks as so:

json_response = requests.post('http://localhost:8501/models/model_name:predict', data=data)
json_response.raise_for_status()

prediction = json_response.json()['predictions'][0]
print(prediction)

Upon inspection of the model information using curl, I get this in response:

<HTML><HEAD>
<TITLE>404 Not Found</TITLE>
</HEAD><BODY>
<H1>Not Found</H1>
</BODY></HTML>

I followed the instructions from the tensorflow website on serving with docker and had no errors during the setup.

I believe it may have something to do with the way that I saved my model, since examples in the tf_serving guide worked, but I had used the SavedModel format as outlined on tensorflow the code for which is here:

tmpdir = tempfile.mkdtemp()
save_path = os.path.join(tmpdir, "model_name/1/")

print(list(model.signatures.keys()))  # ["serving_default"]

infer = model.signatures["serving_default"] # 5 classes
print(infer.structured_outputs)

tf.saved_model.save(model, save_path)

The print statements for the prior code:

['serving_default']
{'dense_2': TensorSpec(shape=(None, 5), dtype=tf.float32, name='dense_2')}

In the tensorflow SavedModel guide it shows the structured output having the name "predictions", which may be part of the issue.

For reference, I am using transfer learning from a frozen MobileNetV2, with a few added layers.

I am fairly new to both Tensorflow and Tensorflow Serving, so please forgive me if this is a simple issue i may have missed.



source https://stackoverflow.com/questions/76030045/tf-served-model-over-docker-missing-model-information-returns-404-if-requested

Comments

Popular posts from this blog

Confusion between commands.Bot and discord.Client | Which one should I use?

Whenever you look at YouTube tutorials or code from this website there is a real variation. Some developers use client = discord.Client(intents=intents) while the others use bot = commands.Bot(command_prefix="something", intents=intents) . Now I know slightly about the difference but I get errors from different places from my code when I use either of them and its confusing. Especially since there has a few changes over the years in discord.py it is hard to find the real difference. I tried sticking to discord.Client then I found that there are more features in commands.Bot . Then I found errors when using commands.Bot . An example of this is: When I try to use commands.Bot client = commands.Bot(command_prefix=">",intents=intents) async def load(): for filename in os.listdir("./Cogs"): if filename.endswith(".py"): client.load_extension(f"Cogs.{filename[:-3]}") The above doesnt giveany response from my Cogs ...

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype

Where and how is this Laravel kernel constructor called? [closed]

Where and how is this Laravel kernel constructor called? public fucntion __construct(Application $app, $Router $roouter) { } I have read the documentation and some online tutorial but I can find any clear explanation. I am learning Laravel and I am wondering where does this kernel constructor receives its arguments from. "POSTMOTERM" CLARIFICATION: Here is more clarity.I have checked the boostrap/app.php and it is only used for boostrapping the interfaces into the container class. What is not clear to me is where and how the Kernel class is instatiated and the arguments passed to the object calling the constructor.Something similar to; obj = new kernel(arg1,arg2) or, is the framework using some magic functions somewhere? Special gratitude to those who burn their eyeballs and brain cells on this trivia before it goes into a full blown menopause alias "MARKED AS DUPLICATE". To some of the itchy-finger keyboard warriors, a.k.a The mods,because I believe in th...