mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-07 17:15:29 +00:00
added public value varibale to NamedOnnxValue (#3347)
Co-authored-by: cassieview <cassie.siljander@microsoft.com>
This commit is contained in:
parent
355f39ddee
commit
2b10e625f9
1 changed files with 1 additions and 0 deletions
|
|
@ -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<T>.
|
||||
|
|
|
|||
Loading…
Reference in a new issue