这是在我的vs-studio终端中显示的:>>> db.create_all() # this command not running. File "<stdin>", line 1, in <module>
File "D:\Python\Practice\Flask\env\lib\site-packages\
我想构建一个具有keras和双重模型(模型A和模型B)的rest api服务:我找到了这个示例,但只使用一个模型,我需要一些我可以使用的东西,比如 curl -X POST -F image=@typeA.jpg "http://localhost:5000/predictA“ curl -X POST -F image=@typeB.jpg "http://localhost:5000/predictB“ # keras_server.py # Python program to expose a ML model as flask REST API # i