qwen2
ExocoreV1 / README.md
Helenbaclayon Bacalso
Add Space demo link to README
d264ba1
|
Raw
History Blame Contribute Delete
757 Bytes
metadata
license: mit

ExocoreV1

Open In Spaces

A 751M-parameter language model built from scratch by Exocore.

Try it

Launch Chat Demo — Test the model directly in your browser.

Features

  • Multi-thinking modes (Fast, Thinking, Deep Think)
  • Web search integration
  • Custom training pipeline
  • 40K context window
  • RoPE, GQA, SwiGLU

Usage

from huggingface_hub import hf_hub_download
import torch

# Download model
path = hf_hub_download("Exocore/ExocoreV1", "Exocore.pt")
ckpt = torch.load(path, map_location="cpu")

print(f"Model loaded: {ckpt['config']}")