mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Fix for doxygen doc errors. (#8814)
This commit is contained in:
parent
62c0d24340
commit
f51f2bad66
1 changed files with 13 additions and 2 deletions
|
|
@ -25,10 +25,21 @@ namespace Microsoft.ML.OnnxRuntime
|
|||
/// A pointer to a underlying native instance of OrtSession
|
||||
/// </summary>
|
||||
protected IntPtr _nativeHandle;
|
||||
|
||||
/// <summary>
|
||||
/// Dictionaries that represent input/output/overridableInitializers metadata
|
||||
/// Dictionary that represents input metadata
|
||||
/// </summary>
|
||||
protected Dictionary<string, NodeMetadata> _inputMetadata, _outputMetadata, _overridableInitializerMetadata;
|
||||
protected Dictionary<string, NodeMetadata> _inputMetadata;
|
||||
|
||||
/// <summary>
|
||||
/// Dictionary that represent output metadata
|
||||
/// </summary>
|
||||
protected Dictionary<string, NodeMetadata> _outputMetadata;
|
||||
|
||||
/// <summary>
|
||||
/// Dictionary that represents overridableInitializers metadata
|
||||
/// </summary>
|
||||
protected Dictionary<string, NodeMetadata> _overridableInitializerMetadata;
|
||||
private SessionOptions _builtInSessionOptions = null;
|
||||
private RunOptions _builtInRunOptions = null;
|
||||
private ModelMetadata _modelMetadata = null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue