Instructions to use appvoid/cortex with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use appvoid/cortex with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="appvoid/cortex", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("appvoid/cortex", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use appvoid/cortex with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "appvoid/cortex" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "appvoid/cortex", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/appvoid/cortex
- SGLang
How to use appvoid/cortex with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "appvoid/cortex" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "appvoid/cortex", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "appvoid/cortex" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "appvoid/cortex", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use appvoid/cortex with Docker Model Runner:
docker model run hf.co/appvoid/cortex
Full resumable SparkBET-9M state at checkpoint-000000509000
Browse files
checkpoints/sparkbet9m/{checkpoint-000000507000 → checkpoint-000000509000}/COMPLETE
RENAMED
|
File without changes
|
checkpoints/sparkbet9m/{checkpoint-000000507000 → checkpoint-000000509000}/metadata.json
RENAMED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
{
|
| 2 |
"format": "cortex-sparkbet9m-full-v1",
|
| 3 |
-
"step":
|
| 4 |
"lineage": "cc0c9b5484e046e3b892214e660d2b7d",
|
| 5 |
"architecture": "c85415fc50d03a23f89ccd870ebf53a3a00c5a61017c13a28f6444fdd71b72b9",
|
| 6 |
"pipeline": "0a5a3d695613ed57222d0a20ae6c0c70f27ed7c33f86c9e7d0ba4651bc87f062",
|
| 7 |
-
"sha256": "
|
| 8 |
-
"bytes":
|
| 9 |
-
"saved_at":
|
| 10 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"format": "cortex-sparkbet9m-full-v1",
|
| 3 |
+
"step": 509000,
|
| 4 |
"lineage": "cc0c9b5484e046e3b892214e660d2b7d",
|
| 5 |
"architecture": "c85415fc50d03a23f89ccd870ebf53a3a00c5a61017c13a28f6444fdd71b72b9",
|
| 6 |
"pipeline": "0a5a3d695613ed57222d0a20ae6c0c70f27ed7c33f86c9e7d0ba4651bc87f062",
|
| 7 |
+
"sha256": "77c67b0103f41c78ca37d60cb3e4ab50ca189a576c2c11ee4ac089f824e69d5f",
|
| 8 |
+
"bytes": 115493171,
|
| 9 |
+
"saved_at": 1790293231.763576
|
| 10 |
}
|
checkpoints/sparkbet9m/{checkpoint-000000507000 → checkpoint-000000509000}/training.pt
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77c67b0103f41c78ca37d60cb3e4ab50ca189a576c2c11ee4ac089f824e69d5f
|
| 3 |
+
size 115493171
|