diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/pull_request_template.md similarity index 100% rename from .github/PULL_REQUEST_TEMPLATE/pull_request_template.md rename to .github/pull_request_template.md diff --git a/CITATION.cff b/CITATION.cff index ca80f8c..0c26ffa 100755 --- a/CITATION.cff +++ b/CITATION.cff @@ -7,11 +7,17 @@ authors: - family-names: Fürneisen given-names: Moritz affiliation: "ZBW - Leibniz Information Centre for Economics" + - family-names: Rajendram Bashyam + given-names: Lakshmi + affiliation: "ZBW - Leibniz Information Centre for Economics" + - family-names: Majal + given-names: Ghulam Mustafa + affiliation: "ZBW - Leibniz Information Centre for Economics" title: "qualle (a framework to predict the quality of a multi-label classification result)" abstract: "This framework allows to train a model which can be used to predict the quality of the result of applying a multi-label classification (MLC) method on a document. In this implementation, only the recall is predicted for a document, but in principle any document-level quality estimation (such as the prediction of precision) can be implemented analogously." -version: 0.3.0 +version: 0.3.1 license: Apache-2.0 -date-released: 2024-09-10 +date-released: 2024-10-10 repository-code: "https://github.com/zbw/qualle" contact: - name: "Automatization of subject indexing using methods from artificial intelligence (AutoSE)" diff --git a/Dockerfile b/Dockerfile index 302c80f..a1b9a0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ LABEL maintainer="AutoSE " ARG POETRY_VIRTUALENVS_CREATE=false RUN pip install --upgrade pip --no-cache-dir -RUN pip install poetry gunicorn==22.0.* "uvicorn[standard]==0.22" --no-cache-dir +RUN pip install poetry gunicorn==23.0.* "uvicorn[standard]==0.22" --no-cache-dir COPY pyproject.toml poetry.lock README.md /app/ diff --git a/pyproject.toml b/pyproject.toml index 553868c..42f6968 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "qualle" -version = "0.3.0-dev" +version = "0.3.1-dev" description = "A framework to predict the quality of a multi-label classification result" authors = ["AutoSE "] license = "Apache-2.0"