Spaces:
No application file
No application file
File size: 312 Bytes
a6cc692 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | from setuptools import setup, find_packages
setup(
name="mistake_trainer",
version="0.1.0",
packages=find_packages(),
install_requires=[
"torch",
"unsloth",
"transformers",
"trl",
"accelerate",
"bitsandbytes",
],
python_requires=">=3.9",
) |