Text Generation
PEFT
Chinese
English
preference-learning
qlora
agent
personalization
association-engine
Instructions to use feiertu/hermes-association-engine with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use feiertu/hermes-association-engine with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
File size: 610 Bytes
2bb749c | 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 | [build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hermes"
version = "0.1.0"
description = "联想引擎 — agent 偏好学习与共享"
requires-python = ">=3.11"
dependencies = [
"click>=8.0",
"sentence-transformers>=2.0",
"numpy>=1.24",
]
[project.optional-dependencies]
train = [
"torch>=2.0",
"transformers>=4.30",
"peft>=0.5",
"bitsandbytes>=0.41",
"accelerate>=0.20",
"datasets>=2.14",
]
[project.scripts]
hermes = "cli.main:cli"
[tool.setuptools.packages.find]
include = ["hermes_core*", "cli*", "daemon*"]
|