From 4fea6b5aede57619aed5d9e520b94142d99f8425 Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Mon, 17 Feb 2025 22:40:30 -0500 Subject: [PATCH] add Paddle MLM framework (fixes #69) --- CHANGELOG.md | 3 ++- README.md | 27 ++++++++++++++------------- json-schema/schema.json | 3 ++- 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9fad41..fa97b5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/stac-extensions/mlm/tree/main) ### Added -- n/a +- Add [`Paddle`](https://github.com/PaddlePaddle/Paddle) to the list of `mlm:framework` + (fixes [#69](https://github.com/stac-extensions/mlm/issues/69)). ### Changed - n/a diff --git a/README.md b/README.md index a9053c8..4aeba8f 100644 --- a/README.md +++ b/README.md @@ -229,19 +229,20 @@ This should correspond to the common library name of a well-established ML frame No "Enum" are *enforced* to allow easy addition of newer frameworks, but it is **STRONGLY** recommended to use common names when applicable. Below are a few notable entries. -- `PyTorch` -- `TensorFlow` -- `scikit-learn` -- `Hugging Face` -- `Keras` -- `ONNX` -- `rgee` -- `spatialRF` -- `JAX` -- `MXNet` -- `Caffe` -- `PyMC` -- `Weka` +- [`PyTorch`](https://github.com/pytorch/pytorch) +- [`TensorFlow`](https://github.com/tensorflow/tensorflow) +- [`scikit-learn`](https://github.com/scikit-learn/scikit-learn) +- [`Hugging Face`](https://github.com/huggingface/) +- [`Keras`](https://github.com/keras-team/keras) +- [`ONNX`](https://github.com/onnx/onnx) +- [`rgee`](https://github.com/r-spatial/rgee) +- [`spatialRF`](https://github.com/BlasBenito/spatialRF) +- [`JAX`](https://github.com/jax-ml/jax) +- [`MXNet`](https://github.com/apache/mxnet) +- [`Caffe`](https://github.com/BVLC/caffe) +- [`PyMC`](https://github.com/pymc-devs/pymc) +- [`Weka`](https://ml.cms.waikato.ac.nz/weka/) +- [`Paddle`](https://github.com/PaddlePaddle/Paddle) ### Accelerator Type Enum diff --git a/json-schema/schema.json b/json-schema/schema.json index 5a76347..290f315 100644 --- a/json-schema/schema.json +++ b/json-schema/schema.json @@ -439,7 +439,8 @@ "MXNet", "Caffe", "PyMC", - "Weka" + "Weka", + "Paddle" ] }, {