잘못된 입력 데이터 유형 오류 : '알 수 없음'유형의 입력은 azure (azureml.train.automl)에서 지원되지 않습니다.

마르시오 모 첼린

다음에서 만든 pandas의 DataFrame이 있습니다.

TB_HISTORICO_MODELO = pd.read_sql("""select DAT_INICIO_SEMANA_PLAN
,COD_NEGOCIO
,VENDA
,LUCRO
,MODULADO
,RUPTURA
,QTD_ESTOQUE_MEDIO
,PECAS from TB""", cursor)

TB_HISTORICO_MODELO["DAT_INICIO_SEMANA_PLAN"] = pd.to_datetime(TB_HISTORICO_MODELO["DAT_INICIO_SEMANA_PLAN"])

dataset = TB_HISTORICO_MODELO[TB_HISTORICO_MODELO['COD_NEGOCIO']=='A101'].drop(columns=['COD_NEGOCIO']) .reset_index(drop=True)

모든 것이 옳은 것 같습니다.

>>> dataset.dtypes
DAT_INICIO_SEMANA_PLAN    datetime64[ns]
VENDA                            float64
LUCRO                            float64
MODULADO                           int64
RUPTURA                            int64
QTD_ESTOQUE_MEDIO                  int64
PECAS                            float64
dtype: object

그러나 내가 이것을 울릴 때 :

#%% Create the AutoML Config file and run the experiment on Azure

from azureml.train.automl import AutoMLConfig

time_series_settings = {
   'time_column_name': 'DAT_INICIO_SEMANA_PLAN',
   'max_horizon': 14,
   'country_or_region': 'BR',
   'target_lags': 'auto'
}

automl_config = AutoMLConfig(task='forecasting',
                            primary_metric='normalized_root_mean_squared_error',
                            blocked_models=['ExtremeRandomTrees'],
                            experiment_timeout_minutes=30,
                            training_data=dataset,
                            label_column_name='VENDA',
                            compute_target = compute_cluster,
                            enable_early_stopping=True,
                            n_cross_validations=3,
                            # max_concurrent_iterations=4,
                            # max_cores_per_iteration=-1,
                            verbosity=logging.INFO,
                            **time_series_settings)

remote_run = Experimento.submit(automl_config, show_output=True)

나는 메시지를 받는다

>>> remote_run = Experimento.submit(automl_config, show_output=True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/fnord/venv/lib64/python3.6/site-packages/azureml/core/experiment.py", line 219, in submit
    run = submit_func(config, self.workspace, self.name, **kwargs)
  File "/home/fnord/venv/lib64/python3.6/site-packages/azureml/train/automl/automlconfig.py", line 92, in _automl_static_submit
    automl_config_object._validate_config_settings(workspace)
  File "/home/fnord/venv/lib64/python3.6/site-packages/azureml/train/automl/automlconfig.py", line 1775, in _validate_config_settings
    supported_types=", ".join(SupportedInputDatatypes.REMOTE_RUN_SCENARIO)
azureml.train.automl.exceptions.ConfigException: ConfigException:
        Message: Input of type 'Unknown' is not supported. Supported types: [azureml.data.tabular_dataset.TabularDataset, azureml.pipeline.core.pipeline_output_dataset.PipelineOutputTabularDataset]
        InnerException: None
        ErrorResponse 
{
    "error": {
        "code": "UserError",
        "message": "Input of type 'Unknown' is not supported. Supported types: [azureml.data.tabular_dataset.TabularDataset, azureml.pipeline.core.pipeline_output_dataset.PipelineOutputTabularDataset]",
        "details_uri": "https://aka.ms/AutoMLConfig",
        "target": "training_data",
        "inner_error": {
            "code": "BadArgument",
            "inner_error": {
                "code": "ArgumentInvalid",
                "inner_error": {
                    "code": "InvalidInputDatatype"
                }
            }
        }
    }
}

어디가 잘못 되었나요?

설명서 : https://docs.microsoft.com/en-us/azure/machine-learning/how-to-configure-auto-train https://docs.microsoft.com/pt-br/python/api/azureml -train-automl-client / azureml.train.automl.automlconfig.automlconfig

앤더스 스완슨

AutoML 문서 구성 내용 :

원격 실험의 경우 원격 컴퓨팅에서 학습 데이터에 액세스 할 수 있어야합니다. AutoML은 원격 컴퓨팅에서 작업 할 때 Azure Machine Learning TabularDatasets 만 허용합니다.

dataset실제로 Azure ML이어야 할 때 개체가 Pandas DataFrame 인 것처럼 보입니다 Dataset. 데이터 세트 생성에 대한 이 문서확인하세요 .

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

Related 관련 기사

뜨겁다태그

보관