santit96's picture
Create the streamlit app that classifies the trash in an image into classes
fa84113
raw
history blame
178 Bytes
from omegaconf import OmegaConf
def set_config_readonly(conf):
OmegaConf.set_readonly(conf, True)
def set_config_writeable(conf):
OmegaConf.set_readonly(conf, False)