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
| # Hermes 一键部署 | |
| # docker compose up -d | |
| version: "3.8" | |
| services: | |
| hermes: | |
| build: . | |
| container_name: hermes | |
| restart: unless-stopped | |
| volumes: | |
| - hermes_data:/root/.hermes | |
| environment: | |
| - HERMES_DATA_DIR=/root/.hermes/data | |
| - HF_ENDPOINT=${HF_ENDPOINT:-https://huggingface.co} | |
| ports: | |
| - "9876:9876" | |
| healthcheck: | |
| test: ["CMD", "python", "-c", "from hermes_core.embedder import Embedder; Embedder.is_available()"] | |
| interval: 60s | |
| timeout: 10s | |
| retries: 3 | |
| volumes: | |
| hermes_data: | |