Spaces:
Running
Running
File size: 1,585 Bytes
e057d08 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | # Model Configuration
# ====================
models:
# SAP RPT-1 (Primary Model)
- name: 'sap-rpt1-small'
enabled: true
priority: 'high'
docker_image: 'sap-rpt1'
- name: 'sap-rpt1-large'
enabled: true
priority: 'high'
docker_image: 'sap-rpt1'
# SAP RPT-1 OSS via Hugging Face (Open Source)
- name: 'sap-rpt1-hf'
enabled: true
priority: 'high'
docker_image: 'sap-rpt1'
description: 'SAP RPT-1 OSS model via HuggingFace token authentication'
# Pretrained Competitors
- name: 'tabpfn'
enabled: true
priority: 'high'
docker_image: 'tabpfn'
- name: 'tabicl'
enabled: false # Enable when implementation ready
priority: 'medium'
docker_image: 'tabicl'
# AutoML
- name: 'autogluon'
enabled: true
priority: 'medium'
docker_image: 'autogluon'
# Gradient Boosting Baselines
- name: 'xgboost'
enabled: true
priority: 'medium'
docker_image: 'baselines'
- name: 'catboost'
enabled: true
priority: 'medium'
docker_image: 'baselines'
- name: 'lightgbm'
enabled: true
priority: 'low'
docker_image: 'baselines'
# Model Groups (for batch experiments)
model_groups:
all:
- sap-rpt1-small
- sap-rpt1-large
- sap-rpt1-hf
- tabpfn
- autogluon
- xgboost
- catboost
- lightgbm
pretrained_only:
- sap-rpt1-small
- sap-rpt1-large
- sap-rpt1-hf
- tabpfn
baselines_only:
- xgboost
- catboost
- lightgbm
high_priority:
- sap-rpt1-small
- sap-rpt1-large
- sap-rpt1-hf
- tabpfn
|