Rate this Page

Hyperparameter tuning using Ray Tune#

Created On: Aug 31, 2020 | Last Updated: Jan 08, 2026 | Last Verified: Nov 05, 2024

Author: Ricardo Decal

This tutorial shows how to integrate Ray Tune into your PyTorch training workflow to perform scalable and efficient hyperparameter tuning.

What you will learn
  • How to modify a PyTorch training loop for Ray Tune

  • How to scale a hyperparameter sweep to multiple nodes and GPUs without code changes

  • How to define a hyperparameter search space and run a sweep with tune.Tuner

  • How to use an early-stopping scheduler (ASHA) and report metrics/checkpoints

  • How to use checkpointing to resume training and load the best model

Prerequisites
  • PyTorch v2.9+ and torchvision

  • Ray Tune (ray[tune]) v2.52.1+

  • GPU(s) are optional, but recommended for faster training

Ray, a project of the PyTorch Foundation, is an open source unified framework for scaling AI and Python applications. It helps run distributed jobs by handling the complexity of distributed computing. Ray Tune is a library built on Ray for hyperparameter tuning that enables you to scale a hyperparameter sweep from your machine to a large cluster with no code changes.

This tutorial adapts the PyTorch tutorial for training a CIFAR10 classifier to run multi-GPU hyperparameter sweeps with Ray Tune.

Setup#

To run this tutorial, install the following dependencies:

pip install "ray[tune]" torchvision

Then start with the imports:

from functools import partial
import os
import tempfile
from pathlib import Path
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torch.utils.data import random_split
import torchvision
import torchvision.transforms as transforms
# New: imports for Ray Tune
import ray
from ray import tune
from ray.tune import Checkpoint
from ray.tune.schedulers import ASHAScheduler

Data loading#

Wrap the data loaders in a constructor function. In this tutorial, a global data directory is passed to the function to enable reusing the dataset across different trials. In a cluster environment, you can use shared storage, such as network file systems, to prevent each node from downloading the data separately.

def load_data(data_dir="./data"):
    # Mean and standard deviation of the CIFAR10 training subset.
    transform = transforms.Compose(
        [transforms.ToTensor(), transforms.Normalize((0.4914, 0.48216, 0.44653), (0.2022, 0.19932, 0.20086))]
    )

    trainset = torchvision.datasets.CIFAR10(
        root=data_dir, train=True, download=True, transform=transform
    )

    testset = torchvision.datasets.CIFAR10(
        root=data_dir, train=False, download=True, transform=transform
    )

    return trainset, testset

Model architecture#

This tutorial searches for the best sizes for the fully connected layers and the learning rate. To enable this, the Net class exposes the layer sizes l1 and l2 as configurable parameters that Ray Tune can search over:

class Net(nn.Module):
    def __init__(self, l1=120, l2=84):
        super().__init__()
        self.conv1 = nn.Conv2d(3, 6, 5)
        self.pool = nn.MaxPool2d(2, 2)
        self.conv2 = nn.Conv2d(6, 16, 5)
        self.fc1 = nn.Linear(16 * 5 * 5, l1)
        self.fc2 = nn.Linear(l1, l2)
        self.fc3 = nn.Linear(l2, 10)

    def forward(self, x):
        x = self.pool(F.relu(self.conv1(x)))
        x = self.pool(F.relu(self.conv2(x)))
        x = torch.flatten(x, 1)  # flatten all dimensions except batch
        x = F.relu(self.fc1(x))
        x = F.relu(self.fc2(x))
        x = self.fc3(x)
        return x

Define the search space#

Next, define the hyperparameters to tune and how Ray Tune samples them. Ray Tune offers a variety of search space distributions to suit different parameter types: loguniform, uniform, choice, randint, grid, and more. You can also express complex dependencies between parameters with conditional search spaces or sample from arbitrary functions.

Here is the search space for this tutorial:

config = {
    "l1": tune.choice([2**i for i in range(9)]),
    "l2": tune.choice([2**i for i in range(9)]),
    "lr": tune.loguniform(1e-4, 1e-1),
    "batch_size": tune.choice([2, 4, 8, 16]),
}

The tune.choice() accepts a list of values that are uniformly sampled from. In this example, the l1 and l2 parameter values are powers of 2 between 1 and 256, and the learning rate samples on a log scale between 0.0001 and 0.1. Sampling on a log scale enables exploration across a range of magnitudes on a relative scale, rather than an absolute scale.

Training function#

Ray Tune requires a training function that accepts a configuration dictionary and runs the main training loop. As Ray Tune runs different trials, it updates the configuration dictionary for each trial.

Here is the full training function, followed by explanations of the key Ray Tune integration points:

def train_cifar(config, data_dir=None):
    net = Net(config["l1"], config["l2"])
    device = config["device"]

    net = net.to(device)
    if torch.cuda.device_count() > 1:
        net = nn.DataParallel(net)

    criterion = nn.CrossEntropyLoss()
    optimizer = optim.SGD(net.parameters(), lr=config["lr"], momentum=0.9)

    # Load checkpoint if resuming training
    checkpoint = tune.get_checkpoint()
    if checkpoint:
        with checkpoint.as_directory() as checkpoint_dir:
            checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
            checkpoint_state = torch.load(checkpoint_path)
            start_epoch = checkpoint_state["epoch"]
            net.load_state_dict(checkpoint_state["net_state_dict"])
            optimizer.load_state_dict(checkpoint_state["optimizer_state_dict"])
    else:
        start_epoch = 0

    trainset, _testset = load_data(data_dir)

    test_abs = int(len(trainset) * 0.8)
    train_subset, val_subset = random_split(
        trainset, [test_abs, len(trainset) - test_abs]
    )

    trainloader = torch.utils.data.DataLoader(
        train_subset, batch_size=int(config["batch_size"]), shuffle=True, num_workers=8
    )
    valloader = torch.utils.data.DataLoader(
        val_subset, batch_size=int(config["batch_size"]), shuffle=True, num_workers=8
    )

    for epoch in range(start_epoch, 10):  # loop over the dataset multiple times
        running_loss = 0.0
        epoch_steps = 0
        for i, data in enumerate(trainloader, 0):
            # get the inputs; data is a list of [inputs, labels]
            inputs, labels = data
            inputs, labels = inputs.to(device), labels.to(device)

            # zero the parameter gradients
            optimizer.zero_grad()

            # forward + backward + optimize
            outputs = net(inputs)
            loss = criterion(outputs, labels)
            loss.backward()
            optimizer.step()

            # print statistics
            running_loss += loss.item()
            epoch_steps += 1
            if i % 2000 == 1999:  # print every 2000 mini-batches
                print(
                    "[%d, %5d] loss: %.3f"
                    % (epoch + 1, i + 1, running_loss / epoch_steps)
                )
                running_loss = 0.0

        # Validation loss
        val_loss = 0.0
        val_steps = 0
        total = 0
        correct = 0
        for i, data in enumerate(valloader, 0):
            with torch.no_grad():
                inputs, labels = data
                inputs, labels = inputs.to(device), labels.to(device)

                outputs = net(inputs)
                _, predicted = torch.max(outputs.data, 1)
                total += labels.size(0)
                correct += (predicted == labels).sum().item()

                loss = criterion(outputs, labels)
                val_loss += loss.cpu().numpy()
                val_steps += 1

        # Save checkpoint and report metrics
        checkpoint_data = {
            "epoch": epoch,
            "net_state_dict": net.state_dict(),
            "optimizer_state_dict": optimizer.state_dict(),
        }
        with tempfile.TemporaryDirectory() as checkpoint_dir:
            checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
            torch.save(checkpoint_data, checkpoint_path)

            checkpoint = Checkpoint.from_directory(checkpoint_dir)
            tune.report(
                {"loss": val_loss / val_steps, "accuracy": correct / total},
                checkpoint=checkpoint,
            )

    print("Finished Training")

Key integration points#

Using hyperparameters from the configuration dictionary#

Ray Tune updates the config dictionary with the hyperparameters for each trial. In this example, the model architecture and optimizer receive the hyperparameters from the config dictionary:

net = Net(config["l1"], config["l2"])
optimizer = optim.SGD(net.parameters(), lr=config["lr"], momentum=0.9)

Reporting metrics and saving checkpoints#

The most important integration is communicating with Ray Tune. Ray Tune uses the validation metrics to determine the best hyperparameter configuration and to stop underperforming trials early, saving resources.

Checkpointing enables you to later load the trained models, resume hyperparameter searches, and provides fault tolerance. It’s also required for some Ray Tune schedulers like Population Based Training that pause and resume trials during the search.

This code from the training function loads model and optimizer state at the start if a checkpoint exists:

checkpoint = tune.get_checkpoint()
if checkpoint:
    with checkpoint.as_directory() as checkpoint_dir:
        checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
        checkpoint_state = torch.load(checkpoint_path)
        start_epoch = checkpoint_state["epoch"]
        net.load_state_dict(checkpoint_state["net_state_dict"])
        optimizer.load_state_dict(checkpoint_state["optimizer_state_dict"])

At the end of each epoch, save a checkpoint and report the validation metrics:

checkpoint_data = {
    "epoch": epoch,
    "net_state_dict": net.state_dict(),
    "optimizer_state_dict": optimizer.state_dict(),
}
with tempfile.TemporaryDirectory() as checkpoint_dir:
    checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
    torch.save(checkpoint_data, checkpoint_path)

    checkpoint = Checkpoint.from_directory(checkpoint_dir)
    tune.report(
        {"loss": val_loss / val_steps, "accuracy": correct / total},
        checkpoint=checkpoint,
    )

Ray Tune checkpointing supports local file systems, cloud storage, and distributed file systems. For more information, see the Ray Tune storage documentation.

Multi-GPU support#

Image classification models can be greatly accelerated by using GPUs. The training function supports multi-GPU training by wrapping the model in nn.DataParallel:

This training function supports training on CPUs, a single GPU, multiple GPUs, or multiple nodes without code changes. Ray Tune automatically distributes the trials across the nodes according to the available resources. Ray Tune also supports fractional GPUs so that one GPU can be shared among multiple trials, provided that the models, optimizers, and data batches fit into the GPU memory.

Validation split#

The original CIFAR10 dataset only has train and test subsets. This is sufficient for training a single model, however for hyperparameter tuning a validation subset is required. The training function creates a validation subset by reserving 20% of the training subset. The test subset is used to evaluate the best model’s generalization error after the search completes.

Evaluation function#

After finding the optimal hyperparameters, test the model on a held-out test set to estimate the generalization error:

def test_accuracy(net, device="cpu", data_dir=None):
    _trainset, testset = load_data(data_dir)

    testloader = torch.utils.data.DataLoader(
        testset, batch_size=4, shuffle=False, num_workers=2
    )

    correct = 0
    total = 0
    with torch.no_grad():
        for data in testloader:
            image_batch, labels = data
            image_batch, labels = image_batch.to(device), labels.to(device)
            outputs = net(image_batch)
            _, predicted = torch.max(outputs.data, 1)
            total += labels.size(0)
            correct += (predicted == labels).sum().item()

    return correct / total

Configure and run Ray Tune#

With the training and evaluation functions defined, configure Ray Tune to run the hyperparameter search.

Scheduler for early stopping#

Ray Tune provides schedulers to improve the efficiency of the hyperparameter search by detecting underperforming trials and stopping them early. The ASHAScheduler uses the Asynchronous Successive Halving Algorithm (ASHA) to aggressively terminate low-performing trials:

scheduler = ASHAScheduler(
    max_t=max_num_epochs,
    grace_period=1,
    reduction_factor=2,
)

Ray Tune also provides advanced search algorithms to smartly pick the next set of hyperparameters based on previous results, instead of relying only on random or grid search. Examples include Optuna and BayesOpt.

Resource allocation#

Tell Ray Tune what resources to allocate for each trial by passing a resources dictionary to tune.with_resources:

tune.with_resources(
    partial(train_cifar, data_dir=data_dir),
    resources={"cpu": cpus_per_trial, "gpu": gpus_per_trial}
)

Ray Tune automatically manages the placement of these trials and ensures that the trials run in isolation, so you don’t need to manually assign GPUs to processes.

For example, if you are running this experiment on a cluster of 20 machines, each with 8 GPUs, you can set gpus_per_trial = 0.5 to schedule two concurrent trials per GPU. This configuration runs 320 trials in parallel across the cluster.

Note

To run this tutorial without GPUs, set gpus_per_trial=0 and expect significantly longer runtimes.

To avoid long runtimes during development, start with a small number of trials and epochs.

Creating the Tuner#

The Ray Tune API is modular and composable. Pass your configuration to the tune.Tuner class to create a tuner object, then run tuner.fit() to start training:

tuner = tune.Tuner(
    tune.with_resources(
        partial(train_cifar, data_dir=data_dir),
        resources={"cpu": cpus_per_trial, "gpu": gpus_per_trial}
    ),
    tune_config=tune.TuneConfig(
        metric="loss",
        mode="min",
        scheduler=scheduler,
        num_samples=num_trials,
    ),
    param_space=config,
)
results = tuner.fit()

After training completes, retrieve the best performing trial, load its checkpoint, and evaluate on the test set.

Putting it all together#

def main(num_trials=10, max_num_epochs=10, gpus_per_trial=0, cpus_per_trial=2):
    print("Starting hyperparameter tuning.")
    ray.init(include_dashboard=False)

    data_dir = os.path.abspath("./data")
    load_data(data_dir)  # Pre-download the dataset
    device = "cuda" if torch.cuda.is_available() else "cpu"
    config = {
        "l1": tune.choice([2**i for i in range(9)]),
        "l2": tune.choice([2**i for i in range(9)]),
        "lr": tune.loguniform(1e-4, 1e-1),
        "batch_size": tune.choice([2, 4, 8, 16]),
        "device": device,
    }
    scheduler = ASHAScheduler(
        max_t=max_num_epochs,
        grace_period=1,
        reduction_factor=2,
    )

    tuner = tune.Tuner(
        tune.with_resources(
            partial(train_cifar, data_dir=data_dir),
            resources={"cpu": cpus_per_trial, "gpu": gpus_per_trial}
        ),
        tune_config=tune.TuneConfig(
            metric="loss",
            mode="min",
            scheduler=scheduler,
            num_samples=num_trials,
        ),
        param_space=config,
    )
    results = tuner.fit()

    best_result = results.get_best_result("loss", "min")
    print(f"Best trial config: {best_result.config}")
    print(f"Best trial final validation loss: {best_result.metrics['loss']}")
    print(f"Best trial final validation accuracy: {best_result.metrics['accuracy']}")

    best_trained_model = Net(best_result.config["l1"], best_result.config["l2"])
    best_trained_model = best_trained_model.to(device)
    if gpus_per_trial > 1:
        best_trained_model = nn.DataParallel(best_trained_model)

    best_checkpoint = best_result.checkpoint
    with best_checkpoint.as_directory() as checkpoint_dir:
        checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
        best_checkpoint_data = torch.load(checkpoint_path)

        best_trained_model.load_state_dict(best_checkpoint_data["net_state_dict"])
        test_acc = test_accuracy(best_trained_model, device, data_dir)
        print(f"Best trial test set accuracy: {test_acc}")


if __name__ == "__main__":
    # Set the number of trials, epochs, and GPUs per trial here:
    main(num_trials=10, max_num_epochs=10, gpus_per_trial=1)
Starting hyperparameter tuning.
2026-06-03 00:26:34,834 WARNING services.py:2213 -- WARNING: The object store is using /tmp/ray instead of /dev/shm because /dev/shm has only 2147471360 bytes available. This will harm performance! You may be able to free up space by deleting files in /dev/shm. If you are inside a Docker container, you can increase /dev/shm size by passing '--shm-size=10.24gb' to 'docker run' (or add it to the run_options list in a Ray cluster config). Make sure to set this to more than 30% of available RAM.
2026-06-03 00:26:37,003 INFO worker.py:2012 -- Started a local Ray instance.
/usr/local/lib/python3.10/dist-packages/ray/_private/worker.py:2051: FutureWarning: Tip: In future versions of Ray, Ray will no longer override accelerator visible devices env var if num_gpus=0 or num_gpus=None (default). To enable this behavior and turn off this error message, set RAY_ACCEL_ENV_VAR_OVERRIDE_ON_ZERO=0
  warnings.warn(

  0%|          | 0.00/170M [00:00<?, ?B/s]
  0%|          | 426k/170M [00:00<00:40, 4.23MB/s]
  5%|▍         | 7.77M/170M [00:00<00:03, 44.8MB/s]
 11%|█         | 19.1M/170M [00:00<00:01, 76.1MB/s]
 17%|█▋        | 29.4M/170M [00:00<00:01, 86.3MB/s]
 23%|██▎       | 39.4M/170M [00:00<00:01, 91.2MB/s]
 30%|██▉       | 50.8M/170M [00:00<00:01, 98.9MB/s]
 36%|███▌      | 60.9M/170M [00:00<00:01, 99.7MB/s]
 42%|████▏     | 71.2M/170M [00:00<00:00, 101MB/s]
 48%|████▊     | 82.6M/170M [00:00<00:00, 105MB/s]
 55%|█████▍    | 93.1M/170M [00:01<00:00, 103MB/s]
 61%|██████    | 103M/170M [00:01<00:00, 103MB/s]
 67%|██████▋   | 115M/170M [00:01<00:00, 105MB/s]
 73%|███████▎  | 125M/170M [00:01<00:00, 106MB/s]
 80%|███████▉  | 136M/170M [00:01<00:00, 105MB/s]
 86%|████████▌ | 147M/170M [00:01<00:00, 106MB/s]
 92%|█████████▏| 157M/170M [00:01<00:00, 106MB/s]
 99%|█████████▊| 168M/170M [00:01<00:00, 105MB/s]
100%|██████████| 170M/170M [00:01<00:00, 97.9MB/s]
╭────────────────────────────────────────────────────────────────────╮
│ Configuration for experiment     train_cifar_2026-06-03_00-26-42   │
├────────────────────────────────────────────────────────────────────┤
│ Search algorithm                 BasicVariantGenerator             │
│ Scheduler                        AsyncHyperBandScheduler           │
│ Number of trials                 10                                │
╰────────────────────────────────────────────────────────────────────╯

View detailed results here: /var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42
To visualize your results with TensorBoard, run: `tensorboard --logdir /tmp/ray/session_2026-06-03_00-26-33_172623_4337/artifacts/2026-06-03_00-26-42/train_cifar_2026-06-03_00-26-42/driver_artifacts`

Trial status: 10 PENDING
Current time: 2026-06-03 00:26:43. Total running time: 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭───────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size │
├───────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   PENDING     128      1   0.000393605              2 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8 │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8 │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16 │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16 │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8 │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4 │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4 │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2 │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4 │
╰───────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_e5524_00000 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00000 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     2 │
│ device                                      cuda │
│ l1                                           128 │
│ l2                                             1 │
│ lr                                       0.00039 │
╰──────────────────────────────────────────────────╯
(func pid=5495) [1,  2000] loss: 2.399
(func pid=5495) [1,  4000] loss: 1.167
(func pid=5495) [1,  6000] loss: 0.769
(func pid=5495) [1,  8000] loss: 0.576

Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:27:13. Total running time: 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭───────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size │
├───────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8 │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8 │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16 │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16 │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8 │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4 │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4 │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2 │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4 │
╰───────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [1, 10000] loss: 0.461
(func pid=5495) [1, 12000] loss: 0.384
(func pid=5495) [1, 14000] loss: 0.329
(func pid=5495) [1, 16000] loss: 0.288
(func pid=5495) [1, 18000] loss: 0.256
(func pid=5495) [1, 20000] loss: 0.230
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:27:43. Total running time: 1min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭───────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size │
├───────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8 │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8 │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16 │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16 │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8 │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4 │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4 │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2 │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4 │
╰───────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000000)
(func pid=5495) [2,  2000] loss: 2.303
(func pid=5495) [2,  4000] loss: 1.151
(func pid=5495) [2,  6000] loss: 0.768
(func pid=5495) [2,  8000] loss: 0.576
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:28:13. Total running time: 1min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.303092365074158 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        1            63.0144   2.30309       0.1011 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [2, 10000] loss: 0.461
(func pid=5495) [2, 12000] loss: 0.384
(func pid=5495) [2, 14000] loss: 0.329
(func pid=5495) [2, 16000] loss: 0.288
(func pid=5495) [2, 18000] loss: 0.256
(func pid=5495) [2, 20000] loss: 0.230
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:28:43. Total running time: 2min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.303092365074158 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        1            63.0144   2.30309       0.1011 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000001)
(func pid=5495) [3,  2000] loss: 2.303
(func pid=5495) [3,  4000] loss: 1.152
(func pid=5495) [3,  6000] loss: 0.768
(func pid=5495) [3,  8000] loss: 0.576
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:29:13. Total running time: 2min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3028803560733797 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        2            123.937   2.30288        0.096 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [3, 10000] loss: 0.461
(func pid=5495) [3, 12000] loss: 0.384
(func pid=5495) [3, 14000] loss: 0.329
(func pid=5495) [3, 16000] loss: 0.288
(func pid=5495) [3, 18000] loss: 0.256
(func pid=5495) [3, 20000] loss: 0.230
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:29:43. Total running time: 3min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3028803560733797 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        2            123.937   2.30288        0.096 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000002)
(func pid=5495) [4,  2000] loss: 2.303
(func pid=5495) [4,  4000] loss: 1.151
(func pid=5495) [4,  6000] loss: 0.767
(func pid=5495) [4,  8000] loss: 0.576
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:30:13. Total running time: 3min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.302904331731796 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)     loss     accuracy │
├─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        3            185.068   2.3029       0.0988 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                   │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                   │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                   │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                   │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                   │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                   │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                   │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                   │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                   │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [4, 10000] loss: 0.461
(func pid=5495) [4, 12000] loss: 0.384
(func pid=5495) [4, 14000] loss: 0.329
(func pid=5495) [4, 16000] loss: 0.288
(func pid=5495) [4, 18000] loss: 0.256
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:30:43. Total running time: 4min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.302904331731796 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)     loss     accuracy │
├─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        3            185.068   2.3029       0.0988 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                   │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                   │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                   │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                   │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                   │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                   │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                   │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                   │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                   │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [4, 20000] loss: 0.230
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000003)
(func pid=5495) [5,  2000] loss: 2.303
(func pid=5495) [5,  4000] loss: 1.152
(func pid=5495) [5,  6000] loss: 0.768
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:31:13. Total running time: 4min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3031228340148924 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        4            245.919   2.30312       0.1012 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [5,  8000] loss: 0.576
(func pid=5495) [5, 10000] loss: 0.461
(func pid=5495) [5, 12000] loss: 0.384
(func pid=5495) [5, 14000] loss: 0.329
(func pid=5495) [5, 16000] loss: 0.288
(func pid=5495) [5, 18000] loss: 0.256
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:31:43. Total running time: 5min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3031228340148924 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        4            245.919   2.30312       0.1012 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [5, 20000] loss: 0.230
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000004)
(func pid=5495) [6,  2000] loss: 2.303
(func pid=5495) [6,  4000] loss: 1.151
(func pid=5495) [6,  6000] loss: 0.768
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:32:13. Total running time: 5min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3031033515930175 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)     loss     accuracy │
├─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        5            306.857   2.3031       0.0955 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                   │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                   │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                   │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                   │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                   │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                   │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                   │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                   │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                   │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [6,  8000] loss: 0.576
(func pid=5495) [6, 10000] loss: 0.461
(func pid=5495) [6, 12000] loss: 0.384
(func pid=5495) [6, 14000] loss: 0.329
(func pid=5495) [6, 16000] loss: 0.288
(func pid=5495) [6, 18000] loss: 0.256
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:32:43. Total running time: 6min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3031033515930175 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)     loss     accuracy │
├─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        5            306.857   2.3031       0.0955 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                   │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                   │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                   │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                   │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                   │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                   │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                   │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                   │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                   │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [6, 20000] loss: 0.230
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000005)
(func pid=5495) [7,  2000] loss: 2.303
(func pid=5495) [7,  4000] loss: 1.151
(func pid=5495) [7,  6000] loss: 0.768
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:33:13. Total running time: 6min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3036095594882964 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        6             367.29   2.30361       0.1012 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [7,  8000] loss: 0.573
(func pid=5495) [7, 10000] loss: 0.448
(func pid=5495) [7, 12000] loss: 0.367
(func pid=5495) [7, 14000] loss: 0.310
(func pid=5495) [7, 16000] loss: 0.269
(func pid=5495) [7, 18000] loss: 0.236
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:33:44. Total running time: 7min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.3036095594882964 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        6             367.29   2.30361       0.1012 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [7, 20000] loss: 0.212
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000006)
(func pid=5495) [8,  2000] loss: 2.105
(func pid=5495) [8,  4000] loss: 1.049
(func pid=5495) [8,  6000] loss: 0.692
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:34:14. Total running time: 7min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.114957945179939 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        7            428.086   2.11496       0.1883 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [8,  8000] loss: 0.521
(func pid=5495) [8, 10000] loss: 0.413
(func pid=5495) [8, 12000] loss: 0.345
(func pid=5495) [8, 14000] loss: 0.294
(func pid=5495) [8, 16000] loss: 0.255
(func pid=5495) [8, 18000] loss: 0.225
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:34:44. Total running time: 8min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.114957945179939 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        7            428.086   2.11496       0.1883 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [8, 20000] loss: 0.204
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000007)
(func pid=5495) [9,  2000] loss: 2.018
(func pid=5495) [9,  4000] loss: 0.999
(func pid=5495) [9,  6000] loss: 0.664
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:35:14. Total running time: 8min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.0022196177482603 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        8            488.942   2.00222       0.1998 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [9,  8000] loss: 0.491
(func pid=5495) [9, 10000] loss: 0.389
(func pid=5495) [9, 12000] loss: 0.323
(func pid=5495) [9, 14000] loss: 0.273
(func pid=5495) [9, 16000] loss: 0.237
(func pid=5495) [9, 18000] loss: 0.211
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:35:44. Total running time: 9min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=2.0022196177482603 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        8            488.942   2.00222       0.1998 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [9, 20000] loss: 0.189
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000008)
(func pid=5495) [10,  2000] loss: 1.889
(func pid=5495) [10,  4000] loss: 0.942
(func pid=5495) [10,  6000] loss: 0.619
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:36:14. Total running time: 9min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=1.870682253921032 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        9            549.663   1.87068       0.2497 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [10,  8000] loss: 0.463
(func pid=5495) [10, 10000] loss: 0.373
(func pid=5495) [10, 12000] loss: 0.311
(func pid=5495) [10, 14000] loss: 0.263
(func pid=5495) [10, 16000] loss: 0.233
(func pid=5495) [10, 18000] loss: 0.205
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-06-03 00:36:44. Total running time: 10min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=1.870682253921032 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   RUNNING     128      1   0.000393605              2        9            549.663   1.87068       0.2497 │
│ train_cifar_e5524_00001   PENDING       2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00002   PENDING       4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING     256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING      32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING       8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING     128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING     256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING       4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING     256      2   0.000383082              4                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5495) [10, 20000] loss: 0.186

Trial train_cifar_e5524_00000 completed after 10 iterations at 2026-06-03 00:36:57. Total running time: 10min 14s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00000 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  60.83569 │
│ time_total_s                                     610.49862 │
│ training_iteration                                      10 │
│ accuracy                                            0.2146 │
│ loss                                               1.85962 │
╰────────────────────────────────────────────────────────────╯
(func pid=5495) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00000_0_batch_size=2,l1=128,l2=1,lr=0.0004_2026-06-03_00-26-42/checkpoint_000009)

Trial train_cifar_e5524_00001 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00001 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     8 │
│ device                                      cuda │
│ l1                                             2 │
│ l2                                            16 │
│ lr                                       0.00451 │
╰──────────────────────────────────────────────────╯
(func pid=7388) [1,  2000] loss: 1.988

Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-06-03 00:37:14. Total running time: 10min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=1.8596160467505456 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00001   RUNNING         2     16   0.00450586               8                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10            610.499   1.85962       0.2146 │
│ train_cifar_e5524_00002   PENDING         4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING       256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING        32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7388) [1,  4000] loss: 0.925
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000000)
(func pid=7388) [2,  2000] loss: 1.821
(func pid=7388) [2,  4000] loss: 0.913
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000001)
(func pid=7388) [3,  2000] loss: 1.812
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-06-03 00:37:44. Total running time: 11min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=1.8596160467505456 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00001   RUNNING         2     16   0.00450586               8        2            34.1512   1.86154       0.2562 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00002   PENDING         4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING       256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING        32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7388) [3,  4000] loss: 0.911
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000002)
(func pid=7388) [4,  2000] loss: 1.810
(func pid=7388) [4,  4000] loss: 0.899
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000003)
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-06-03 00:38:14. Total running time: 11min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=1.8596160467505456 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00001   RUNNING         2     16   0.00450586               8        4            66.4551   1.90142       0.2509 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00002   PENDING         4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING       256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING        32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7388) [5,  2000] loss: 1.838
(func pid=7388) [5,  4000] loss: 0.898
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000004)
(func pid=7388) [6,  2000] loss: 1.832
(func pid=7388) [6,  4000] loss: 0.918
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000005)
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-06-03 00:38:44. Total running time: 12min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00001 with loss=1.794007800102234 and params={'l1': 2, 'l2': 16, 'lr': 0.004505860994583894, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00001   RUNNING         2     16   0.00450586               8        6            98.7458   1.79401       0.3131 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00002   PENDING         4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING       256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING        32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7388) [7,  2000] loss: 1.806
(func pid=7388) [7,  4000] loss: 0.905
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000006)
(func pid=7388) [8,  2000] loss: 1.769
(func pid=7388) [8,  4000] loss: 0.882
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000007)
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-06-03 00:39:14. Total running time: 12min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00001 with loss=1.77416847448349 and params={'l1': 2, 'l2': 16, 'lr': 0.004505860994583894, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00001   RUNNING         2     16   0.00450586               8        8            130.953   1.77417       0.3225 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10            610.499   1.85962       0.2146 │
│ train_cifar_e5524_00002   PENDING         4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING       256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING        32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7388) [9,  2000] loss: 1.751
(func pid=7388) [9,  4000] loss: 0.874
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000008)
(func pid=7388) [10,  2000] loss: 1.752
(func pid=7388) [10,  4000] loss: 0.873
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-06-03 00:39:44. Total running time: 13min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00000 with loss=1.8596160467505456 and params={'l1': 128, 'l2': 1, 'lr': 0.0003936045633222101, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00001   RUNNING         2     16   0.00450586               8        9            148.072   1.88573       0.2817 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10            610.499   1.85962       0.2146 │
│ train_cifar_e5524_00002   PENDING         4      8   0.015076                 8                                                    │
│ train_cifar_e5524_00003   PENDING       256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00004   PENDING        32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_e5524_00001 completed after 10 iterations at 2026-06-03 00:39:46. Total running time: 13min 4s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00001 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  16.11117 │
│ time_total_s                                     164.18301 │
│ training_iteration                                      10 │
│ accuracy                                            0.3412 │
│ loss                                               1.72291 │
╰────────────────────────────────────────────────────────────╯
(func pid=7388) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00001_1_batch_size=8,l1=2,l2=16,lr=0.0045_2026-06-03_00-26-42/checkpoint_000009)

Trial train_cifar_e5524_00002 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00002 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     8 │
│ device                                      cuda │
│ l1                                             4 │
│ l2                                             8 │
│ lr                                       0.01508 │
╰──────────────────────────────────────────────────╯
(func pid=8401) [1,  2000] loss: 2.237
(func pid=8401) [1,  4000] loss: 1.052
(func pid=8401) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00002_2_batch_size=8,l1=4,l2=8,lr=0.0151_2026-06-03_00-26-42/checkpoint_000000)

Trial train_cifar_e5524_00002 completed after 1 iterations at 2026-06-03 00:40:08. Total running time: 13min 26s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  17.61613 │
│ time_total_s                                      17.61613 │
│ training_iteration                                       1 │
│ accuracy                                            0.0998 │
│ loss                                               2.30927 │
╰────────────────────────────────────────────────────────────╯

Trial train_cifar_e5524_00003 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00003 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                    16 │
│ device                                      cuda │
│ l1                                           256 │
│ l2                                             1 │
│ lr                                       0.00024 │
╰──────────────────────────────────────────────────╯

Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-06-03 00:40:14. Total running time: 13min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00001 with loss=1.722906385421753 and params={'l1': 2, 'l2': 16, 'lr': 0.004505860994583894, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00003   RUNNING       256      1   0.000242106             16                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00004   PENDING        32     16   0.0140813               16                                                    │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8586) [1,  2000] loss: 2.404

Trial train_cifar_e5524_00003 completed after 1 iterations at 2026-06-03 00:40:24. Total running time: 13min 41s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  10.78123 │
│ time_total_s                                      10.78123 │
│ training_iteration                                       1 │
│ accuracy                                            0.0997 │
│ loss                                                2.3504 │
╰────────────────────────────────────────────────────────────╯
(func pid=8586) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00003_3_batch_size=16,l1=256,l2=1,lr=0.0002_2026-06-03_00-26-42/checkpoint_000000)

Trial train_cifar_e5524_00004 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00004 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                    16 │
│ device                                      cuda │
│ l1                                            32 │
│ l2                                            16 │
│ lr                                       0.01408 │
╰──────────────────────────────────────────────────╯
(func pid=8736) [1,  2000] loss: 1.896
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000000)

Trial status: 4 TERMINATED | 1 RUNNING | 5 PENDING
Current time: 2026-06-03 00:40:44. Total running time: 14min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00001 with loss=1.722906385421753 and params={'l1': 2, 'l2': 16, 'lr': 0.004505860994583894, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00004   RUNNING        32     16   0.0140813               16        1            12.0182   1.79904       0.3323 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8736) [2,  2000] loss: 1.755
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000001)
(func pid=8736) [3,  2000] loss: 1.745
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000002)
(func pid=8736) [4,  2000] loss: 1.727
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000003)
(func pid=8736) [5,  2000] loss: 1.713
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000004)
Trial status: 4 TERMINATED | 1 RUNNING | 5 PENDING
Current time: 2026-06-03 00:41:14. Total running time: 14min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00004 with loss=1.6898325820922853 and params={'l1': 32, 'l2': 16, 'lr': 0.014081266300228953, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00004   RUNNING        32     16   0.0140813               16        5            46.2241   1.68983       0.3911 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8736) [6,  2000] loss: 1.719
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000005)
(func pid=8736) [7,  2000] loss: 1.732
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000006)
(func pid=8736) [8,  2000] loss: 1.731
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000007)
Trial status: 4 TERMINATED | 1 RUNNING | 5 PENDING
Current time: 2026-06-03 00:41:44. Total running time: 15min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00004 with loss=1.705219381904602 and params={'l1': 32, 'l2': 16, 'lr': 0.014081266300228953, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00004   RUNNING        32     16   0.0140813               16        8            72.1881   1.70522       0.3505 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00005   PENDING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8736) [9,  2000] loss: 1.722
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000008)
(func pid=8736) [10,  2000] loss: 1.743

Trial train_cifar_e5524_00004 completed after 10 iterations at 2026-06-03 00:41:58. Total running time: 15min 15s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00004 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                   8.67563 │
│ time_total_s                                      89.66228 │
│ training_iteration                                      10 │
│ accuracy                                            0.3904 │
│ loss                                               1.76806 │
╰────────────────────────────────────────────────────────────╯
(func pid=8736) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00004_4_batch_size=16,l1=32,l2=16,lr=0.0141_2026-06-03_00-26-42/checkpoint_000009)

Trial train_cifar_e5524_00005 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00005 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     8 │
│ device                                      cuda │
│ l1                                             8 │
│ l2                                            32 │
│ lr                                       0.00227 │
╰──────────────────────────────────────────────────╯
(func pid=9632) [1,  2000] loss: 2.001

Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-06-03 00:42:14. Total running time: 15min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00001 with loss=1.722906385421753 and params={'l1': 2, 'l2': 16, 'lr': 0.004505860994583894, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00005   RUNNING         8     32   0.00226625               8                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=9632) [1,  4000] loss: 0.822
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000000)
(func pid=9632) [2,  2000] loss: 1.504
(func pid=9632) [2,  4000] loss: 0.735
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000001)
(func pid=9632) [3,  2000] loss: 1.395
Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-06-03 00:42:45. Total running time: 16min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.460151535654068 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00005   RUNNING         8     32   0.00226625               8        2            34.2869   1.46015       0.4805 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=9632) [3,  4000] loss: 0.687
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000002)
(func pid=9632) [4,  2000] loss: 1.330
(func pid=9632) [4,  4000] loss: 0.673
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000003)
(func pid=9632) [5,  2000] loss: 1.304
Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-06-03 00:43:15. Total running time: 16min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.286154672551155 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00005   RUNNING         8     32   0.00226625               8        4            66.6463   1.28615       0.5453 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=9632) [5,  4000] loss: 0.653
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000004)
(func pid=9632) [6,  2000] loss: 1.277
(func pid=9632) [6,  4000] loss: 0.640
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000005)
Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-06-03 00:43:45. Total running time: 17min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3504340207338332 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00005   RUNNING         8     32   0.00226625               8        6            98.7505   1.35043       0.5232 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=9632) [7,  2000] loss: 1.259
(func pid=9632) [7,  4000] loss: 0.640
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000006)
(func pid=9632) [8,  2000] loss: 1.241
(func pid=9632) [8,  4000] loss: 0.620
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000007)
Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-06-03 00:44:15. Total running time: 17min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.2835253473043442 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00005   RUNNING         8     32   0.00226625               8        8           131.184    1.28353       0.5503 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=9632) [9,  2000] loss: 1.232
(func pid=9632) [9,  4000] loss: 0.627
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000008)
(func pid=9632) [10,  2000] loss: 1.239
(func pid=9632) [10,  4000] loss: 0.613
Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-06-03 00:44:45. Total running time: 18min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3233039300918579 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00005   RUNNING         8     32   0.00226625               8        9           147.435    1.3233        0.5434 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00006   PENDING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_e5524_00005 completed after 10 iterations at 2026-06-03 00:44:46. Total running time: 18min 3s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00005 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  16.01236 │
│ time_total_s                                     163.44693 │
│ training_iteration                                      10 │
│ accuracy                                            0.5447 │
│ loss                                               1.30352 │
╰────────────────────────────────────────────────────────────╯
(func pid=9632) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00005_5_batch_size=8,l1=8,l2=32,lr=0.0023_2026-06-03_00-26-42/checkpoint_000009)

Trial train_cifar_e5524_00006 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00006 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     4 │
│ device                                      cuda │
│ l1                                           128 │
│ l2                                            64 │
│ lr                                       0.00233 │
╰──────────────────────────────────────────────────╯
(func pid=10645) [1,  2000] loss: 1.964
(func pid=10645) [1,  4000] loss: 0.854
(func pid=10645) [1,  6000] loss: 0.541
(func pid=10645) [1,  8000] loss: 0.398

Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:45:15. Total running time: 18min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [1, 10000] loss: 0.309
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000000)
(func pid=10645) [2,  2000] loss: 1.502
(func pid=10645) [2,  4000] loss: 0.748
(func pid=10645) [2,  6000] loss: 0.495
(func pid=10645) [2,  8000] loss: 0.371
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:45:45. Total running time: 19min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        1            32.883    1.56131       0.4314 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [2, 10000] loss: 0.291
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000001)
(func pid=10645) [3,  2000] loss: 1.380
(func pid=10645) [3,  4000] loss: 0.704
(func pid=10645) [3,  6000] loss: 0.477
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:46:15. Total running time: 19min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        2            63.9038   1.5635        0.4505 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [3,  8000] loss: 0.360
(func pid=10645) [3, 10000] loss: 0.283
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000002)
(func pid=10645) [4,  2000] loss: 1.347
(func pid=10645) [4,  4000] loss: 0.683
(func pid=10645) [4,  6000] loss: 0.455
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:46:45. Total running time: 20min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        3            94.8003   1.40337       0.5052 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [4,  8000] loss: 0.346
(func pid=10645) [4, 10000] loss: 0.276
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000003)
(func pid=10645) [5,  2000] loss: 1.312
(func pid=10645) [5,  4000] loss: 0.666
(func pid=10645) [5,  6000] loss: 0.450
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:47:15. Total running time: 20min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        4           125.822    1.35232       0.5257 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [5,  8000] loss: 0.336
(func pid=10645) [5, 10000] loss: 0.278
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000004)
(func pid=10645) [6,  2000] loss: 1.270
(func pid=10645) [6,  4000] loss: 0.673
(func pid=10645) [6,  6000] loss: 0.445
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:47:45. Total running time: 21min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        5           156.739    1.41589       0.5151 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [6,  8000] loss: 0.340
(func pid=10645) [6, 10000] loss: 0.270
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000005)
(func pid=10645) [7,  2000] loss: 1.280
(func pid=10645) [7,  4000] loss: 0.642
(func pid=10645) [7,  6000] loss: 0.441
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:48:15. Total running time: 21min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        6           187.642    1.40365       0.5154 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [7,  8000] loss: 0.334
(func pid=10645) [7, 10000] loss: 0.277
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000006)
(func pid=10645) [8,  2000] loss: 1.290
(func pid=10645) [8,  4000] loss: 0.640
(func pid=10645) [8,  6000] loss: 0.438
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:48:45. Total running time: 22min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        7           218.187    1.40006       0.5102 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [8,  8000] loss: 0.341
(func pid=10645) [8, 10000] loss: 0.273
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000007)
(func pid=10645) [9,  2000] loss: 1.262
(func pid=10645) [9,  4000] loss: 0.646
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:49:15. Total running time: 22min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        8           249.054    1.53305       0.4781 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [9,  6000] loss: 0.437
(func pid=10645) [9,  8000] loss: 0.335
(func pid=10645) [9, 10000] loss: 0.268
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000008)
(func pid=10645) [10,  2000] loss: 1.316
(func pid=10645) [10,  4000] loss: 0.643
Trial status: 6 TERMINATED | 1 RUNNING | 3 PENDING
Current time: 2026-06-03 00:49:45. Total running time: 23min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00006   RUNNING       128     64   0.00233169               4        9           279.923    1.47054       0.5085 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00007   PENDING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10645) [10,  6000] loss: 0.443
(func pid=10645) [10,  8000] loss: 0.329
(func pid=10645) [10, 10000] loss: 0.261

Trial train_cifar_e5524_00006 completed after 10 iterations at 2026-06-03 00:50:01. Total running time: 23min 18s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  30.85755 │
│ time_total_s                                     310.78093 │
│ training_iteration                                      10 │
│ accuracy                                            0.4851 │
│ loss                                                1.5189 │
╰────────────────────────────────────────────────────────────╯
(func pid=10645) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00006_6_batch_size=4,l1=128,l2=64,lr=0.0023_2026-06-03_00-26-42/checkpoint_000009)

Trial train_cifar_e5524_00007 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00007 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     4 │
│ device                                      cuda │
│ l1                                           256 │
│ l2                                             8 │
│ lr                                       0.00033 │
╰──────────────────────────────────────────────────╯
(func pid=11958) [1,  2000] loss: 2.281

Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:50:15. Total running time: 23min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [1,  4000] loss: 1.047
(func pid=11958) [1,  6000] loss: 0.629
(func pid=11958) [1,  8000] loss: 0.435
(func pid=11958) [1, 10000] loss: 0.326
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000000)
(func pid=11958) [2,  2000] loss: 1.572
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:50:45. Total running time: 24min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        1            32.5404   1.63059       0.4078 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [2,  4000] loss: 0.763
(func pid=11958) [2,  6000] loss: 0.495
(func pid=11958) [2,  8000] loss: 0.361
(func pid=11958) [2, 10000] loss: 0.284
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000001)
(func pid=11958) [3,  2000] loss: 1.368
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:51:15. Total running time: 24min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        2            63.3747   1.43499       0.4883 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [3,  4000] loss: 0.676
(func pid=11958) [3,  6000] loss: 0.445
(func pid=11958) [3,  8000] loss: 0.326
(func pid=11958) [3, 10000] loss: 0.260
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000002)
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:51:45. Total running time: 25min 3s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00005 with loss=1.3035233695745467 and params={'l1': 8, 'l2': 32, 'lr': 0.002266249962427044, 'batch_size': 8, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        3            94.2179   1.30373       0.5323 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [4,  2000] loss: 1.215
(func pid=11958) [4,  4000] loss: 0.622
(func pid=11958) [4,  6000] loss: 0.406
(func pid=11958) [4,  8000] loss: 0.305
(func pid=11958) [4, 10000] loss: 0.244
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000003)
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:52:16. Total running time: 25min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.2764593084335327 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        4           124.972    1.27646       0.5417 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [5,  2000] loss: 1.134
(func pid=11958) [5,  4000] loss: 0.577
(func pid=11958) [5,  6000] loss: 0.377
(func pid=11958) [5,  8000] loss: 0.286
(func pid=11958) [5, 10000] loss: 0.227
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000004)
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:52:46. Total running time: 26min 3s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1927819685190917 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        5           155.739    1.19278       0.5795 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [6,  2000] loss: 1.059
(func pid=11958) [6,  4000] loss: 0.524
(func pid=11958) [6,  6000] loss: 0.358
(func pid=11958) [6,  8000] loss: 0.270
(func pid=11958) [6, 10000] loss: 0.215
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000005)
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:53:16. Total running time: 26min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.2195624839290977 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        6           186.583    1.21956       0.5786 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [7,  2000] loss: 1.003
(func pid=11958) [7,  4000] loss: 0.493
(func pid=11958) [7,  6000] loss: 0.334
(func pid=11958) [7,  8000] loss: 0.257
(func pid=11958) [7, 10000] loss: 0.202
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000006)
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:53:46. Total running time: 27min 3s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1873233204752207 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        7           218.089    1.18732       0.5904 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [8,  2000] loss: 0.913
(func pid=11958) [8,  4000] loss: 0.463
(func pid=11958) [8,  6000] loss: 0.320
(func pid=11958) [8,  8000] loss: 0.233
(func pid=11958) [8, 10000] loss: 0.197
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000007)
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:54:16. Total running time: 27min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1913595205791294 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        8           249.008    1.19136       0.595  │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) [9,  2000] loss: 0.881
(func pid=11958) [9,  4000] loss: 0.432
(func pid=11958) [9,  6000] loss: 0.294
(func pid=11958) [9,  8000] loss: 0.220
(func pid=11958) [9, 10000] loss: 0.184
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:54:46. Total running time: 28min 3s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1913595205791294 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        8           249.008    1.19136       0.595  │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000008)
(func pid=11958) [10,  2000] loss: 0.787
(func pid=11958) [10,  4000] loss: 0.417
(func pid=11958) [10,  6000] loss: 0.276
(func pid=11958) [10,  8000] loss: 0.212
(func pid=11958) [10, 10000] loss: 0.171
Trial status: 7 TERMINATED | 1 RUNNING | 2 PENDING
Current time: 2026-06-03 00:55:16. Total running time: 28min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.2191801403423772 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00007   RUNNING       256      8   0.000329713              4        9           279.762    1.21918       0.5878 │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00008   PENDING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_e5524_00007 completed after 10 iterations at 2026-06-03 00:55:17. Total running time: 28min 34s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00007 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  30.70419 │
│ time_total_s                                     310.46617 │
│ training_iteration                                      10 │
│ accuracy                                            0.6036 │
│ loss                                               1.18664 │
╰────────────────────────────────────────────────────────────╯
(func pid=11958) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00007_7_batch_size=4,l1=256,l2=8,lr=0.0003_2026-06-03_00-26-42/checkpoint_000009)

Trial train_cifar_e5524_00008 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00008 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     2 │
│ device                                      cuda │
│ l1                                             4 │
│ l2                                             2 │
│ lr                                       0.00884 │
╰──────────────────────────────────────────────────╯
(func pid=13255) [1,  2000] loss: 2.316
(func pid=13255) [1,  4000] loss: 1.156
(func pid=13255) [1,  6000] loss: 0.771
(func pid=13255) [1,  8000] loss: 0.579

Trial status: 8 TERMINATED | 1 RUNNING | 1 PENDING
Current time: 2026-06-03 00:55:46. Total running time: 29min 3s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1866376930650324 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00008   RUNNING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00007   TERMINATED    256      8   0.000329713              4       10           310.466    1.18664       0.6036 │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=13255) [1, 10000] loss: 0.463
(func pid=13255) [1, 12000] loss: 0.385
(func pid=13255) [1, 14000] loss: 0.330
(func pid=13255) [1, 16000] loss: 0.289
(func pid=13255) [1, 18000] loss: 0.257
(func pid=13255) [1, 20000] loss: 0.231
Trial status: 8 TERMINATED | 1 RUNNING | 1 PENDING
Current time: 2026-06-03 00:56:16. Total running time: 29min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1866376930650324 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00008   RUNNING         4      2   0.00884237               2                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00007   TERMINATED    256      8   0.000329713              4       10           310.466    1.18664       0.6036 │
│ train_cifar_e5524_00009   PENDING       256      2   0.000383082              4                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_e5524_00008 completed after 1 iterations at 2026-06-03 00:56:24. Total running time: 29min 41s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00008 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  62.47919 │
│ time_total_s                                      62.47919 │
│ training_iteration                                       1 │
│ accuracy                                            0.0964 │
│ loss                                               2.30843 │
╰────────────────────────────────────────────────────────────╯
(func pid=13255) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00008_8_batch_size=2,l1=4,l2=2,lr=0.0088_2026-06-03_00-26-42/checkpoint_000000)

Trial train_cifar_e5524_00009 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00009 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     4 │
│ device                                      cuda │
│ l1                                           256 │
│ l2                                             2 │
│ lr                                       0.00038 │
╰──────────────────────────────────────────────────╯
(func pid=13516) [1,  2000] loss: 2.334
(func pid=13516) [1,  4000] loss: 1.132

Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2026-06-03 00:56:46. Total running time: 30min 3s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1866376930650324 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00009   RUNNING       256      2   0.000383082              4                                                    │
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00007   TERMINATED    256      8   0.000329713              4       10           310.466    1.18664       0.6036 │
│ train_cifar_e5524_00008   TERMINATED      4      2   0.00884237               2        1            62.4792   2.30843       0.0964 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=13516) [1,  6000] loss: 0.724
(func pid=13516) [1,  8000] loss: 0.520
(func pid=13516) [1, 10000] loss: 0.404

Trial train_cifar_e5524_00009 completed after 1 iterations at 2026-06-03 00:57:01. Total running time: 30min 18s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_e5524_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  32.65647 │
│ time_total_s                                      32.65647 │
│ training_iteration                                       1 │
│ accuracy                                            0.1907 │
│ loss                                               2.02742 │
╰────────────────────────────────────────────────────────────╯
2026-06-03 00:57:01,514 INFO tune.py:1001 -- Wrote the latest version of all result files and experiment state to '/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42' in 0.0100s.

Trial status: 10 TERMINATED
Current time: 2026-06-03 00:57:01. Total running time: 30min 18s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: e5524_00007 with loss=1.1866376930650324 and params={'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_e5524_00000   TERMINATED    128      1   0.000393605              2       10           610.499    1.85962       0.2146 │
│ train_cifar_e5524_00001   TERMINATED      2     16   0.00450586               8       10           164.183    1.72291       0.3412 │
│ train_cifar_e5524_00002   TERMINATED      4      8   0.015076                 8        1            17.6161   2.30927       0.0998 │
│ train_cifar_e5524_00003   TERMINATED    256      1   0.000242106             16        1            10.7812   2.3504        0.0997 │
│ train_cifar_e5524_00004   TERMINATED     32     16   0.0140813               16       10            89.6623   1.76806       0.3904 │
│ train_cifar_e5524_00005   TERMINATED      8     32   0.00226625               8       10           163.447    1.30352       0.5447 │
│ train_cifar_e5524_00006   TERMINATED    128     64   0.00233169               4       10           310.781    1.5189        0.4851 │
│ train_cifar_e5524_00007   TERMINATED    256      8   0.000329713              4       10           310.466    1.18664       0.6036 │
│ train_cifar_e5524_00008   TERMINATED      4      2   0.00884237               2        1            62.4792   2.30843       0.0964 │
│ train_cifar_e5524_00009   TERMINATED    256      2   0.000383082              4        1            32.6565   2.02742       0.1907 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Best trial config: {'l1': 256, 'l2': 8, 'lr': 0.0003297126639410268, 'batch_size': 4, 'device': 'cuda'}
Best trial final validation loss: 1.1866376930650324
Best trial final validation accuracy: 0.6036
(func pid=13516) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-06-03_00-26-42/train_cifar_e5524_00009_9_batch_size=4,l1=256,l2=2,lr=0.0004_2026-06-03_00-26-42/checkpoint_000000)
Best trial test set accuracy: 0.6036

Results#

Your Ray Tune trial summary output looks something like this. The text table summarizes the validation performance of the trials and highlights the best hyperparameter configuration:

Number of trials: 10/10 (10 TERMINATED)
+-----+--------------+------+------+-------------+--------+---------+------------+
| ... |   batch_size |   l1 |   l2 |          lr |   iter |    loss |   accuracy |
|-----+--------------+------+------+-------------+--------+---------+------------|
| ... |            2 |    1 |  256 | 0.000668163 |      1 | 2.31479 |     0.0977 |
| ... |            4 |   64 |    8 | 0.0331514   |      1 | 2.31605 |     0.0983 |
| ... |            4 |    2 |    1 | 0.000150295 |      1 | 2.30755 |     0.1023 |
| ... |           16 |   32 |   32 | 0.0128248   |     10 | 1.66912 |     0.4391 |
| ... |            4 |    8 |  128 | 0.00464561  |      2 | 1.7316  |     0.3463 |
| ... |            8 |  256 |    8 | 0.00031556  |      1 | 2.19409 |     0.1736 |
| ... |            4 |   16 |  256 | 0.00574329  |      2 | 1.85679 |     0.3368 |
| ... |            8 |    2 |    2 | 0.00325652  |      1 | 2.30272 |     0.0984 |
| ... |            2 |    2 |    2 | 0.000342987 |      2 | 1.76044 |     0.292  |
| ... |            4 |   64 |   32 | 0.003734    |      8 | 1.53101 |     0.4761 |
+-----+--------------+------+------+-------------+--------+---------+------------+

Best trial config: {'l1': 64, 'l2': 32, 'lr': 0.0037339984519545164, 'batch_size': 4}
Best trial final validation loss: 1.5310075663924216
Best trial final validation accuracy: 0.4761
Best trial test set accuracy: 0.4737

Most trials stopped early to conserve resources. The best performing trial achieved a validation accuracy of approximately 47%, which the test set confirms.

Observability#

Monitoring is critical when running large-scale experiments. Ray provides a dashboard that lets you view the status of your trials, check cluster resource use, and inspect logs in real time.

For debugging, Ray also offers distributed debugging tools that let you attach a debugger to running trials across the cluster.

Conclusion#

In this tutorial, you learned how to tune the hyperparameters of a PyTorch model using Ray Tune. You saw how to integrate Ray Tune into your PyTorch training loop, define a search space for your hyperparameters, use an efficient scheduler like ASHAScheduler to terminate low-performing trials early, save checkpoints and report metrics to Ray Tune, and run the hyperparameter search and analyze the results.

Ray Tune makes it straightforward to scale your experiments from a single machine to a large cluster, helping you find the best model configuration efficiently.

Further reading#

Total running time of the script: (30 minutes 34.637 seconds)