Instructions to use krystv/nomen-ai with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use krystv/nomen-ai with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
| 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", | |
| ], | |
| ) | |