---
sourceDocument: 호주 API 참조
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/api-reference

 Release :

    - australia

ft:locale :

    - ko-KR

ft:publication_title :

    - 호주 API 참조

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# MLSolutionFactory - 전역

# MLSolutionFactory - 전역 {#ariaid-title1}

* 릴리스 버전: Australia
* 
* 업데이트 날짜 2026년 03월 12일
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 소요 시간: 1분

MLSolutionFactory API는 MLSolution 스크립트 가능한 개체를 가져오는 팩터리 클래스입니다.

이 API에는 플러그인(com.glide.platform_ml)이 예측 인텔리전스 필요하며 `sn_ml` 네임스페이스 내에서 제공됩니다. 자세한 내용은 [예측 인텔리전스](https://www.servicenow.com/docs/access?context=predictive-intelligence&version=australia&pubname=australia-intelligent-experiences&ft:locale=en-US)를 참조하십시오.

사용 지침은 [MLSolutionFactory 스크립트 가능 개체를](https://www.servicenow.com/docs/access?context=using-ml-apis-mlsolutionfactory&version=australia&pubname=australia-intelligent-experiences&ft:locale=en-US) 참조하세요.
**관련 개념**   

* [MLSolution](https://servicenow-prod.fluidtopics.net/K1iA4Nd94JyB9Cw~uegPHQ#MLSolutionAPI "MLSolution API는 예측을 처리 예측 인텔리전스 하고 모든 기능(유사성, 분류 및 클러스터링)에 대한 솔루션 개체를 검색하는 메서드를 제공합니다.")
* [MLSolutionUtil](https://servicenow-prod.fluidtopics.net/KQixAMPAckGk66ZJAc5d6Q#MLSolutionUtilAPI "MLSolutionUtil 스크립트 포함은 예측을 가져오 예측 인텔리전스 는 메서드를 제공합니다.")
* [REST API: 여러 솔루션에 대한 예측 가져오기](https://servicenow-prod.fluidtopics.net/FEr2tyhyaKtHDxDg7Cde3w#agent-intelligence-api "예측 인텔리전스 API는 하나 이상의 입력 필드와 훈련된 솔루션을 기반으로 필드 값을 예측하는 엔드포인트를 제공합니다.")

## MLSolutionFactory - getSolution(String solutionName, 개체 옵션) {#ariaid-title2}

지정된 솔루션 이름에 대한 MLSolution 개체를 가져옵니다.
{#MLSolutionFactory-getSolution_S_O__table_hqw_pbm_yfb__entry__3}

| 이름 | 유형 | 설명 |
|-|-|-|
| solutionName | 문자열 | 솔루션의 이름입니다. |
| 옵션 | 객체 | 선택 사항입니다. options.version: 제공된 경우 제공된 버전의 solutionName에 대한 MLSolution 인스턴스를 만듭니다. |
[표 1. 매개변수]

{#MLSolutionFactory-getSolution_S_O__table_hqw_pbm_yfb} {#MLSolutionFactory-getSolution_S_O__table_iqw_pbm_yfb__entry__2}

| 유형 | 설명 |
|-|-|
| 객체 | [MLSolution](https://servicenow-prod.fluidtopics.net/K1iA4Nd94JyB9Cw~uegPHQ#MLSolutionAPI "MLSolution API는 예측을 처리 예측 인텔리전스 하고 모든 기능(유사성, 분류 및 클러스터링)에 대한 솔루션 개체를 검색하는 메서드를 제공합니다.") 지정된 솔루션의 객체입니다. |
[표 2. 반환]

{#MLSolutionFactory-getSolution_S_O__table_iqw_pbm_yfb}  

    // basic usage
    var mlSolution = sn_ml.MLSolutionFactory.getSolution("ml_incident_categorization");
            
    // using options.version parameter
    var options = {};
    options.version = 1;
    var mlSolution = sn_ml.MLSolutionFactory.getSolution("ml_incident_categorization", options);


