项目文件夹

文件
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

22 行
827 B
Plaintext

I have a tabular dataset from UCI Adult Census Income with the following columns:
- age (number)
- workclass (category)
- education (category, ordered from preschool through doctorate)
- education-num (number, 1-16)
- marital-status (category)
- occupation (category, 14 unique values)
- relationship (category)
- race (category)
- sex (binary: Male / Female)
- capital-gain (number, heavily skewed, mostly zero)
- capital-loss (number, similar to capital-gain)
- hours-per-week (number, 1-99)
- native-country (category, high cardinality ~40 classes)
The target column is "income" (binary: >50K or <=50K).
The dataset has about 48k rows. Training should be reasonably fast — prefer the
medium_quality preset. Use the concat combiner with two FC layers. Use AdamW with a
learning-rate scheduler.