mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-28 22:56:32 +00:00
17 lines
291 B
C
17 lines
291 B
C
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
#import "ort_training_session.h"
|
||
|
|
|
||
|
|
#import "cxx_api.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface ORTTrainingSession ()
|
||
|
|
|
||
|
|
- (Ort::TrainingSession&)CXXAPIOrtTrainingSession;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|