7cf4c5259b
- UI is now on customtkinter - new environment.yml file - entry point is now in main.py - minor improvements in audio_transcription
9 lines
294 B
Python
9 lines
294 B
Python
from transcription.device_configuration import DeviceConfiguration
|
|
|
|
# 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
|
|
} |