• AfriLink

  • AfriColab

  • FAQ?

AfriColab

Browser-based JupyterLab sessions backed by high-performance GPU compute. No setup — just launch and start coding.

Overview

AfriColab is a cloud notebook platform that gives you a full JupyterLab environment backed by GPU compute. Launch a session from your dashboard, and within minutes you have a ready-to-use notebook with PyTorch, TensorFlow, and popular data science libraries pre-installed. Sessions run on the same HPC infrastructure as AfriLink, with your work persisted across sessions.

Instant JupyterLab

One-click launch from your dashboard. Full-featured Jupyter environment with terminal access, file browser, and GPU support.

HPC-Backed Compute

Sessions run on the same A100 GPU cluster infrastructure used by AfriLink, scheduled via SLURM for reliable performance.

Pre-configured Environments

PyTorch, TensorFlow, Hugging Face Transformers, and popular data science libraries come pre-installed. Start coding immediately.

Secure Tunnelling

Sessions are accessed via encrypted tunnels with per-user authentication. Your data stays private and your session stays connected.

How It Works

1. Launch: Click "Launch Session" on your dashboard. The platform provisions a GPU node and starts your JupyterLab instance.

2. Code: Use the returned URL to open your notebook. Upload data, install packages, and run GPU workloads as you would locally.

3. Billing: Sessions are billed at $1.80 per GPU-hour from your general credit balance, tracked in real time on your dashboard.

AfriColab vs AfriLink

AfriColab AfriLink SDK
InterfaceBrowser (JupyterLab)Python SDK (pip install)
Best forInteractive exploration, prototypingAutomated finetuning pipelines
Rate$1.80/GPU-hr$2.00/GPU-hr
CreditsGeneral onlyGeneral + Voucher
Run fromDashboardAny notebook (Colab, Jupyter, local)

Frequently Asked Questions

Find answers to common questions about our platform and services.

Both AfriLink and AfriColab run on NVIDIA A100 GPU nodes managed via SLURM scheduling. You can request 1 to 4+ GPUs per job depending on your training mode. Additional HPC backends with different GPU configurations are planned for the near future.

Billing is pay-as-you-go based on actual GPU time used. AfriColab sessions cost $1.80/GPU-hour and AfriLink jobs cost $2.00/GPU-hour. Add credits via Stripe card payment on your dashboard, or redeem voucher codes for AfriLink-specific credits. Your balance, usage breakdown, and invoice history are all visible on the Billing tab.

Voucher codes are pre-loaded credit codes in the format XXXX-XXXX-XXXX-XXXX. Redeem them on your dashboard under Payment Methods to receive AfriLink-specific credits. These credits can only be used for AfriLink SDK jobs and are deducted before your general credit balance.

Yes — this is the primary use case. Run !pip install afrilink-sdk in a Colab cell, authenticate with your DataSpires email and password, and submit finetune jobs directly. The SDK handles HPC certificate provisioning automatically inside Colab. See our live demo notebook for a full walkthrough.

The SDK accepts pandas DataFrames (with a text column in Alpaca format), HuggingFace Dataset objects, or file paths to local JSONL/CSV files. The registry also includes pre-configured datasets like Stanford Alpaca (52K examples) and Databricks Dolly (15K examples) that you can reference by name.

After your job completes, call client.download_model(job_id, "./my-model") to pull the LoRA adapter weights to your notebook. Then load the base model and attach the adapter with PeftModel.from_pretrained(base_model, "./my-model") from the PEFT library. The downloaded directory contains the adapter, tokenizer, and training config — everything needed for immediate inference.

Yes — set the backend parameter when creating a job: client.finetune(backend="cineca", ...). CINECA Leonardo is the default and currently available backend. Additional backends (EverseTech, AGH, ACF) are being onboarded and will appear in the HPC Backends table on this page as they go live. Your code stays the same — just change the backend string.

Sign up for a free account at dataspires.com. For AfriLink, run pip install afrilink-sdk and authenticate with your DataSpires credentials. For AfriColab, log in to your dashboard and click Launch Session. Both products share the same account and credit balance.