From f9bbcdb0298e509d7431ed8af0283c2072a6090a Mon Sep 17 00:00:00 2001 From: fatih <34196005+fcakyon@users.noreply.github.com> Date: Tue, 23 Nov 2021 01:24:55 +0300 Subject: [PATCH] add zenodo doi and citation into readme (#280) * add zenodo doi and citation into readme * update version in citation * add citation.cff * Update CITATION.cff * Update README.md --- CITATION.cff | 21 +++++++++++++++++++++ README.md | 25 +++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 000000000..b71118ae1 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,21 @@ +cff-version: 1.2.0 +message: "If you use this package, please cite it as below." +authors: +- family-names: "Akyon" + given-names: "Fatih Cagatay" +- family-names: "Cengiz" + given-names: "Cemil" +- family-names: "Altinuc" + given-names: "Sinan Onur" +- family-names: "Cavusoglu" + given-names: "Devrim" +- family-names: "Sahin" + given-names: "Kadir" +- family-names: "Eryuksel" + given-names: "Ogulcan" +title: "SAHI: A lightweight vision library for performing large scale object detection and instance segmentation" +doi: 10.5281/zenodo.5718950 +month: nov +year: 2021 +publisher: Zenodo +url: "https://doi.org/10.5281/zenodo.5718950" diff --git a/README.md b/README.md index 827cb2971..661ee7854 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ pypi version conda version ci +
+ ci @@ -422,6 +424,29 @@ mot_video.export(export_dir="mot_gt", type="gt") Find detailed info on MOT utilities (ground truth dataset creation, exporting tracker metrics in mot challenge format) at [MOT.md](docs/MOT.md). +##
Citation
+ +If you use this package in your work, please cite it as: + +``` +@software{akyon2021sahi, + author = {Akyon, Fatih Cagatay and + Cengiz, Cemil and + Altinuc, Sinan Onur and + Cavusoglu, Devrim and + Sahin, Kadir and + Eryuksel, Ogulcan}, + title = {{SAHI: A lightweight vision library for performing + large scale object detection and instance + segmentation}}, + month = nov, + year = 2021, + publisher = {Zenodo}, + doi = {10.5281/zenodo.5718950}, + url = {https://doi.org/10.5281/zenodo.5718950} +} +``` + ##
Contributing
`sahi` library currently supports all [YOLOv5 models](https://github.com/ultralytics/yolov5/releases) and [MMDetection models](https://github.com/open-mmlab/mmdetection/blob/master/docs/model_zoo.md). Moreover, it is easy to add new frameworks.