Text Generation
PEFT
lora
trl
naming
brand-generation
controllable-generation
nomen-ai / setup.py
krystv's picture
Add PyYAML to package dependencies
0977506 verified
raw
history blame contribute delete
428 Bytes
from setuptools import setup, find_packages
setup(
name="nomen-ai",
version="0.1.0",
description="Controllable cross-lingual morpho-phonetic brand/channel name synthesis",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"transformers>=4.56.0", "trl>=1.5.1", "peft", "accelerate", "datasets",
"rapidfuzz", "pyphen", "trackio", "huggingface_hub", "PyYAML",
],
)