Access an Instance

Access Instances with Ollama Image

Once your instance is launched, access it via WebUI or JupyterLab:

  1. Once logged in, you'll have access to pre-installed software, such as Llama, JupyterLab, Python, and CUDA, to begin running your tasks.

Access Instances with Ubuntu Image

  1. Use an SSH client to connect to the instance with the provided key pair.

    ssh -i <path_to_key> ubuntu@<instance_ip_address>
  2. Once logged in, you'll have access to pre-installed software, such as cuDNN, NvidiaDriver, and CUDA, to begin running your tasks.

Running AI/ML Workloads

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-smi

Last updated