-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from Sagacify/make-publishing-public
feat: make publishing public to PyPI
- Loading branch information
Showing
21 changed files
with
47 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
[tool.poetry] | ||
name = "saga_llm_evaluation_ml" | ||
name = "saga-llm-evaluation" | ||
version = "0.7.2" | ||
description = "Versatile Python library designed for evaluating the performance of large language models in Natural Language Processing (NLP) tasks. Developed by Sagacify" | ||
readme = "README.md" | ||
authors = ["Leonardo Remondini <[email protected]>", "Lucie Navez <[email protected]>"] | ||
authors = [ | ||
"Leonardo Remondini <[email protected]>", | ||
"Lucie Navez <[email protected]>", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.11" | ||
|
@@ -13,15 +16,15 @@ spacy = "^3.1.3" | |
evaluate = "^0.4.1" | ||
mauve-text = "^0.3.0" | ||
bert-score = "^0.3.13" | ||
bleurt = {git = "https://github.com/google-research/bleurt.git"} | ||
bleurt = { git = "https://github.com/google-research/bleurt.git" } | ||
torch = "2.1.1" | ||
tensorflow = {version = "^2.14", markers = "sys_platform == 'linux'"} | ||
tensorflow-macos = {version = "^2.14", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"} | ||
tensorflow = { version = "^2.14", markers = "sys_platform == 'linux'" } | ||
tensorflow-macos = { version = "^2.14", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'" } | ||
elemeta = "1.0.7" | ||
huggingface-hub = "^0.18.0" | ||
llama-cpp-python = "^0.2.11" | ||
en-core-web-sm = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.0/en_core_web_sm-3.7.0-py3-none-any.whl"} | ||
fr-core-news-sm = {url = "https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.7.0/fr_core_news_sm-3.7.0-py3-none-any.whl"} | ||
en-core-web-sm = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.0/en_core_web_sm-3.7.0-py3-none-any.whl" } | ||
fr-core-news-sm = { url = "https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.7.0/fr_core_news_sm-3.7.0-py3-none-any.whl" } | ||
faiss-cpu = "^1.7.4" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
@@ -31,12 +34,6 @@ black = "^22.10.0" | |
pytest = "^7.1.3" | ||
pytest-env = "^0.8.1" | ||
|
||
|
||
[[tool.poetry.source]] | ||
name = "sagacify" | ||
url = "https://pypiserver.sagacify.com/" | ||
priority = "supplemental" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.4.2" | ||
jupyterlab = "^4.0.7" | ||
|
@@ -46,7 +43,7 @@ requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.semantic_release] | ||
version_variable = "saga_llm_evaluation_ml/__init__.py:__version__" | ||
version_variable = "saga_llm_evaluation/__init__.py:__version__" | ||
branch = "master" | ||
version_toml = "pyproject.toml:tool.poetry.version" | ||
commit_subject = 'chore(release): Release v{version} [skip ci]' | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters