added public value varibale to NamedOnnxValue (#3347)

Co-authored-by: cassieview <cassie.siljander@microsoft.com>
This commit is contained in:
Cassie 2020-03-30 12:45:39 -05:00 committed by GitHub
parent 355f39ddee
commit 2b10e625f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,7 @@ namespace Microsoft.ML.OnnxRuntime
}
public string Name { get { return _name; } set { _name = value; } }
public Object Value { get { return _value; } set { _value = value; } }
/// <summary>
/// Try-get value as a Tensor&lt;T&gt;.