Instructions to use jesusvilela/manifoldgl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use jesusvilela/manifoldgl with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-7B") model = PeftModel.from_pretrained(base_model, "jesusvilela/manifoldgl") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jesusvilela/manifoldgl with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf jesusvilela/manifoldgl # Run inference directly in the terminal: llama cli -hf jesusvilela/manifoldgl
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jesusvilela/manifoldgl # Run inference directly in the terminal: llama cli -hf jesusvilela/manifoldgl
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf jesusvilela/manifoldgl # Run inference directly in the terminal: ./llama-cli -hf jesusvilela/manifoldgl
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf jesusvilela/manifoldgl # Run inference directly in the terminal: ./build/bin/llama-cli -hf jesusvilela/manifoldgl
Use Docker
docker model run hf.co/jesusvilela/manifoldgl
- LM Studio
- Jan
- vLLM
How to use jesusvilela/manifoldgl with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jesusvilela/manifoldgl" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jesusvilela/manifoldgl", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/jesusvilela/manifoldgl
- Ollama
How to use jesusvilela/manifoldgl with Ollama:
ollama run hf.co/jesusvilela/manifoldgl
- Unsloth Desktop
- Pi
How to use jesusvilela/manifoldgl with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jesusvilela/manifoldgl
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "jesusvilela/manifoldgl" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use jesusvilela/manifoldgl with Docker Model Runner:
docker model run hf.co/jesusvilela/manifoldgl
- Lemonade
How to use jesusvilela/manifoldgl with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jesusvilela/manifoldgl
Run and chat with the model
lemonade run user.manifoldgl-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use jesusvilela/manifoldgl with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jesusvilela/manifoldgl
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default jesusvilela/manifoldgl
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use jesusvilela/manifoldgl with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jesusvilela/manifoldgl
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "jesusvilela/manifoldgl" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Add paper.md and paper.bib for citation
Browse files
paper.bib
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@misc{vilela2026manifoldgl,
|
| 2 |
+
title={ManifoldGL: Information-Geometric Adapter for Large Language Models},
|
| 3 |
+
author={Jesús Vilela Jato},
|
| 4 |
+
year={2026},
|
| 5 |
+
howpublished={\url{https://github.com/jesusvilela/IGBundle-LLM}},
|
| 6 |
+
note={Software and manuscript available at \url{https://github.com/jesusvilela/IGBundle-LLM}}
|
| 7 |
+
}
|
paper.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ManifoldGL – Information‑Geometric Adapter for LLMs
|
| 2 |
+
|
| 3 |
+
ManifoldGL is a parameter‑efficient adapter that enforces **hyperbolic geometry** on the latent space of large language models. It treats the meaning of a token as a **fiber** over a hyperbolic base manifold (a Poincaré ball), rather than a single vector in flat Euclidean space. Latent states are projected onto the ball, and attentions are computed using geodesic distance. A sheaf‑theoretic consistency loss and natural gradient optimization maintain semantic structure during training.
|
| 4 |
+
|
| 5 |
+
## Motivation and theoretical background
|
| 6 |
+
|
| 7 |
+
Modern LLMs embed tokens in a Euclidean vector space. While convenient, Euclidean geometry has limited capacity to represent hierarchical structures: flat space grows polynomially, whereas hierarchical trees expand exponentially. By contrast, **hyperbolic space** grows exponentially and preserves both local and global relationships in a hierarchy【247949143190903†L115-L124】. Hyperbolic embeddings outperform Euclidean ones for lexical entailment, similarity and analogy tasks【247949143190903†L154-L169】. ManifoldGL leverages these properties by modelling the latent space as a fiber bundle over a hyperbolic base: each point in the Poincaré ball encodes a context, and its fiber contains a distribution of semantic components.
|
| 8 |
+
|
| 9 |
+
## Results on ARC‑AGI benchmark
|
| 10 |
+
|
| 11 |
+
ManifoldGL fine‑tuned on Qwen2.5‑7B improves task accuracy on the ARC‑AGI benchmark from **12.4 %** to **28.7 %**, a **131.5 % relative improvement**. The model also achieves a **Manifold Faithfulness Rate (MFR) of 94.2 %**, indicating high adherence to the hyperbolic constraints, and maintains a curvature close to the target κ = ‑1 (mean ‑0.98 ± 0.04). Ablation studies show that removing curvature regularization, natural gradients, sheaf consistency or the hyperbolic target significantly reduces accuracy; the Euclidean target ablation causes the largest drop (–10.9 %), highlighting the importance of hyperbolic geometry.
|
| 12 |
+
|
| 13 |
+
## Files in this repository
|
| 14 |
+
|
| 15 |
+
This model card accompanies adapter weights trained with ManifoldGL. The files follow the structure of the original repository:
|
| 16 |
+
|
| 17 |
+
- `adapter_config.json` – configuration for PEFT/LoRA loading
|
| 18 |
+
- `pytorch_adapter.bin` – adapter weights
|
| 19 |
+
- `README.md` – this model card
|
| 20 |
+
|
| 21 |
+
## Quick start
|
| 22 |
+
|
| 23 |
+
```python
|
| 24 |
+
from transformers import AutoModelForCausalLM
|
| 25 |
+
from peft import PeftModel
|
| 26 |
+
|
| 27 |
+
# Load the base model (Qwen2.5-7B)
|
| 28 |
+
base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-7B")
|
| 29 |
+
|
| 30 |
+
# Load the ManifoldGL adapter
|
| 31 |
+
model = PeftModel.from_pretrained(base_model, "jesusvilela/manifoldgl")
|
| 32 |
+
|
| 33 |
+
# Now use model.generate(...) to generate text with hyperbolic adapters
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
This adapter can be loaded with [PEFT](https://github.com/huggingface/peft) on top of any compatible Qwen2.5‑7B model. During generation, latent states are projected into hyperbolic space and meaning is represented as fibers. We recommend using FP32 precision for maximum stability.
|
| 39 |
+
|
| 40 |
+
## Citation
|
| 41 |
+
|
| 42 |
+
If you use ManifoldGL in your work, please cite the accompanying thesis and repository.
|