-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.52 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "fmbench"
version = "2.0.27"
description ="Benchmark performance of **any Foundation Model (FM)** deployed on **any AWS Generative AI service**, be it **Amazon SageMaker**, **Amazon Bedrock**, **Amazon EKS**, or **Amazon EC2**. The FMs could be deployed on these platforms either directly through `FMbench`, or, if they are already deployed then also they could be benchmarked through the **Bring your own endpoint** mode supported by `FMBench`."
authors = ["Amit Arora <[email protected]>", "Madhur Prashant <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/aws-samples/foundation-model-benchmarking-tool"
keywords = ["benchmarking", "sagemaker", "bedrock", "bring your own endpoint", "generative-ai", "foundation-models", "llama3", "ec2", "eks"]
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.2"
ipywidgets = "8.1.1"
transformers = "4.46.1"
pandas = "2.1.4"
datasets = "2.16.1"
seaborn = "0.13.1"
tomark = "0.1.4"
jupyter = "^1.0.0"
boto3 = "^1.34.109"
papermill = "^2.5.0"
pyyaml = "*"
sagemaker = "2.223.0"
litellm = "1.54.0"
plotly = "5.22.0"
kaleido = "0.2.1"
jinja2 = "3.1.4"
tqdm = "4.66.4"
pydantic = "2.7.4"
ray = "2.32.0"
torch = "2.4"
sentence-transformers = "3.0.1"
ec2-metadata = "2.13.0"
nvitop = "1.3.2"
psutil = "5.9.8"
[tool.poetry.dev-dependencies]
[[tool.poetry.packages]]
include = "fmbench"
from = "src"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fmbench = 'fmbench.main:main'