Getting Started
Welcome to the platform! This guide will help you create an account, publish your first model, and explore datasets.
1. Create an Account
2. Explore the Model Hub
3. Create Your First Model Repository
Once you have an account, you can create your own model repository.
Steps to create a model:
- Click "New Model" from your dashboard
- Enter a unique name for your model
- Choose visibility (public or private)
- Add tags and select the task type
- Write a README describing your model
- Upload your model files
Example API request to create a model:
POST /api/models
Authorization: Bearer <your-token>
Content-Type: application/json
{
"name": "my-awesome-model",
"namespace": "your-username",
"visibility": "public",
"task": "text-generation",
"tags": ["nlp", "transformers"],
"description": "A fine-tuned model for text generation"
}4. Explore Datasets
5. Use the API
All platform features are accessible via our REST API. Use any HTTP client or our official SDKs.
Authentication:
# Sign in to get your access token
POST /api/auth/signin
{
"email": "user@example.com",
"password": "your-password"
}
# Use the token in subsequent requests
GET /api/auth/me
Authorization: Bearer <your-access-token>