wut-predict jupyter load actual training h5 data

master 0.55
ml server 2020-01-16 19:40:32 -07:00
parent 759f0d9f70
commit 52bda18f63
1 changed files with 13 additions and 4 deletions

View File

@ -273,13 +273,22 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# load .h5 file here plz"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"model = load_model('data/wut.h5')"
]
},
{
"cell_type": "code",
"execution_count": null,
@ -296,9 +305,9 @@
"metadata": {},
"outputs": [],
"source": [
"pred=model.predict_generator(test_data_gen,\n",
"steps=1,\n",
"verbose=1)"
"#pred=model.predict_generator(test_data_gen,\n",
"#steps=1,\n",
"#verbose=1)"
]
},
{