参数结构树状图
================================================================================
├─ nan_preprocessing
  ├─ nan_missing_process_choice
    └─ [列表]
  ├─ nan_processing_col
    └─ [列表]
  ├─ drop_threshold
    └─ 0.5
  ├─ knn_n_neighbors
    └─ 5
├─ normalized_preprocessing
  ├─ normalizer_method_choice
    └─ [列表]
  ├─ normalized_col
    └─ [列表]
├─ outlier_preprocessing
  ├─ outlier_choice
    └─ isolation_forest
  ├─ row_drop_thres
    └─ 3.0
  ├─ auto_drop_row
    └─ False
  ├─ outlier_action
    └─ drop
  ├─ contamination
    └─ 0.1
  ├─ specify_auto_drop_row_extr
    └─ None
  ├─ specify_row
    └─ None
├─ relative_preprocessing
  ├─ clean_type
    └─ normal
  ├─ choice3_normal
    └─ [列表]
  ├─ choice3_advance
    └─ [列表]
  ├─ linear_cols
    └─ numeric_col,nan_col
  ├─ linear_threshold
    └─ 0.75
  ├─ feature_cols
    └─ numeric_col,nan_col
  ├─ feature_threshold
    └─ 0.75
  ├─ relation_func
    └─ func1
  ├─ pca_cols
    └─ numeric_col,nan_col
  ├─ n_components
    └─ 10
  ├─ kernel_selection
    └─ pca
  ├─ n_features
    └─ 10
├─ sample_preprocessing
  ├─ choice1_normal
    └─ [列表]
├─ specify_preprocessing
  ├─ drop_col
    └─ [列表]
  ├─ drop_row
    └─ [列表]
├─ standard_preprocessing
  ├─ scaler_method_choice
    └─ [列表]
  ├─ standard_col
    └─ [列表]
├─ str_preprocessing
  ├─ clean_ways
    └─ [列表]
      ├─ 元素 1
        ├─ str_choice
          └─ one_hot_encoder
        ├─ str_cols
          └─ string_col
        ├─ tfidf_min_df
          └─ 1
        ├─ tfidf_max_df
          └─ 1.0
        ├─ tfidf_max_features
          └─ None
        ├─ lda_max_df
          └─ 1.0
        ├─ lda_min_df
          └─ 1
        ├─ lda_max_features
          └─ 1000
        ├─ lda_n_components
          └─ 10
        ├─ lda_random_state
          └─ 42
        ├─ use_chinese_tokenizer
          └─ False
        ├─ feature_selection
          └─ False
        ├─ k_features
          └─ 100
  ├─ tfidf_min_df
    └─ 1
  ├─ tfidf_max_df
    └─ 1.0
  ├─ tfidf_max_features
    └─ None
  ├─ lda_min_df
    └─ 1
  ├─ lda_max_df
    └─ 1.0
  ├─ lda_max_features
    └─ 1000
  ├─ lda_n_components
    └─ 10
  ├─ lda_random_state
    └─ 42
├─ time_preprocessing
  ├─ time_col
    └─ date_col
