Overview
Lyceum Cloud provides various machine types optimized for different computational workloads. The platform offers both CPU and GPU configurations to match your specific requirements.Execution Types
When starting an execution through the API, you can specify theexecution_type parameter:
Available Options
- cpu: Standard CPU execution environment
- gpu: GPU-accelerated execution
- auto: Automatic selection based on your code
Automatic Resource Selection
The platform can automatically select appropriate resources by analyzing your code:execution_type: "auto", the system will:
- Detect imported packages and frameworks
- Estimate resource requirements
- Select the most appropriate machine type
- Optimize for cost-effectiveness
Resource Monitoring
Monitor resource usage during execution to optimize your selection:Choosing the Right Type
Use CPU for:
- Data processing and analysis with pandas/numpy
- Web scraping and API calls
- File processing and transformations
- Statistical computing
- General Python scripts
Use GPU for:
- Deep learning model training
- Computer vision tasks
- Natural language processing with transformers
- Parallel computing with CUDA
- Large-scale matrix operations
Timeout Settings
Configure execution timeouts (1-600 seconds) to prevent runaway processes:Environment Variables
Access execution environment information:Storage Integration
All machine types have access to your cloud storage:For current pricing and detailed specifications, check the dashboard or contact support. Machine type availability may vary based on demand.

