From fc0cddda9a47aa52f44f659a2998649f50b900f4 Mon Sep 17 00:00:00 2001
From: Pieter Gijsbers
Date: Mon, 25 Oct 2021 20:19:03 +0200
Subject: [PATCH 1/5] Create CITATION.cff
Some ORCIDs are missing because I could not with certainty determine the ORCID of some co-authors.
---
CITATION.cff | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
create mode 100644 CITATION.cff
diff --git a/CITATION.cff b/CITATION.cff
new file mode 100644
index 000000000..e1b3b2c00
--- /dev/null
+++ b/CITATION.cff
@@ -0,0 +1,34 @@
+cff-version: 1.2.0
+message: "If you use this software in a publication, please cite the metadata from preferred-citation."
+preferred-citation:
+ type: article
+ authors:
+ - family-names: "Feurer"
+ given-names: "Matthias"
+ alias: "mfeurer"
+ - family-names: "van Rijn"
+ given-names: "Jan N."
+ orcid: "https://orcid.org/0000-0003-2898-2168"
+ - family-names: "Kadra"
+ given-names: "Arlind"
+ - family-names: "Gijsbers"
+ given-names: "Pieter"
+ orcid: "https://orcid.org/0000-0001-7346-8075"
+ - family-names: "Mallik"
+ given-names: "Neeratyoy"
+ orcid: "https://orcid.org/0000-0002-0598-1608"
+ - family-names: "Ravi"
+ given-names: "Sahithya"
+ - family-names: "Müller"
+ given-names: "Andreas"
+ - family-names: "Vanschoren"
+ given-names: "Joaquin"
+ orcid: "https://orcid.org/0000-0001-7044-9805"
+ - family-names: "Hutter"
+ given-names: "Frank"
+ journal: "Journal of Machine Learning Research"
+ title: "OpenML-Python: an extensible Python API for OpenML"
+ abstract: "OpenML is an online platform for open science collaboration in machine learning, used to share datasets and results of machine learning experiments. In this paper, we introduce OpenML-Python, a client API for Python, which opens up the OpenML platform for a wide range of Python-based machine learning tools. It provides easy access to all datasets, tasks and experiments on OpenML from within Python. It also provides functionality to conduct machine learning experiments, upload the results to OpenML, and reproduce results which are stored on OpenML. Furthermore, it comes with a scikit-learn extension and an extension mechanism to easily integrate other machine learning libraries written in Python into the OpenML ecosystem. Source code and documentation are available at https://github.com/openml/openml-python/."
+ volume: 22
+ year: 2021
+ url: https://jmlr.org/papers/v22/19-920.html
From 3f7e393d95e22e698ea8d748fd7f6c00bfb5966f Mon Sep 17 00:00:00 2001
From: Pieter Gijsbers
Date: Mon, 25 Oct 2021 20:26:55 +0200
Subject: [PATCH 2/5] Add page details
---
CITATION.cff | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/CITATION.cff b/CITATION.cff
index e1b3b2c00..607d350aa 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -31,4 +31,8 @@ preferred-citation:
abstract: "OpenML is an online platform for open science collaboration in machine learning, used to share datasets and results of machine learning experiments. In this paper, we introduce OpenML-Python, a client API for Python, which opens up the OpenML platform for a wide range of Python-based machine learning tools. It provides easy access to all datasets, tasks and experiments on OpenML from within Python. It also provides functionality to conduct machine learning experiments, upload the results to OpenML, and reproduce results which are stored on OpenML. Furthermore, it comes with a scikit-learn extension and an extension mechanism to easily integrate other machine learning libraries written in Python into the OpenML ecosystem. Source code and documentation are available at https://github.com/openml/openml-python/."
volume: 22
year: 2021
+ start: 1
+ end: 5
+ pages: 5
+ number: 100
url: https://jmlr.org/papers/v22/19-920.html
From 31ddd8480b7982728607e04e980f38fea9c362ea Mon Sep 17 00:00:00 2001
From: Pieter Gijsbers
Date: Tue, 26 Oct 2021 10:01:57 +0200
Subject: [PATCH 3/5] Add Matthias' ORCID
---
CITATION.cff | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CITATION.cff b/CITATION.cff
index 607d350aa..1c40f3730 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -5,7 +5,7 @@ preferred-citation:
authors:
- family-names: "Feurer"
given-names: "Matthias"
- alias: "mfeurer"
+ orcid: "https://orcid.org/0000-0001-9611-8588"
- family-names: "van Rijn"
given-names: "Jan N."
orcid: "https://orcid.org/0000-0003-2898-2168"
From 4fc62130326576af789610ed2c4d94df9a75caed Mon Sep 17 00:00:00 2001
From: Pieter Gijsbers
Date: Tue, 26 Oct 2021 15:16:22 +0200
Subject: [PATCH 4/5] Add Frank's ORCID
---
CITATION.cff | 1 +
1 file changed, 1 insertion(+)
diff --git a/CITATION.cff b/CITATION.cff
index 1c40f3730..603f06e3d 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -26,6 +26,7 @@ preferred-citation:
orcid: "https://orcid.org/0000-0001-7044-9805"
- family-names: "Hutter"
given-names: "Frank"
+ orcid: "https://orcid.org/0000-0002-2037-3694"
journal: "Journal of Machine Learning Research"
title: "OpenML-Python: an extensible Python API for OpenML"
abstract: "OpenML is an online platform for open science collaboration in machine learning, used to share datasets and results of machine learning experiments. In this paper, we introduce OpenML-Python, a client API for Python, which opens up the OpenML platform for a wide range of Python-based machine learning tools. It provides easy access to all datasets, tasks and experiments on OpenML from within Python. It also provides functionality to conduct machine learning experiments, upload the results to OpenML, and reproduce results which are stored on OpenML. Furthermore, it comes with a scikit-learn extension and an extension mechanism to easily integrate other machine learning libraries written in Python into the OpenML ecosystem. Source code and documentation are available at https://github.com/openml/openml-python/."
From 19b3712fb3a2880a2e1a9528d0eb30bf19944aff Mon Sep 17 00:00:00 2001
From: Pieter Gijsbers
Date: Tue, 26 Oct 2021 19:31:59 +0200
Subject: [PATCH 5/5] Add Andreas' ORCID
---
CITATION.cff | 1 +
1 file changed, 1 insertion(+)
diff --git a/CITATION.cff b/CITATION.cff
index 603f06e3d..c5454ef6f 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -21,6 +21,7 @@ preferred-citation:
given-names: "Sahithya"
- family-names: "Müller"
given-names: "Andreas"
+ orcid: "https://orcid.org/0000-0002-2349-9428"
- family-names: "Vanschoren"
given-names: "Joaquin"
orcid: "https://orcid.org/0000-0001-7044-9805"