forked from intel/llm-on-ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.57 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "llm-on-ray"
version = "0.0.1"
description = "LLM on Ray Workflow"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["llm", "ray"]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Environment :: GPU :: Intel Data Center GPU",
"Environment :: HPU :: Gaudi",
"Framework :: Ray"
]
dependencies = [
"accelerate",
"datasets>=2.14.6",
"numpy",
"ray>=2.9",
"typing>=3.7.4.3",
"tabulate",
"ray[tune]",
"ray[serve]",
"gradio==4.11.0",
"gymnasium",
"dm-tree",
"tensorboard",
"scikit-image",
"einops",
"peft>=0.4.0",
"deltatuner==1.1.9",
"py-cpuinfo",
"pydantic-yaml",
"paramiko==3.4.0",
]
[project.optional-dependencies]
cpu = [
"transformers>=4.35.0",
"intel_extension_for_pytorch==2.1.0+cpu",
"torch==2.1.0+cpu",
"oneccl_bind_pt==2.1.0"
]
gpu = [
"transformers>=4.35.0",
"torch==2.0.1a0",
"torchvision==0.15.2a0",
"intel-extension-for-pytorch==2.0.110+xpu",
"oneccl_bind_pt==2.0.100+gpu",
"dpctl==0.14.5"
]
deepspeed = [
"packaging>=20.0",
"psutil",
"tqdm",
# 0.10.2 is required to support bloom
"deepspeed>=0.10.2, <0.11.2"
]
bigdl-cpu = [
"bigdl-llm[all]"
]
[tool.setuptools]
packages = ["finetune", "inference"]
[project.urls]
Repository = "https://github.com/intel/llm-on-ray.git"
Issues = "https://github.com/intel/llm-on-ray.git/issues"