This commit is contained in:
Yang Chen 2019-07-22 17:24:42 -07:00
Родитель c3d744010b
Коммит bda8fcbca0
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -5291,11 +5291,11 @@ bool CNTKToONNXHelper::ProcessLoopsAndCheckCNTKNodeContinueCreate(const Function
{
if (futureValueCustomAttrStr == "")
{
futureValueCustomAttrStr = "{custom_attributes:" + SerializeDictionaryToString(dict) + "}";
futureValueCustomAttrStr = "{\"custom_attributes\":" + SerializeDictionaryToString(dict) + "}";
}
else
{
std::string attrStr = "{custom_attributes:" + SerializeDictionaryToString(dict) + "}";
std::string attrStr = "{\"custom_attributes\":" + SerializeDictionaryToString(dict) + "}";
if (attrStr != futureValueCustomAttrStr)
{
CNTK::LogicError("Scan node has multiple FutureValue custom attributes from state: %s",