• Umang Yadav's avatar
    Fix TF parsing for creating literals and Fix name lookups for input params (#1298) · 4d59b7c7
    Umang Yadav authored
    Bug 1: create_literal was using back_inserter to copy vector with already allocated size, causing double the size of literal.
    Fix 1 : not use back_inserter
    Bug 2: Input param to model can be from operation that has multiple output, in that case name of the input param would contain : e.g. input_1:0
    Fix 2: Look for : and take substring
    4d59b7c7
tf_parser.cpp 21.9 KB