Access an Instance
Last updated
Ollama ImageOnce your instance is launched, access it via WebUI or JupyterLab:
Go to instance list page and click
or
in the Instance Access column.
Once logged in, you'll have access to pre-installed software, such as Llama, JupyterLab, Python, and CUDA, to begin running your tasks.
Ubuntu ImageUse an SSH client to connect to the instance with the provided key pair.
ssh -i <path_to_key> ubuntu@<instance_ip_address>Once logged in, you'll have access to pre-installed software, such as cuDNN, NvidiaDriver, and CUDA, to begin running your tasks.
With JupyterLab and Python installed, you can run AI/ML tasks seamlessly by leveraging the GPU's power for fast model training and inference.
Example command to check GPU usage:
nvidia-smiLast updated