-
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 #82 from octue/release/0.0.20
Release/0.0.20
- Loading branch information
Showing
25 changed files
with
957 additions
and
350 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,14 +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", | ||
// Issues a strict search for data provided by megacorp, containing *.mdl files tagged as | ||
// classifiers for blade damage on system abc123 | ||
"filters": "organisation: megacorp AND tags:(classifier AND damage AND system:abc123) AND files:(extension:mdl)" | ||
} | ||
] | ||
"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" | ||
} | ||
] | ||
} | ||
} |
20 changes: 0 additions & 20 deletions
20
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" | ||
} | ||
] | ||
} | ||
} |
12 changes: 0 additions & 12 deletions
12
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" | ||
} | ||
] | ||
} | ||
} |
12 changes: 0 additions & 12 deletions
12
examples/wind_tunnel_datalogger_service/strands/output_manifest_filters.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.