我是tensorflow和window的新手
我将curl发送到Linux上的tensorflow服务器,并且在OSX上使用过。
curl -d '{"instances":[{"image":{"b64":"'"$(base64 ./test_input.png)"'"}}]}' -X POST http://localhost:8501/v1/models/ocr:predict
返回
{
"predictions": [[44032, 44172]
]
}%
但是curl
在Windows 10上不起作用,我不知道为什么
这是错误消息
curl: (3) [globbing] unmatched close brace/bracket in column 19
{ "error": "JSON Parse error: Invalid value. at offset: 0" }
您是否尝试过如下所示为嵌套双引号]添加转义字符? Windows和Macos完全不同。
curl -d'{“ instances”:[{“ image”:{“ b64”:“'\” $(base64 ./test_input.png)\“'”}}]}}'' -X POST http:// localhost:8501 / v1 / models / ocr:predict