CyxWiz LogoCyxWiz
DocsGetting Started

Getting Started

Your first experience with CyxWiz Engine - launching the application and exploring the interface.

Launching the Engine

  1. Start the application:
    • Windows: Run cyxwiz-engine.exe
    • macOS/Linux: Run ./cyxwiz-engine
  2. Wait for initialization: Python interpreter and GPU backends are loaded

Understanding the Interface

+------------------------------------------------------------------+
|  File  Edit  View  Nodes  Train  Dataset  Script  Plots  Deploy  |
+------------------------------------------------------------------+
|                    |                            |                 |
|   Asset Browser    |     Central Workspace      |   Properties    |
|                    |     (Node Editor/Script)   |                 |
|   [Project Files]  |                            |   [Selected     |
|   - Scripts/       |                            |    Item Props]  |
|   - Models/        |                            |                 |
|   - Datasets/      |                            |                 |
+--------------------+----------------------------+-----------------+
|                                                                   |
|   Console / Script Editor / Training Dashboard                    |
|                                                                   |
+------------------------------------------------------------------+
Menu Bar
Access all features and commands.
Asset Browser
Navigate project files (scripts, models, datasets).
Central Workspace
Node Editor or Script Editor view.
Properties
Edit selected item properties.
Console
Python REPL and output logs.

Creating Your First Project

  1. Go to File → New Project (or Ctrl+Shift+N)
  2. Choose a location and name for your project
  3. Click Create
my_project/
├── scripts/        # Python and .cyx scripts
├── models/         # Saved models
├── datasets/       # Data files
└── project.cyxproj # Project configuration

Quick Tour of Menus

MenuKey Features
FileNew/Open Project, New Script, Save
ViewNode Editor, Script Editor, Console, Properties
NodesAdd Node, Validate Graph, Generate Code
TrainStart/Stop Training, Configure
Tools70+ data science and ML tools

Essential Shortcuts

ActionShortcut
New ProjectCtrl+Shift+N
Open ProjectCtrl+O
SaveCtrl+S
Node EditorCtrl+1
Script EditorCtrl+2
ConsoleCtrl+`
Command PaletteCtrl+Shift+P

Checking GPU Status

Look at the bottom status bar for GPU info, or verify in Python:

>>> import pycyxwiz as cyx
>>> print(cyx.cuda_available())
True

Troubleshooting

Engine Won't Start
Check OpenGL 3.3+ support and verify dependencies are installed.
No GPU Detected
Install CUDA Toolkit (NVIDIA) or OpenCL drivers (AMD/Intel).
Python Errors
Ensure Python environment is configured correctly.