diff --git a/combo/modules/model.py b/combo/modules/model.py index d9ad468dc16cafd03c024b2964f9429c41a5c5f3..8f45ccafd2c77b36d8c8bf2b1189f2b32f5b9db4 100644 --- a/combo/modules/model.py +++ b/combo/modules/model.py @@ -344,7 +344,6 @@ class Model(Module, FromParameters): model_params = config.get("model") model_params['parameters']['vocabulary'] = vocab_params - print(vocab_params) # The experiment config tells us how to _train_ a model, including where to get pre-trained # embeddings/weights from. We're now _loading_ the model, so those weights will already be diff --git a/combo/utils/download.py b/combo/utils/download.py index ff5ed9b5e8ef9424a2dbfb64c0ac90985e4a3d98..8b54a0f8283810124d9ae404085a76181345ec95 100644 --- a/combo/utils/download.py +++ b/combo/utils/download.py @@ -17,7 +17,6 @@ _CACHE_DIR = os.getenv("COMBO_DIR", os.path.join(_HOME_DIR, ".combo")) def download_file(model_name, force=False): _make_cache_dir() url = _URL.format(model=model_name) - print('URL', url) local_filename = url.split("/")[-1] location = os.path.join(_CACHE_DIR, local_filename) if os.path.exists(location) and not force: