-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 701 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 701 Bytes
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
from setuptools import setup
import os
from setuptools import dist
required = [
"numpy",
"torch>=2.0.0",
"transformers==4.57.6",
"vllm==0.11.0",
"accelerate>=0.20.0",
"matplotlib>=3.5.0",
"psutil",
"futures",
# "flash-attn @ https://github.com/Dao-AILab/flash-attention/releases/download/v2.7.4.post1/flash_attn-2.7.4.post1+cu12torch2.6cxx11abiTRUE-cp310-cp310-linux_x86_64.whl",
"black==22.8.0",
"flake8==5.0.4",
"datasets",
]
setup(
name="es-at-scale",
version="0.0.1",
description="Python code to fine-tune LLMs with Evolution Strategies.",
author="Cognizant AI Lab",
packages=["es_at_scale"],
install_requires=required,
)