From 553ad00ae478aa22e13019559b0f3a80413b5ac1 Mon Sep 17 00:00:00 2001 From: fcakyon Date: Sun, 9 Nov 2025 22:59:41 +0300 Subject: [PATCH] docs: add academic citation information --- CITATION.cff | 41 +++++++++++++++++++++++++++++++++++++++++ README.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..4b89ce5 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,41 @@ +cff-version: 1.2.0 +message: "If you use this package, please consider citing it." +authors: +- family-names: "Akyon" + given-names: "Fatih Cagatay" +- family-names: "Kirman" + given-names: "Abdullah" +- family-names: "Bozgan" + given-names: "Kerem" +title: "Moderators: Free and open-source Python library for content moderation" +version: 0.1.2 +license: Apache-2.0 +repository-code: "https://github.com/viddexa/moderators" +preferred-citation: + type: conference-paper + title: "State-of-the-Art in Nudity Classification: A Comparative Analysis" + doi: 10.1109/ICASSPW59220.2023.10193621 + url: https://ieeexplore.ieee.org/abstract/document/10193621/ + conference: + name: "2023 IEEE International Conference on Acoustics, Speech, and Signal Processing Workshops (ICASSPW)" + authors: + - family-names: "Akyon" + given-names: "Fatih Cagatay" + - family-names: "Temizel" + given-names: "Alptekin" + year: 2023 + start: 1 + end: 5 + isbn: 979-8-3503-0261-5 +references: +- type: article + title: "Deep Architectures for Content Moderation and Movie Content Rating" + doi: 10.48550/arXiv.2212.04533 + url: https://arxiv.org/abs/2212.04533 + authors: + - family-names: "Akyon" + given-names: "Fatih Cagatay" + - family-names: "Temizel" + given-names: "Alptekin" + year: 2022 + journal: "arXiv preprint arXiv:2212.04533" diff --git a/README.md b/README.md index f3604e3..51d054f 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,34 @@ Small demos and benchmarking script: `examples/README.md`, `examples/benchmarks. - Simple backend switch (API/CLI flag, e.g., `--backend onnx|torch`) - Expanded benchmarks: latency, throughput, memory on common tasks +## 📖 Citation + +If you use this package in your work, please cite: + +```bibtex +@article{akyon2023nudity, + title={State-of-the-Art in Nudity Classification: A Comparative Analysis}, + author={Akyon, Fatih Cagatay and Temizel, Alptekin}, + booktitle={2023 IEEE International Conference on Acoustics, Speech, and Signal Processing Workshops (ICASSPW)}, + pages={1--5}, + year={2023}, + organization={IEEE}, + doi={10.1109/ICASSPW59220.2023.10193621}, + url={https://ieeexplore.ieee.org/abstract/document/10193621/} +} +``` + +```bibtex +@article{akyon2022contentmoderation, + title={Deep Architectures for Content Moderation and Movie Content Rating}, + author={Akyon, Fatih Cagatay and Temizel, Alptekin}, + journal={arXiv preprint arXiv:2212.04533}, + year={2022}, + doi={10.48550/arXiv.2212.04533}, + url={https://arxiv.org/abs/2212.04533} +} +``` + ## 📄 License Apache-2.0. See [LICENSE](LICENSE).