From 74fc29fdc27b5d8c44ab9d04cb406d1cc0eff218 Mon Sep 17 00:00:00 2001 From: Stefania Morrone Date: Tue, 9 Apr 2024 12:59:36 +0200 Subject: [PATCH] upload --- stac/ml_items/test.json | 108 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 stac/ml_items/test.json diff --git a/stac/ml_items/test.json b/stac/ml_items/test.json new file mode 100644 index 0000000..b7a7a8f --- /dev/null +++ b/stac/ml_items/test.json @@ -0,0 +1,108 @@ +{ + "type": "Feature", + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/ml-model/v1.0.0/schema.json" + ], + "id": "SF7E3D8B", + "collection": "ML collection", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180, + -90 + ], + [ + -180, + 90 + ], + [ + 180, + 90 + ], + [ + 180, + -90 + ], + [ + -180, + -90 + ] + ] + ] + }, + "properties": { + "provider": "epsit", + "use-case": "common", + "title": "test", + "description": "test", + "main-category": "Machine Learning", + "datetime": "2024-04-09", + "keywords": [ + "test", + "jupyter_notebook_available" + ], + "platform": "EOX", + "framework": "PyTorch", + "algorithm": "Random-Forest-Classifier", + "license": "MIT", + "ml-model:type": "ml-model", + "ml-model:learning_approach": "supervised", + "ml-model:prediction_type": "classification", + "ml-model:architecture": "random-forest", + "ml-model:training-processor-type": "cpu", + "ml-model:training-os": "linux", + "use-constraints": "test", + "model-configuration": "test" + }, + "links": [ + { + "rel": "root", + "href": "./catalog.json", + "type": "application/json", + "title": "Root" + }, + { + "rel": "parent", + "href": "./catalog.json", + "type": "application/json", + "title": "ML collection" + }, + { + "href": "https://www.test.com", + "rel": "about", + "type": "text/html", + "title": "Reference link" + }, + { + "href": "https://www.test.com", + "rel": "about", + "type": "text/html", + "title": "Example" + } + ], + "assets": { + "input-data-used": { + "href": "test", + "type": "application/json", + "title": "Input data used", + "description": "test", + "biases-and-ethical-aspects": "test", + "roles": [ + "data" + ] + }, + "model-checkpoint": { + "href": "test", + "type": "application/octet-stream", + "title": "Model", + "description": "test", + "performance": "test", + "roles": [ + "ml-model:checkpoint" + ] + } + } +} \ No newline at end of file