Fix for doxygen doc errors. (#8814)

This commit is contained in:
Chandru Ramakrishnan 2021-08-23 15:52:15 -04:00 committed by GitHub
parent 62c0d24340
commit f51f2bad66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;