Initial commit
This commit is contained in:
commit
6458c6f52e
48
README.md
Normal file
48
README.md
Normal file
@ -0,0 +1,48 @@
|
||||
# IX Forge
|
||||
*Part of the Inference-X Ecosystem*
|
||||
|
||||
[](LICENSE)
|
||||
|
||||
**Community fine-tuning platform. Collective intelligence.**
|
||||
|
||||
The Forge is where the community contributes training data, improves models,
|
||||
and shares fine-tuned adapters (LoRA/QLoRA format). Open. Transparent. Community-owned.
|
||||
|
||||
## Deploy
|
||||
```bash
|
||||
pip install fastapi uvicorn
|
||||
python ix_forge.py
|
||||
# → API at http://localhost:7937
|
||||
```
|
||||
|
||||
## API
|
||||
```
|
||||
POST /contribute — Submit training data (Q&A pairs)
|
||||
GET /datasets — Browse approved datasets
|
||||
POST /submit-adapter — Submit a trained LoRA adapter
|
||||
GET /adapters — Browse community adapters
|
||||
GET /leaderboard — Top contributors by training pairs
|
||||
GET /health — Service status
|
||||
```
|
||||
|
||||
## Contribution Format
|
||||
```json
|
||||
{
|
||||
"type": "qa",
|
||||
"language": "en",
|
||||
"domain": "science",
|
||||
"contributor": "your_handle",
|
||||
"pairs": [
|
||||
{"q": "What is...", "a": "It is..."}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
## Supported Domains
|
||||
`science`, `code`, `math`, `multilingual`, `reasoning`, `creative`, `general`
|
||||
|
||||
Built in Morocco for the world. 🇲🇦
|
||||
|
||||
## License
|
||||
[Business Source License 1.1](LICENSE)
|
||||
**Author:** Salka Elmadani
|
||||
Loading…
Reference in New Issue
Block a user