Mercurial > repos > goeckslab > ludwig_render_config
comparison ludwig_render_config.py @ 4:e3c63770083d draft
planemo upload for repository https://github.com/goeckslab/Galaxy-Ludwig.git commit 4dc221b2fa9717552787f0985ad3fc3df4460158
| author | goeckslab | 
|---|---|
| date | Sat, 21 Jun 2025 15:04:30 +0000 | 
| parents | ed8a9ea5bc73 | 
| children | 
   comparison
  equal
  deleted
  inserted
  replaced
| 3:56c4f4c0c6df | 4:e3c63770083d | 
|---|---|
| 1 import json | 1 import json | 
| 2 import logging | 2 import logging | 
| 3 import sys | 3 import sys | 
| 4 | 4 | 
| 5 import yaml | |
| 5 from ludwig.constants import ( | 6 from ludwig.constants import ( | 
| 6 COMBINER, | 7 COMBINER, | 
| 7 HYPEROPT, | 8 HYPEROPT, | 
| 8 INPUT_FEATURES, | 9 INPUT_FEATURES, | 
| 9 MODEL_TYPE, | 10 MODEL_TYPE, | 
| 11 PROC_COLUMN, | 12 PROC_COLUMN, | 
| 12 TRAINER, | 13 TRAINER, | 
| 13 ) | 14 ) | 
| 14 from ludwig.schema.model_types.utils import merge_with_defaults | 15 from ludwig.schema.model_types.utils import merge_with_defaults | 
| 15 | 16 | 
| 16 import yaml | |
| 17 | 17 | 
| 18 logging.basicConfig(level=logging.DEBUG) | 18 logging.basicConfig(level=logging.DEBUG) | 
| 19 LOG = logging.getLogger(__name__) | 19 LOG = logging.getLogger(__name__) | 
| 20 inputs = sys.argv[1] | 20 inputs = sys.argv[1] | 
| 21 with open(inputs, 'r') as handler: | 21 with open(inputs, 'r') as handler: | 
