FAQ
Frequently asked questions about using Clore.ai for AI workloads
Common questions about using CLORE.AI for AI workloads.
Getting Started
How do I create an account?
Go to clore.ai
Click Sign Up
Enter email and password
Verify your email
Done! You can now deposit funds and rent GPUs
What payment methods are accepted?
CLORE - Native token (often gives best rates)
BTC - Bitcoin
USDT - Tether (ERC-20, TRC-20)
USDC - USD Coin
What's the minimum deposit?
There's no strict minimum, but we recommend $5-10 to start experimenting. This covers several hours on budget GPUs.
How long until my deposit arrives?
CLORE
10
~10 minutes
BTC
2
~20 minutes
USDT/USDC
Network dependent
1-15 minutes
Choosing Hardware
Which GPU should I choose?
It depends on your task:
Chat with 7B models
RTX 3060 12GB ($0.03–0.07/hr)
Chat with 13B-30B models
RTX 3090 24GB ($0.07–0.21/hr)
Chat with 70B models
RTX 5090 32GB (bare metal) or A100 40GB (bare metal)
Image generation (SDXL)
RTX 3090 24GB ($0.07–0.21/hr)
Image generation (FLUX)
RTX 4090/5090 ($0.14–0.42/hr)
Video generation
RTX 4090+ or A100 (bare metal)
70B+ models (FP16)
A100 80GB (bare metal)
See GPU Comparison for detailed specs.
What's the difference between On-Demand and Spot?
On-Demand
Fixed price
Guaranteed
Production, long tasks
Spot
~13% cheaper where offered (a third of servers)
Can be outbid
Testing, batch jobs
Spot orders may be terminated if someone bids higher. Save your work frequently!
How much VRAM do I need?
Use this quick guide:
7B
6GB
12GB
13B
8GB
16GB
30B
16GB
24GB
70B
35GB
48GB
See Model Compatibility for full details.
What does "Unverified" mean on a server?
Unverified servers haven't completed CLORE.AI's hardware verification. They may:
Have slightly different specs than listed
Be less reliable
Verified servers have confirmed specs and better reliability.
Connecting to Servers
How do I connect via SSH?
After your order starts:
Go to My Orders
Find your order
Copy SSH command:
ssh -p <port> root@<proxy-address>Use password shown in order details
Example:
SSH connection refused - what do I do?
Wait 1-2 minutes - Server may still be starting
Check order status - Must be "Running"
Verify port - Use the port from order details, not 22
Check firewall - Your network may block non-standard ports
How do I access web interfaces (Gradio, Jupyter)?
In order details, find the HTTP port link
Click the link to open in browser
Or manually:
http://<proxy-address>:<http-port>
Can I use VS Code Remote SSH?
Yes! Add to your ~/.ssh/config:
Then connect in VS Code: Remote-SSH: Connect to Host → clore-gpu
How do I transfer files?
Upload to server:
Download from server:
For large transfers, use rsync:
Running AI Workloads
How do I install Python packages?
For persistent installations, include in your startup command or Docker image.
Why is my model running out of memory?
Use quantization - Q4 uses 4x less VRAM than FP16
Enable CPU offload - Slower but works
Reduce batch size - Use batch_size=1
Lower context length - Reduce max_tokens
Choose bigger GPU - Sometimes necessary
How do I use Hugging Face models that require login?
For gated models (Llama, etc.), first accept terms on Hugging Face website.
Can I run multiple models at once?
Yes, if you have enough VRAM:
Each model needs its own VRAM allocation
Use different ports for different services
Consider vLLM for efficient multi-model serving
How do I keep my work after the order ends?
Before order ends:
Download outputs:
scp -P <port> root@<proxy>:/root/outputs/* ./Push to cloud:
aws s3 sync /root/outputs s3://bucket/Commit to Git:
git push
Data is lost when order ends! Always backup important files.
Billing & Orders
How is billing calculated?
Hourly rate × hours used
Billing starts when order status is "Running"
Minimum billing: 1 minute
Partial hours billed by the minute
How do I stop an order?
Go to My Orders
Click Stop on your order
Confirm termination
You'll only be charged for time used.
Can I extend my order?
Yes, if no one has bid higher on your spot order. Add funds to your balance and the order continues automatically.
What happens if my balance runs out?
Warning notification sent
Grace period (~5-10 minutes)
Order terminated
All data lost!
Keep sufficient balance or download work before running low.
Can I get a refund?
Contact support for:
Hardware issues (GPU not working)
Significant downtime
Billing errors
Refunds not provided for:
User errors
Normal order usage
Spot order interruptions
Docker & Images
What Docker images are available?
See Docker Images Catalog for ready-to-use images:
ollama/ollama- LLM runnervllm/vllm-openai- High-performance LLM APIuniversonic/stable-diffusion-webui- Image generationyanwk/comfyui-boot- Node-based image gen
Can I use my own Docker image?
Yes! Specify your image in the order:
Ensure the image is publicly accessible or provide credentials.
How do I persist data between restarts?
Use the provided volume mount points or specify custom volumes:
Troubleshooting
"CUDA out of memory" error
Check VRAM -
nvidia-smiUse smaller model or quantization
Enable offload -
--cpu-offloadReduce batch size -
batch_size=1Kill other processes -
pkill python
"Connection timed out" error
Check order status - Must be "Running"
Wait longer - Large images take time to start
Check ports - Use correct port from order
Try again - Network issues are temporary
Web UI not loading
Wait for startup - Some UIs take 2-5 minutes
Check logs:
docker logs <container>Verify port - Use HTTP port from order details
Check command - Must include
--listen 0.0.0.0
Model download stuck
Check disk space:
df -hUse smaller model - Start with 7B
Pre-download - Include in Docker image
Check HF token - Required for gated models
Slow inference speed
Check GPU usage:
nvidia-smiEnable GPU - Model may be on CPU
Use Flash Attention -
--flash-attnOptimize settings - Reduce precision, batch
Security
Is my data secure?
Each order runs in isolated container
Data is deleted when order ends
Network traffic goes through CLORE proxies
Don't store sensitive data on rented GPUs
Should I change the root password?
Optional but recommended for long orders:
How do I protect API keys?
Use environment variables - Not command line args
Don't commit to Git - Use
.gitignoreDelete after use - Clear history:
history -c
Still Need Help?
Email: support@clore.ai
Last updated
Was this helpful?