-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MRG: Merge pull request #83 from octue/feature/tag-templates-2
Feature: Tag templates
- Loading branch information
Showing
23 changed files
with
941 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
{ | ||
// Manifest strands contain lists, with one entry for each required dataset | ||
"configuration_manifest": [ | ||
{ | ||
// Once the inputs are validated, your analysis program can use this key to access the dataset | ||
"key": "trained_model", | ||
// General notes, which are helpful as a reminder to users of the service | ||
"purpose": "The trained classifier" | ||
} | ||
] | ||
"configuration_manifest": { | ||
"datasets": [ | ||
{ | ||
// Once the inputs are validated, your analysis program can use this key to access the dataset | ||
"key": "trained_model", | ||
// General notes, which are helpful as a reminder to users of the service | ||
"purpose": "The trained classifier" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
examples/met_mast_scada_service/strands/input_manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// Manifest strands contain lists, with one entry for each required dataset | ||
"input_manifest": { | ||
"datasets": [ | ||
{ | ||
// Once the inputs are validated, your analysis program can use this key to access the dataset | ||
"key": "met_mast_data", | ||
// General notes, which are helpful as a reminder to users of the service | ||
"purpose": "A dataset containing meteorological mast data" | ||
}, | ||
{ | ||
"key": "scada_data", | ||
"purpose": "A dataset containing scada data" | ||
} | ||
] | ||
} | ||
} |
15 changes: 0 additions & 15 deletions
15
examples/met_mast_scada_service/strands/input_manifest_filters.json
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
examples/met_mast_scada_service/strands/output_manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"output_manifest": { | ||
"datasets": [ | ||
{ | ||
// Twined will prepare a manifest with this key, which you can add to during the analysis or once its complete | ||
"key": "met_scada_checks", | ||
// General notes, which are helpful as a reminder to users of the service | ||
"purpose": "A dataset containing figures showing correlations between mast and scada data" | ||
} | ||
] | ||
} | ||
} |
10 changes: 0 additions & 10 deletions
10
examples/met_mast_scada_service/strands/output_manifest_filters.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
examples/wind_tunnel_datalogger_service/strands/output_manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"output_manifest": { | ||
"datasets": [ | ||
{ | ||
// Twined will prepare a manifest with this key, which you can add to during the analysis or once its complete | ||
"key": "met_scada_checks", | ||
// General notes, which are helpful as a reminder to users of the service | ||
"purpose": "A dataset containing figures showing correlations between mast and scada data" | ||
} | ||
] | ||
} | ||
} |
10 changes: 0 additions & 10 deletions
10
examples/wind_tunnel_datalogger_service/strands/output_manifest_filters.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.