Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

400 create citations using GitHub #442

Merged
merged 12 commits into from
May 22, 2024
Merged
5 changes: 5 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ replace = __version__ = "{new_version}"
[bumpversion:file:doc/conf.py]
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:CITATION.cff]
search = version = "{current_version}"
replace = version = "{new_version}"

48 changes: 48 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Cordier"
given-names: "Thibault"
orcid: "https://orcid.org/0000-0000-0000-0000"
title: "MAPIE - Model Agnostic Prediction Interval Estimator"
version: 0.8.3
date-released: 2019-04-30
url: "https://github.com/scikit-learn-contrib/MAPIE"
preferred-citation:
type: conference-paper
title: "Flexible and Systematic Uncertainty Estimation with Conformal Prediction via the MAPIE library"
authors:
- family-names: "Cordier"
given-names: "Thibault"
- family-names: "Blot"
given-names: "Vincent"
- family-names: "Lacombe"
given-names: "Louis"
- family-names: "Morzadec"
given-names: "Thomas"
- family-names: "Capitaine"
given-names: "Arnaud"
- family-names: "Brunel"
given-names: "Nicolas"
collection-title: "Conformal and Probabilistic Prediction with Applications"
collection-type: proceedings
pages: "549--581"
year: 2023
organization: "PMLR"
old-citation:
type: article
authors:
- family-names: "Taquet"
given-names: "Vianney"
- family-names: "Blot"
given-names: "Vincent"
- family-names: "Morzadec"
given-names: "Thomas"
- family-names: "Lacombe"
given-names: "Louis"
- family-names: "Brunel"
given-names: "Nicolas"
doi: "10.48550/arXiv.2207.12274"
journal: "arXiv preprint arXiv:2207.12274"
title: "MAPIE: an open-source library for distribution-free uncertainty quantification"
Comment on lines +45 to +47
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to quote the paper presented to COPA (as a replacement or in addition)?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you remind me the link to this paper? My only concern is that this paper also presented a new insight and was not a general overview of the library.

What do you think @vincentblot28 ?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we must add the COPA paper as we also present MAPIE in it. https://proceedings.mlr.press/v204/cordier23a/cordier23a.pdf

year: 2021
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ History
* Fix conda versionning.
* Reduce precision for test in `MapieCalibrator`.
* Fix invalid certificate when downloading data.
* Add citations utility to the documentation.

0.8.3 (2024-03-01)
------------------
Expand Down
14 changes: 10 additions & 4 deletions README.rst
thibaultcordier marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
:target: https://mapie.readthedocs.io/en/stable/?badge=stable
:alt: Documentation Status

.. |License| image:: https://img.shields.io/github/license/simai-ml/MAPIE
.. |License| image:: https://img.shields.io/github/license/scikit-learn-contrib/MAPIE
:target: https://github.com/scikit-learn-contrib/MAPIE/blob/master/LICENSE

.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/mapie
Expand All @@ -33,7 +33,7 @@
.. |DOI| image:: https://img.shields.io/badge/10.48550/arXiv.2207.12274-B31B1B.svg
:target: https://arxiv.org/abs/2207.12274

.. image:: https://github.com/simai-ml/MAPIE/raw/master/doc/images/mapie_logo_nobg_cut.png
.. image:: https://github.com/scikit-learn-contrib/MAPIE/raw/master/doc/images/mapie_logo_nobg_cut.png
:width: 400
:align: center

Expand Down Expand Up @@ -158,7 +158,7 @@ The full documentation can be found `on this link <https://mapie.readthedocs.io/
===============

You are welcome to propose and contribute new ideas.
We encourage you to `open an issue <https://github.com/simai-ml/MAPIE/issues>`_ so that we can align on the work to be done.
We encourage you to `open an issue <https://github.com/scikit-learn-contrib/MAPIE/issues>`_ so that we can align on the work to be done.
It is generally a good idea to have a quick discussion before opening a pull request that is potentially out-of-scope.
For more information on the contribution process, please go `here <CONTRIBUTING.rst>`_.

Expand Down Expand Up @@ -223,4 +223,10 @@ and with the financial support from Région Ile de France and Confiance.ai.
📝 License
==========

MAPIE is free and open-source software licensed under the `3-clause BSD license <https://github.com/simai-ml/MAPIE/blob/master/LICENSE>`_.
MAPIE is free and open-source software licensed under the `3-clause BSD license <LICENSE>`_.


📚 Citation
===========

If you use MAPIE in your research, please cite using `citations file <CITATION.cff>`_ on our repository.
Loading