-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Potential v0.5.1 PyPi release (#347)
* A candidate for the v0.5 pypi release; added metadata to pyproject.toml; limited python versions to 3.10 variants (until we can include a version of modelbench that supports higher); updated readme with new options * A candidate for the v0.5.1 pypi release; works with pythons from 3.10 to 3.12.
- Loading branch information
1 parent
5a5cf65
commit 6d0d95c
Showing
3 changed files
with
75 additions
and
28 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,17 +3,51 @@ requires-python = ">=3.10, <3.13" | |
|
||
[tool.poetry] | ||
name = "modelbench" | ||
version = "0.5.0" | ||
description = "" | ||
version = "0.5.1" | ||
description = "Run benchmarks and generate reports measuring the behavior of many AI Systems." | ||
license = "Apache-2.0" | ||
authors = ["MLCommons AI Safety <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/mlcommons/modelbench" | ||
keywords = [ | ||
"AI", | ||
"GenAI", | ||
"LLM", | ||
"NLP", | ||
"evaluate", | ||
"measure", | ||
"quality", | ||
"testing", | ||
"prompt", | ||
"safety", | ||
"compare", | ||
"artificial", | ||
"intelligence", | ||
"Large", | ||
"Language", | ||
"Models", | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: System :: Benchmark", | ||
"Typing :: Typed", | ||
] | ||
packages = [ | ||
{ include = "modelbench", from = "src" } | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10,<3.13" | ||
modelgauge = { version = "^0.5.0", extras = ["all_plugins"] } | ||
modelgauge = { version = ">=0.5.1", extras = ["all_plugins"] } | ||
jq = "^1.6.0" | ||
click = "^8.1.7" | ||
casefy = "^0.1.7" | ||
|