3d48f473b0
- found problems with mps - integrated jinja2 templates for rendering (.tex?) - raw ui & bad structure
19 lines
346 B
Python
19 lines
346 B
Python
from transcription.configuration import Configuration
|
|
|
|
|
|
# TODO: implement saving & removing configuration
|
|
def save_configuration(cfg: DeviceConfiguration):
|
|
config = {
|
|
"Model": cfg.model_name,
|
|
"Batch Size": cfg.batch_size,
|
|
"Data Type": cfg.data_type,
|
|
}
|
|
|
|
|
|
def load_config():
|
|
pass
|
|
|
|
|
|
def delete_config():
|
|
pass
|