Skip to content
Snippets Groups Projects
Commit 08fefc3e authored by Maja Jablonska's avatar Maja Jablonska
Browse files

Remove debug prints

parent c3b184d3
Branches
Tags
1 merge request!46Merge COMBO 3.0 into master
......@@ -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
......
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment