Skip to content

Commit

Permalink
Use single for output to avoid future linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseEspinosa committed Oct 22, 2024
1 parent ad2354b commit a210ece
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions modules/local/torch_tune.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,7 @@ process TORCH_TUNE {
tuple val(combination_key), val(split_transform_key), path(ray_tune_config), path(model), path(data_csv), path(experiment_config), path(initial_weights)

output:
tuple val(split_transform_key),
val(combination_key),
path(data_csv),
path(experiment_config),
path("*-config.json"),
path("*-model.safetensors"),
path("*-optimizer.pt"),
path("*-metrics.csv"),
path(initial_weights),
emit: tune_specs
tuple val(split_transform_key), val(combination_key), path(data_csv), path(experiment_config), path("*-config.json"), path("*-model.safetensors"), path("*-optimizer.pt"), path("*-metrics.csv"), path(initial_weights), emit: tune_specs

// output the debug files if they are present, making this an optional channel
tuple val("debug_${prefix}"),
Expand Down

0 comments on commit a210ece

Please sign in to comment.