Skip to content
Snippets Groups Projects
Commit 420fb2c4 authored by Laura Christine Kühle's avatar Laura Christine Kühle
Browse files

Write-protected all generated ANN data and models.

parent 1ae28865
Branches
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ rule test_model:
DIR+'/normalized_input_data.npy',
DIR+'/output_data.npy'
output:
DIR+'/'+'_'.join(MODELS.keys())+'.json'
protected(DIR+'/'+'_'.join(MODELS.keys())+'.json')
params:
num_iterations = config['num_iterations'],
compare_normalization = config['compare_normalization']
......@@ -73,8 +73,8 @@ rule train_model:
DIR+'/normalized_input_data.npy',
DIR+'/output_data.npy'
output:
DIR+'/trained models/model__{model}.pt',
DIR+'/trained models/loss__{model}.pt'
protected(DIR+'/trained models/model__{model}.pt'),
protected(DIR+'/trained models/loss__{model}.pt')
log:
DIR+'/log/train_model_{model}.log'
run:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment