项目文件夹

文件
wehub-resource-sync 593b94c120
pytest / Unit Tests (push) Has been cancelled
pytest / Integration (integration_tests_a) (push) Has been cancelled
pytest / Integration (integration_tests_b) (push) Has been cancelled
pytest / Integration (integration_tests_c) (push) Has been cancelled
pytest / Integration (integration_tests_d) (push) Has been cancelled
pytest / Integration (integration_tests_e) (push) Has been cancelled
pytest / Integration (integration_tests_f) (push) Has been cancelled
pytest / Integration (integration_tests_g) (push) Has been cancelled
pytest / Integration (integration_tests_h) (push) Has been cancelled
pytest / Integration (integration_tests_i) (push) Has been cancelled
pytest / Integration (integration_tests_j) (push) Has been cancelled
pytest / Distributed (distributed_a) (push) Has been cancelled
pytest / Distributed (distributed_b) (push) Has been cancelled
pytest / Distributed (distributed_c) (push) Has been cancelled
pytest / Distributed (distributed_d) (push) Has been cancelled
pytest / Distributed (distributed_e) (push) Has been cancelled
pytest / Distributed (distributed_f) (push) Has been cancelled
pytest / Minimal Install (push) Has been cancelled
pytest / Event File (push) Has been cancelled
pytest (slow) / py-slow (push) Has been cancelled
Publish JSON Schema / publish-schema (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:49:20 +08:00

84 行
1.8 KiB
YAML

model_type: ecd
input_features:
- name: fixed acidity
type: number
preprocessing:
normalization: zscore
- name: volatile acidity
type: number
preprocessing:
normalization: zscore
- name: citric acid
type: number
preprocessing:
normalization: zscore
- name: residual sugar
type: number
preprocessing:
normalization: zscore
- name: chlorides
type: number
preprocessing:
normalization: zscore
- name: free sulfur dioxide
type: number
preprocessing:
normalization: zscore
- name: total sulfur dioxide
type: number
preprocessing:
normalization: zscore
- name: density
type: number
preprocessing:
normalization: zscore
- name: pH
type: number
preprocessing:
normalization: zscore
- name: sulphates
type: number
preprocessing:
normalization: zscore
- name: alcohol
type: number
preprocessing:
normalization: zscore
output_features:
- name: quality
type: binary
trainer:
epochs: 20
# NOTE: The Optuna executor requires PR #4090 to be merged, or Ludwig >= 0.14.
# Install: pip install ludwig optuna
hyperopt:
executor:
type: optuna
num_samples: 20
sampler: auto # auto selects the best sampler; also: tpe, gp, cmaes, random
pruner: hyperband # stop unpromising trials early (MedianPruner also supported)
storage: sqlite:///optuna_results.db # enables resumability across runs
parameters:
trainer.learning_rate:
space: loguniform
lower: 1.0e-5
upper: 1.0e-2
trainer.batch_size:
space: int
lower: 16
upper: 256
trainer.optimizer.type:
space: choice
categories:
- adam
- adamw
- radam
- schedule_free_adamw
goal: minimize
metric: validation.combined.loss
split: validation