다음을 통해 공유


LearningModel.LoadFromFilePath 메서드

정의

오버로드

LoadFromFilePath(String)

디스크의 파일에서 ONNX 모델을 로드합니다.

LoadFromFilePath(String, ILearningModelOperatorProvider)

디스크의 파일에서 ONNX 모델을 로드합니다.

LoadFromFilePath(String)

디스크의 파일에서 ONNX 모델을 로드합니다.

public:
 static LearningModel ^ LoadFromFilePath(Platform::String ^ filePath);
/// [Windows.Foundation.Metadata.Overload("LoadFromFilePath")]
 static LearningModel LoadFromFilePath(winrt::hstring const& filePath);
[Windows.Foundation.Metadata.Overload("LoadFromFilePath")]
public static LearningModel LoadFromFilePath(string filePath);
function loadFromFilePath(filePath)
Public Shared Function LoadFromFilePath (filePath As String) As LearningModel

매개 변수

filePath
String

Platform::String

winrt::hstring

디스크의 ONNX 모델 파일 경로입니다.

반환

모델을 나타내는 개체입니다.

특성

설명

이 메서드는 데스크톱(비 UWP) 애플리케이션을 위한 것입니다. UWP의 경우 LoadFromStorageFileAsync를 참조하세요.

Windows Server

Windows Server에서 이 API를 사용하려면 데스크톱 환경에서 Windows Server 2019를 사용해야 합니다.

스레드로부터의 안전성

이 API는 스레드로부터 안전합니다.

적용 대상

LoadFromFilePath(String, ILearningModelOperatorProvider)

디스크의 파일에서 ONNX 모델을 로드합니다.

public:
 static LearningModel ^ LoadFromFilePath(Platform::String ^ filePath, ILearningModelOperatorProvider ^ operatorProvider);
/// [Windows.Foundation.Metadata.Overload("LoadFromFilePathWithOperatorProvider")]
 static LearningModel LoadFromFilePath(winrt::hstring const& filePath, ILearningModelOperatorProvider const& operatorProvider);
[Windows.Foundation.Metadata.Overload("LoadFromFilePathWithOperatorProvider")]
public static LearningModel LoadFromFilePath(string filePath, ILearningModelOperatorProvider operatorProvider);
function loadFromFilePath(filePath, operatorProvider)
Public Shared Function LoadFromFilePath (filePath As String, operatorProvider As ILearningModelOperatorProvider) As LearningModel

매개 변수

filePath
String

Platform::String

winrt::hstring

디스크의 ONNX 모델 파일 경로입니다.

반환

모델을 나타내는 개체입니다.

특성

설명

이 메서드는 데스크톱(비 UWP) 애플리케이션을 위한 것입니다. UWP의 경우 LoadFromStorageFileAsync를 참조하세요.

Windows Server

Windows Server에서 이 API를 사용하려면 데스크톱 환경에서 Windows Server 2019를 사용해야 합니다.

스레드로부터의 안전성

이 API는 스레드로부터 안전합니다.

적용 대상