Rate this Page

Hyperparameter tuning with Ray Tune#

Created On: Aug 31, 2020 | Last Updated: Jun 24, 2025 | Last Verified: Nov 05, 2024

Hyperparameter tuning can make the difference between an average model and a highly accurate one. Often simple things like choosing a different learning rate or changing a network layer size can have a dramatic impact on your model performance.

Fortunately, there are tools that help with finding the best combination of parameters. Ray Tune is an industry standard tool for distributed hyperparameter tuning. Ray Tune includes the latest hyperparameter search algorithms, integrates with various analysis libraries, and natively supports distributed training through Ray’s distributed machine learning engine.

In this tutorial, we will show you how to integrate Ray Tune into your PyTorch training workflow. We will extend this tutorial from the PyTorch documentation for training a CIFAR10 image classifier.

As you will see, we only need to add some slight modifications. In particular, we need to

  1. wrap data loading and training in functions,

  2. make some network parameters configurable,

  3. add checkpointing (optional),

  4. and define the search space for the model tuning


To run this tutorial, please make sure the following packages are installed:

  • ray[tune]: Distributed hyperparameter tuning library

  • torchvision: For the data transformers

Setup / Imports#

Let’s 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
from ray import tune
from ray import train
from ray.train import Checkpoint, get_checkpoint
from ray.tune.schedulers import ASHAScheduler
import ray.cloudpickle as pickle

Most of the imports are needed for building the PyTorch model. Only the last imports are for Ray Tune.

Data loaders#

We wrap the data loaders in their own function and pass a global data directory. This way we can share a data directory between different trials.

def load_data(data_dir="./data"):
    transform = transforms.Compose(
        [transforms.ToTensor(), transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5))]
    )

    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

Configurable neural network#

We can only tune those parameters that are configurable. In this example, we can specify the layer sizes of the fully connected layers:

class Net(nn.Module):
    def __init__(self, l1=120, l2=84):
        super(Net, self).__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

The train function#

Now it gets interesting, because we introduce some changes to the example from the PyTorch documentation.

We wrap the training script in a function train_cifar(config, data_dir=None). The config parameter will receive the hyperparameters we would like to train with. The data_dir specifies the directory where we load and store the data, so that multiple runs can share the same data source. We also load the model and optimizer state at the start of the run, if a checkpoint is provided. Further down in this tutorial you will find information on how to save the checkpoint and what it is used for.

net = Net(config["l1"], config["l2"])

checkpoint = get_checkpoint()
if checkpoint:
    with checkpoint.as_directory() as checkpoint_dir:
        data_path = Path(checkpoint_dir) / "data.pkl"
        with open(data_path, "rb") as fp:
            checkpoint_state = pickle.load(fp)
        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

The learning rate of the optimizer is made configurable, too:

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

We also split the training data into a training and validation subset. We thus train on 80% of the data and calculate the validation loss on the remaining 20%. The batch sizes with which we iterate through the training and test sets are configurable as well.

Adding (multi) GPU support with DataParallel#

Image classification benefits largely from GPUs. Luckily, we can continue to use PyTorch’s abstractions in Ray Tune. Thus, we can wrap our model in nn.DataParallel to support data parallel training on multiple GPUs:

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

By using a device variable we make sure that training also works when we have no GPUs available. PyTorch requires us to send our data to the GPU memory explicitly, like this:

for i, data in enumerate(trainloader, 0):
    inputs, labels = data
    inputs, labels = inputs.to(device), labels.to(device)

The code now supports training on CPUs, on a single GPU, and on multiple GPUs. Notably, Ray also supports fractional GPUs so we can share GPUs among trials, as long as the model still fits on the GPU memory. We’ll come back to that later.

Communicating with Ray Tune#

The most interesting part is the communication with Ray Tune:

checkpoint_data = {
    "epoch": epoch,
    "net_state_dict": net.state_dict(),
    "optimizer_state_dict": optimizer.state_dict(),
}
with tempfile.TemporaryDirectory() as checkpoint_dir:
    data_path = Path(checkpoint_dir) / "data.pkl"
    with open(data_path, "wb") as fp:
        pickle.dump(checkpoint_data, fp)

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

Here we first save a checkpoint and then report some metrics back to Ray Tune. Specifically, we send the validation loss and accuracy back to Ray Tune. Ray Tune can then use these metrics to decide which hyperparameter configuration lead to the best results. These metrics can also be used to stop bad performing trials early in order to avoid wasting resources on those trials.

The checkpoint saving is optional, however, it is necessary if we wanted to use advanced schedulers like Population Based Training. Also, by saving the checkpoint we can later load the trained models and validate them on a test set. Lastly, saving checkpoints is useful for fault tolerance, and it allows us to interrupt training and continue training later.

Full training function#

The full code example looks like this:

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

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

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

    checkpoint = get_checkpoint()
    if checkpoint:
        with checkpoint.as_directory() as checkpoint_dir:
            data_path = Path(checkpoint_dir) / "data.pkl"
            with open(data_path, "rb") as fp:
                checkpoint_state = pickle.load(fp)
            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

        checkpoint_data = {
            "epoch": epoch,
            "net_state_dict": net.state_dict(),
            "optimizer_state_dict": optimizer.state_dict(),
        }
        with tempfile.TemporaryDirectory() as checkpoint_dir:
            data_path = Path(checkpoint_dir) / "data.pkl"
            with open(data_path, "wb") as fp:
                pickle.dump(checkpoint_data, fp)

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

    print("Finished Training")

As you can see, most of the code is adapted directly from the original example.

Test set accuracy#

Commonly the performance of a machine learning model is tested on a hold-out test set with data that has not been used for training the model. We also wrap this in a function:

def test_accuracy(net, device="cpu"):
    trainset, testset = load_data()

    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:
            images, labels = data
            images, labels = images.to(device), labels.to(device)
            outputs = net(images)
            _, predicted = torch.max(outputs.data, 1)
            total += labels.size(0)
            correct += (predicted == labels).sum().item()

    return correct / total

The function also expects a device parameter, so we can do the test set validation on a GPU.

Configuring the search space#

Lastly, we need to define Ray Tune’s search space. Here is an example:

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 parameters should be powers of 2 between 4 and 256, so either 4, 8, 16, 32, 64, 128, or 256. The lr (learning rate) should be uniformly sampled between 0.0001 and 0.1. Lastly, the batch size is a choice between 2, 4, 8, and 16.

At each trial, Ray Tune will now randomly sample a combination of parameters from these search spaces. It will then train a number of models in parallel and find the best performing one among these. We also use the ASHAScheduler which will terminate bad performing trials early.

We wrap the train_cifar function with functools.partial to set the constant data_dir parameter. We can also tell Ray Tune what resources should be available for each trial:

gpus_per_trial = 2
# ...
result = tune.run(
    partial(train_cifar, data_dir=data_dir),
    resources_per_trial={"cpu": 8, "gpu": gpus_per_trial},
    config=config,
    num_samples=num_samples,
    scheduler=scheduler,
    checkpoint_at_end=True)

You can specify the number of CPUs, which are then available e.g. to increase the num_workers of the PyTorch DataLoader instances. The selected number of GPUs are made visible to PyTorch in each trial. Trials do not have access to GPUs that haven’t been requested for them - so you don’t have to care about two trials using the same set of resources.

Here we can also specify fractional GPUs, so something like gpus_per_trial=0.5 is completely valid. The trials will then share GPUs among each other. You just have to make sure that the models still fit in the GPU memory.

After training the models, we will find the best performing one and load the trained network from the checkpoint file. We then obtain the test set accuracy and report everything by printing.

The full main function looks like this:

def main(num_samples=10, max_num_epochs=10, gpus_per_trial=2):
    data_dir = os.path.abspath("./data")
    load_data(data_dir)
    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]),
    }
    scheduler = ASHAScheduler(
        metric="loss",
        mode="min",
        max_t=max_num_epochs,
        grace_period=1,
        reduction_factor=2,
    )
    result = tune.run(
        partial(train_cifar, data_dir=data_dir),
        resources_per_trial={"cpu": 2, "gpu": gpus_per_trial},
        config=config,
        num_samples=num_samples,
        scheduler=scheduler,
    )

    best_trial = result.get_best_trial("loss", "min", "last")
    print(f"Best trial config: {best_trial.config}")
    print(f"Best trial final validation loss: {best_trial.last_result['loss']}")
    print(f"Best trial final validation accuracy: {best_trial.last_result['accuracy']}")

    best_trained_model = Net(best_trial.config["l1"], best_trial.config["l2"])
    device = "cpu"
    if torch.cuda.is_available():
        device = "cuda:0"
        if gpus_per_trial > 1:
            best_trained_model = nn.DataParallel(best_trained_model)
    best_trained_model.to(device)

    best_checkpoint = result.get_best_checkpoint(trial=best_trial, metric="accuracy", mode="max")
    with best_checkpoint.as_directory() as checkpoint_dir:
        data_path = Path(checkpoint_dir) / "data.pkl"
        with open(data_path, "rb") as fp:
            best_checkpoint_data = pickle.load(fp)

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


if __name__ == "__main__":
    # You can change the number of GPUs per trial here:
    main(num_samples=10, max_num_epochs=10, gpus_per_trial=0)
  0%|          | 0.00/170M [00:00<?, ?B/s]
  0%|          | 459k/170M [00:00<00:39, 4.35MB/s]
  2%|▏         | 2.59M/170M [00:00<00:12, 14.0MB/s]
  3%|▎         | 5.14M/170M [00:00<00:08, 19.1MB/s]
  5%|▍         | 8.26M/170M [00:00<00:06, 23.8MB/s]
  7%|▋         | 11.2M/170M [00:00<00:06, 25.9MB/s]
  8%|▊         | 14.1M/170M [00:00<00:05, 26.7MB/s]
 10%|▉         | 16.7M/170M [00:00<00:05, 26.7MB/s]
 11%|█▏        | 19.5M/170M [00:00<00:05, 26.9MB/s]
 13%|█▎        | 22.2M/170M [00:00<00:05, 26.5MB/s]
 15%|█▍        | 24.9M/170M [00:01<00:05, 26.6MB/s]
 16%|█▌        | 27.6M/170M [00:01<00:05, 26.2MB/s]
 18%|█▊        | 30.3M/170M [00:01<00:05, 26.5MB/s]
 20%|█▉        | 33.3M/170M [00:01<00:05, 27.2MB/s]
 21%|██        | 36.0M/170M [00:01<00:04, 27.0MB/s]
 23%|██▎       | 38.8M/170M [00:01<00:04, 27.3MB/s]
 24%|██▍       | 41.6M/170M [00:01<00:04, 27.3MB/s]
 27%|██▋       | 45.2M/170M [00:01<00:04, 30.0MB/s]
 30%|██▉       | 50.3M/170M [00:01<00:03, 36.2MB/s]
 33%|███▎      | 57.1M/170M [00:01<00:02, 45.5MB/s]
 38%|███▊      | 65.3M/170M [00:02<00:01, 56.4MB/s]
 44%|████▍     | 75.7M/170M [00:02<00:01, 70.4MB/s]
 51%|█████     | 86.5M/170M [00:02<00:01, 81.8MB/s]
 56%|█████▋    | 96.1M/170M [00:02<00:00, 85.9MB/s]
 63%|██████▎   | 107M/170M [00:02<00:00, 92.4MB/s]
 69%|██████▊   | 117M/170M [00:02<00:00, 95.6MB/s]
 75%|███████▍  | 128M/170M [00:02<00:00, 98.5MB/s]
 81%|████████  | 138M/170M [00:02<00:00, 99.5MB/s]
 87%|████████▋ | 149M/170M [00:02<00:00, 102MB/s]
 94%|█████████▎| 159M/170M [00:02<00:00, 104MB/s]
100%|█████████▉| 170M/170M [00:03<00:00, 104MB/s]
100%|██████████| 170M/170M [00:03<00:00, 56.1MB/s]
2025-12-19 04:38:51,195 WARNING services.py:1889 -- WARNING: The object store is using /tmp instead of /dev/shm because /dev/shm has only 2147467264 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.
2025-12-19 04:38:51,363 INFO worker.py:1642 -- Started a local Ray instance.
2025-12-19 04:38:52,243 INFO tune.py:228 -- Initializing Ray automatically. For cluster usage or custom Ray initialization, call `ray.init(...)` before `tune.run(...)`.
2025-12-19 04:38:52,245 INFO tune.py:654 -- [output] This will use the new output engine with verbosity 2. To disable the new output and use the legacy output engine, set the environment variable RAY_AIR_NEW_OUTPUT=0. For more information, please see https://github.com/ray-project/ray/issues/36949
╭────────────────────────────────────────────────────────────────────╮
│ Configuration for experiment     train_cifar_2025-12-19_04-38-52   │
├────────────────────────────────────────────────────────────────────┤
│ Search algorithm                 BasicVariantGenerator             │
│ Scheduler                        AsyncHyperBandScheduler           │
│ Number of trials                 10                                │
╰────────────────────────────────────────────────────────────────────╯

View detailed results here: /var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52
To visualize your results with TensorBoard, run: `tensorboard --logdir /var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52`

Trial status: 10 PENDING
Current time: 2025-12-19 04:38:52. Total running time: 0s
Logical resource usage: 14.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭───────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size │
├───────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   PENDING       1     32   0.000312566              2 │
│ train_cifar_9e993_00001   PENDING       1      1   0.00961876               2 │
│ train_cifar_9e993_00002   PENDING     256      1   0.00159395              16 │
│ train_cifar_9e993_00003   PENDING      64     32   0.0103228                8 │
│ train_cifar_9e993_00004   PENDING      32    256   0.00542678               2 │
│ train_cifar_9e993_00005   PENDING       1    256   0.0588521                4 │
│ train_cifar_9e993_00006   PENDING     256     16   0.00228044               4 │
│ train_cifar_9e993_00007   PENDING      64      4   0.00370681               8 │
│ train_cifar_9e993_00008   PENDING       1      8   0.00017559               8 │
│ train_cifar_9e993_00009   PENDING      16    128   0.000435099              2 │
╰───────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_9e993_00003 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     8 │
│ l1                                            64 │
│ l2                                            32 │
│ lr                                       0.01032 │
╰──────────────────────────────────────────────────╯

Trial train_cifar_9e993_00006 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     4 │
│ l1                                           256 │
│ l2                                            16 │
│ lr                                       0.00228 │
╰──────────────────────────────────────────────────╯

Trial train_cifar_9e993_00002 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                    16 │
│ l1                                           256 │
│ l2                                             1 │
│ lr                                       0.00159 │
╰──────────────────────────────────────────────────╯

Trial train_cifar_9e993_00007 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00007 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     8 │
│ l1                                            64 │
│ l2                                             4 │
│ lr                                       0.00371 │
╰──────────────────────────────────────────────────╯

Trial train_cifar_9e993_00005 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00005 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     4 │
│ l1                                             1 │
│ l2                                           256 │
│ lr                                       0.05885 │
╰──────────────────────────────────────────────────╯

Trial train_cifar_9e993_00000 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00000 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     2 │
│ l1                                             1 │
│ l2                                            32 │
│ lr                                       0.00031 │
╰──────────────────────────────────────────────────╯

Trial train_cifar_9e993_00001 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00001 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     2 │
│ l1                                             1 │
│ l2                                             1 │
│ lr                                       0.00962 │
╰──────────────────────────────────────────────────╯

Trial train_cifar_9e993_00004 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00004 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     2 │
│ l1                                            32 │
│ l2                                           256 │
│ lr                                       0.00543 │
╰──────────────────────────────────────────────────╯
(func pid=3988) [1,  2000] loss: 2.203
(func pid=3984) [1,  4000] loss: 1.126 [repeated 8x across cluster] (Ray deduplicates logs by default. Set RAY_DEDUP_LOGS=0 to disable log deduplication, or see https://docs.ray.io/en/master/ray-observability/ray-logging.html#log-deduplication for more options.)

Trial train_cifar_9e993_00002 finished iteration 1 at 2025-12-19 04:39:22. Total running time: 30s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  25.62122 │
│ time_total_s                                      25.62122 │
│ training_iteration                                       1 │
│ accuracy                                            0.1701 │
│ loss                                               2.05448 │
╰────────────────────────────────────────────────────────────╯
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000000)
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000000

Trial status: 8 RUNNING | 2 PENDING
Current time: 2025-12-19 04:39:22. Total running time: 30s
Logical resource usage: 16.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status       l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   RUNNING       1     32   0.000312566              2                                                    │
│ train_cifar_9e993_00001   RUNNING       1      1   0.00961876               2                                                    │
│ train_cifar_9e993_00002   RUNNING     256      1   0.00159395              16        1            25.6212   2.05448       0.1701 │
│ train_cifar_9e993_00003   RUNNING      64     32   0.0103228                8                                                    │
│ train_cifar_9e993_00004   RUNNING      32    256   0.00542678               2                                                    │
│ train_cifar_9e993_00005   RUNNING       1    256   0.0588521                4                                                    │
│ train_cifar_9e993_00006   RUNNING     256     16   0.00228044               4                                                    │
│ train_cifar_9e993_00007   RUNNING      64      4   0.00370681               8                                                    │
│ train_cifar_9e993_00008   PENDING       1      8   0.00017559               8                                                    │
│ train_cifar_9e993_00009   PENDING      16    128   0.000435099              2                                                    │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3984) [1,  6000] loss: 0.714 [repeated 7x across cluster]

Trial train_cifar_9e993_00003 finished iteration 1 at 2025-12-19 04:39:37. Total running time: 45s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  40.66077 │
│ time_total_s                                      40.66077 │
│ training_iteration                                       1 │
│ accuracy                                            0.3951 │
│ loss                                               1.66926 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000000
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000000)

Trial train_cifar_9e993_00007 finished iteration 1 at 2025-12-19 04:39:38. Total running time: 46s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00007 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                   41.5303 │
│ time_total_s                                       41.5303 │
│ training_iteration                                       1 │
│ accuracy                                            0.0981 │
│ loss                                               2.30393 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00007 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00007_7_batch_size=8,l1=64,l2=4,lr=0.0037_2025-12-19_04-38-52/checkpoint_000000

Trial train_cifar_9e993_00007 completed after 1 iterations at 2025-12-19 04:39:38. Total running time: 46s

Trial train_cifar_9e993_00008 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00008 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     8 │
│ l1                                             1 │
│ l2                                             8 │
│ lr                                       0.00018 │
╰──────────────────────────────────────────────────╯
(func pid=3991) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00007_7_batch_size=8,l1=64,l2=4,lr=0.0037_2025-12-19_04-38-52/checkpoint_000000)
(func pid=3986) [2,  2000] loss: 1.982 [repeated 5x across cluster]
(func pid=3990) [1,  8000] loss: 0.391 [repeated 5x across cluster]

Trial train_cifar_9e993_00002 finished iteration 2 at 2025-12-19 04:39:46. Total running time: 53s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000001 │
│ time_this_iter_s                                  23.70916 │
│ time_total_s                                      49.33038 │
│ training_iteration                                       2 │
│ accuracy                                            0.1808 │
│ loss                                               1.95249 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000001
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000001)
(func pid=3987) [2,  2000] loss: 1.664
(func pid=3984) [1, 10000] loss: 0.399

Trial status: 8 RUNNING | 1 TERMINATED | 1 PENDING
Current time: 2025-12-19 04:39:52. Total running time: 1min 0s
Logical resource usage: 16.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   RUNNING         1     32   0.000312566              2                                                    │
│ train_cifar_9e993_00001   RUNNING         1      1   0.00961876               2                                                    │
│ train_cifar_9e993_00002   RUNNING       256      1   0.00159395              16        2            49.3304   1.95249       0.1808 │
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        1            40.6608   1.66926       0.3951 │
│ train_cifar_9e993_00004   RUNNING        32    256   0.00542678               2                                                    │
│ train_cifar_9e993_00005   RUNNING         1    256   0.0588521                4                                                    │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4                                                    │
│ train_cifar_9e993_00008   RUNNING         1      8   0.00017559               8                                                    │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00009   PENDING        16    128   0.000435099              2                                                    │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3986) [3,  2000] loss: 1.909 [repeated 6x across cluster]

Trial train_cifar_9e993_00005 finished iteration 1 at 2025-12-19 04:40:08. Total running time: 1min 15s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00005 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  71.06631 │
│ time_total_s                                      71.06631 │
│ training_iteration                                       1 │
│ accuracy                                            0.0996 │
│ loss                                               2.33018 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00005 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00005_5_batch_size=4,l1=1,l2=256,lr=0.0589_2025-12-19_04-38-52/checkpoint_000000

Trial train_cifar_9e993_00005 completed after 1 iterations at 2025-12-19 04:40:08. Total running time: 1min 15s

Trial train_cifar_9e993_00009 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 config             │
├──────────────────────────────────────────────────┤
│ batch_size                                     2 │
│ l1                                            16 │
│ l2                                           128 │
│ lr                                       0.00044 │
╰──────────────────────────────────────────────────╯
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00005_5_batch_size=4,l1=1,l2=256,lr=0.0589_2025-12-19_04-38-52/checkpoint_000000)

Trial train_cifar_9e993_00002 finished iteration 3 at 2025-12-19 04:40:10. Total running time: 1min 17s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000002 │
│ time_this_iter_s                                  23.93753 │
│ time_total_s                                      73.26791 │
│ training_iteration                                       3 │
│ accuracy                                            0.2238 │
│ loss                                                1.8988 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 3 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000002

Trial train_cifar_9e993_00006 finished iteration 1 at 2025-12-19 04:40:11. Total running time: 1min 18s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  74.38617 │
│ time_total_s                                      74.38617 │
│ training_iteration                                       1 │
│ accuracy                                            0.4524 │
│ loss                                                1.4909 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000000
(func pid=3984) [1, 14000] loss: 0.278 [repeated 6x across cluster]
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000001) [repeated 3x across cluster]

Trial train_cifar_9e993_00003 finished iteration 2 at 2025-12-19 04:40:17. Total running time: 1min 25s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000001 │
│ time_this_iter_s                                  40.09624 │
│ time_total_s                                      80.75701 │
│ training_iteration                                       2 │
│ accuracy                                            0.4009 │
│ loss                                               1.74102 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000001

Trial train_cifar_9e993_00008 finished iteration 1 at 2025-12-19 04:40:17. Total running time: 1min 25s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00008 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                  39.28129 │
│ time_total_s                                      39.28129 │
│ training_iteration                                       1 │
│ accuracy                                            0.1682 │
│ loss                                               2.17019 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00008 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00008_8_batch_size=8,l1=1,l2=8,lr=0.0002_2025-12-19_04-38-52/checkpoint_000000

Trial train_cifar_9e993_00008 completed after 1 iterations at 2025-12-19 04:40:17. Total running time: 1min 25s
(func pid=3989) [1,  2000] loss: 2.302 [repeated 3x across cluster]

Trial status: 7 RUNNING | 3 TERMINATED
Current time: 2025-12-19 04:40:22. Total running time: 1min 30s
Logical resource usage: 14.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   RUNNING         1     32   0.000312566              2                                                    │
│ train_cifar_9e993_00001   RUNNING         1      1   0.00961876               2                                                    │
│ train_cifar_9e993_00002   RUNNING       256      1   0.00159395              16        3            73.2679   1.8988        0.2238 │
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        2            80.757    1.74102       0.4009 │
│ train_cifar_9e993_00004   RUNNING        32    256   0.00542678               2                                                    │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        1            74.3862   1.4909        0.4524 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2                                                    │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [1,  4000] loss: 1.077 [repeated 6x across cluster]

Trial train_cifar_9e993_00002 finished iteration 4 at 2025-12-19 04:40:30. Total running time: 1min 38s
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000003) [repeated 2x across cluster]
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000003 │
│ time_this_iter_s                                  20.74074 │
│ time_total_s                                      94.00865 │
│ training_iteration                                       4 │
│ accuracy                                            0.2236 │
│ loss                                               1.86231 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 4 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000003
(func pid=3989) [1,  6000] loss: 0.646 [repeated 6x across cluster]
(func pid=3990) [2,  6000] loss: 0.477 [repeated 5x across cluster]

Trial train_cifar_9e993_00002 finished iteration 5 at 2025-12-19 04:40:50. Total running time: 1min 57s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000004 │
│ time_this_iter_s                                  19.27174 │
│ time_total_s                                      113.2804 │
│ training_iteration                                       5 │
│ accuracy                                             0.244 │
│ loss                                               1.88902 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 5 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000004
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000004)

Trial train_cifar_9e993_00003 finished iteration 3 at 2025-12-19 04:40:50. Total running time: 1min 58s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000002 │
│ time_this_iter_s                                  33.41619 │
│ time_total_s                                      114.1732 │
│ training_iteration                                       3 │
│ accuracy                                             0.429 │
│ loss                                               1.62127 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 3 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000002
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000002)

Trial status: 7 RUNNING | 3 TERMINATED
Current time: 2025-12-19 04:40:52. Total running time: 2min 0s
Logical resource usage: 14.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   RUNNING         1     32   0.000312566              2                                                    │
│ train_cifar_9e993_00001   RUNNING         1      1   0.00961876               2                                                    │
│ train_cifar_9e993_00002   RUNNING       256      1   0.00159395              16        5           113.28     1.88902       0.244  │
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        3           114.173    1.62127       0.429  │
│ train_cifar_9e993_00004   RUNNING        32    256   0.00542678               2                                                    │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        1            74.3862   1.4909        0.4524 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2                                                    │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3990) [2,  8000] loss: 0.346 [repeated 3x across cluster]

Trial train_cifar_9e993_00000 finished iteration 1 at 2025-12-19 04:40:57. Total running time: 2min 5s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00000 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                 120.75892 │
│ time_total_s                                     120.75892 │
│ training_iteration                                       1 │
│ accuracy                                            0.2002 │
│ loss                                                1.9156 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00000 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00000_0_batch_size=2,l1=1,l2=32,lr=0.0003_2025-12-19_04-38-52/checkpoint_000000
(func pid=3984) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00000_0_batch_size=2,l1=1,l2=32,lr=0.0003_2025-12-19_04-38-52/checkpoint_000000)

Trial train_cifar_9e993_00001 finished iteration 1 at 2025-12-19 04:40:58. Total running time: 2min 5s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00001 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                 121.12928 │
│ time_total_s                                     121.12928 │
│ training_iteration                                       1 │
│ accuracy                                            0.0997 │
│ loss                                               2.31482 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00001 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00001_1_batch_size=2,l1=1,l2=1,lr=0.0096_2025-12-19_04-38-52/checkpoint_000000

Trial train_cifar_9e993_00001 completed after 1 iterations at 2025-12-19 04:40:58. Total running time: 2min 5s
(func pid=3985) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00001_1_batch_size=2,l1=1,l2=1,lr=0.0096_2025-12-19_04-38-52/checkpoint_000000)

Trial train_cifar_9e993_00004 finished iteration 1 at 2025-12-19 04:41:00. Total running time: 2min 8s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00004 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                 123.50973 │
│ time_total_s                                     123.50973 │
│ training_iteration                                       1 │
│ accuracy                                            0.2054 │
│ loss                                                2.0476 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00004 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00004_4_batch_size=2,l1=32,l2=256,lr=0.0054_2025-12-19_04-38-52/checkpoint_000000
(func pid=3987) [4,  2000] loss: 1.646 [repeated 2x across cluster]

Trial train_cifar_9e993_00002 finished iteration 6 at 2025-12-19 04:41:08. Total running time: 2min 16s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000005 │
│ time_this_iter_s                                  18.41162 │
│ time_total_s                                     131.69202 │
│ training_iteration                                       6 │
│ accuracy                                            0.2622 │
│ loss                                                 1.826 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 6 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000005
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000005) [repeated 2x across cluster]
(func pid=3988) [2,  2000] loss: 2.020 [repeated 5x across cluster]

Trial train_cifar_9e993_00006 finished iteration 2 at 2025-12-19 04:41:11. Total running time: 2min 19s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000001 │
│ time_this_iter_s                                  60.55236 │
│ time_total_s                                     134.93853 │
│ training_iteration                                       2 │
│ accuracy                                            0.4904 │
│ loss                                               1.41212 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000001
(func pid=3984) [2,  4000] loss: 0.950 [repeated 3x across cluster]
(func pid=3986) [7,  2000] loss: 1.811 [repeated 3x across cluster]

Trial train_cifar_9e993_00003 finished iteration 4 at 2025-12-19 04:41:21. Total running time: 2min 29s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000003 │
│ time_this_iter_s                                  30.44043 │
│ time_total_s                                     144.61363 │
│ training_iteration                                       4 │
│ accuracy                                            0.3795 │
│ loss                                               1.71608 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 4 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000003
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000003) [repeated 2x across cluster]

Trial status: 6 RUNNING | 4 TERMINATED
Current time: 2025-12-19 04:41:22. Total running time: 2min 30s
Logical resource usage: 12.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   RUNNING         1     32   0.000312566              2        1           120.759    1.9156        0.2002 │
│ train_cifar_9e993_00002   RUNNING       256      1   0.00159395              16        6           131.692    1.826         0.2622 │
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        4           144.614    1.71608       0.3795 │
│ train_cifar_9e993_00004   RUNNING        32    256   0.00542678               2        1           123.51     2.0476        0.2054 │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        2           134.939    1.41212       0.4904 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2                                                    │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_9e993_00002 finished iteration 7 at 2025-12-19 04:41:26. Total running time: 2min 33s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000006 │
│ time_this_iter_s                                  17.53402 │
│ time_total_s                                     149.22604 │
│ training_iteration                                       7 │
│ accuracy                                            0.2533 │
│ loss                                               1.84675 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 7 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000006
(func pid=3988) [2,  6000] loss: 0.720 [repeated 3x across cluster]
(func pid=3987) [5,  2000] loss: 1.651 [repeated 4x across cluster]
(func pid=3986) [8,  2000] loss: 1.789 [repeated 3x across cluster]
(func pid=3988) [2, 10000] loss: 0.406 [repeated 4x across cluster]

Trial train_cifar_9e993_00002 finished iteration 8 at 2025-12-19 04:41:43. Total running time: 2min 51s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000007 │
│ time_this_iter_s                                   17.4694 │
│ time_total_s                                     166.69544 │
│ training_iteration                                       8 │
│ accuracy                                            0.2651 │
│ loss                                               1.81349 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 8 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000007
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000007) [repeated 2x across cluster]
(func pid=3990) [3,  8000] loss: 0.322 [repeated 2x across cluster]

Trial train_cifar_9e993_00003 finished iteration 5 at 2025-12-19 04:41:50. Total running time: 2min 58s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000004 │
│ time_this_iter_s                                  29.26897 │
│ time_total_s                                      173.8826 │
│ training_iteration                                       5 │
│ accuracy                                            0.4146 │
│ loss                                                1.7208 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 5 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000004
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000004)

Trial train_cifar_9e993_00009 finished iteration 1 at 2025-12-19 04:41:52. Total running time: 2min 59s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000000 │
│ time_this_iter_s                                 104.02003 │
│ time_total_s                                     104.02003 │
│ training_iteration                                       1 │
│ accuracy                                             0.454 │
│ loss                                               1.49575 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000000
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000000)

Trial status: 6 RUNNING | 4 TERMINATED
Current time: 2025-12-19 04:41:52. Total running time: 3min 0s
Logical resource usage: 12.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   RUNNING         1     32   0.000312566              2        1           120.759    1.9156        0.2002 │
│ train_cifar_9e993_00002   RUNNING       256      1   0.00159395              16        8           166.695    1.81349       0.2651 │
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        5           173.883    1.7208        0.4146 │
│ train_cifar_9e993_00004   RUNNING        32    256   0.00542678               2        1           123.51     2.0476        0.2054 │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        2           134.939    1.41212       0.4904 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        1           104.02     1.49575       0.454  │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3984) [2, 14000] loss: 0.269 [repeated 2x across cluster]
(func pid=3987) [6,  2000] loss: 1.651 [repeated 4x across cluster]

Trial train_cifar_9e993_00002 finished iteration 9 at 2025-12-19 04:42:01. Total running time: 3min 8s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000008 │
│ time_this_iter_s                                  17.68484 │
│ time_total_s                                     184.38029 │
│ training_iteration                                       9 │
│ accuracy                                            0.3105 │
│ loss                                               1.76652 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 9 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000008
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000008)

Trial train_cifar_9e993_00006 finished iteration 3 at 2025-12-19 04:42:06. Total running time: 3min 14s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000002 │
│ time_this_iter_s                                   55.0872 │
│ time_total_s                                     190.02573 │
│ training_iteration                                       3 │
│ accuracy                                            0.5452 │
│ loss                                               1.30977 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 3 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000002
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000002)
(func pid=3988) [2, 16000] loss: 0.261 [repeated 3x across cluster]
(func pid=3986) [10,  2000] loss: 1.741 [repeated 4x across cluster]

Trial train_cifar_9e993_00002 finished iteration 10 at 2025-12-19 04:42:18. Total running time: 3min 26s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00002 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  17.40143 │
│ time_total_s                                     201.78171 │
│ training_iteration                                      10 │
│ accuracy                                            0.2945 │
│ loss                                               1.75909 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00002 saved a checkpoint for iteration 10 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000009

Trial train_cifar_9e993_00002 completed after 10 iterations at 2025-12-19 04:42:18. Total running time: 3min 26s
(func pid=3986) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00002_2_batch_size=16,l1=256,l2=1,lr=0.0016_2025-12-19_04-38-52/checkpoint_000009)
(func pid=3984) [2, 20000] loss: 0.186 [repeated 4x across cluster]

Trial train_cifar_9e993_00003 finished iteration 6 at 2025-12-19 04:42:19. Total running time: 3min 27s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000005 │
│ time_this_iter_s                                  28.83068 │
│ time_total_s                                     202.71328 │
│ training_iteration                                       6 │
│ accuracy                                            0.3698 │
│ loss                                               1.78236 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 6 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000005
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000005)

Trial status: 5 RUNNING | 5 TERMINATED
Current time: 2025-12-19 04:42:23. Total running time: 3min 30s
Logical resource usage: 10.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   RUNNING         1     32   0.000312566              2        1           120.759    1.9156        0.2002 │
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        6           202.713    1.78236       0.3698 │
│ train_cifar_9e993_00004   RUNNING        32    256   0.00542678               2        1           123.51     2.0476        0.2054 │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        3           190.026    1.30977       0.5452 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        1           104.02     1.49575       0.454  │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [2,  8000] loss: 0.349 [repeated 2x across cluster]

Trial train_cifar_9e993_00000 finished iteration 2 at 2025-12-19 04:42:32. Total running time: 3min 39s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00000 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000001 │
│ time_this_iter_s                                  94.22665 │
│ time_total_s                                     214.98558 │
│ training_iteration                                       2 │
│ accuracy                                            0.2099 │
│ loss                                               1.88962 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00000 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00000_0_batch_size=2,l1=1,l2=32,lr=0.0003_2025-12-19_04-38-52/checkpoint_000001

Trial train_cifar_9e993_00000 completed after 2 iterations at 2025-12-19 04:42:32. Total running time: 3min 39s
(func pid=3984) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00000_0_batch_size=2,l1=1,l2=32,lr=0.0003_2025-12-19_04-38-52/checkpoint_000001)
(func pid=3989) [2, 10000] loss: 0.277 [repeated 3x across cluster]

Trial train_cifar_9e993_00004 finished iteration 2 at 2025-12-19 04:42:36. Total running time: 3min 44s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00004 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000001 │
│ time_this_iter_s                                  95.79901 │
│ time_total_s                                     219.30873 │
│ training_iteration                                       2 │
│ accuracy                                            0.1904 │
│ loss                                                2.0473 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00004 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00004_4_batch_size=2,l1=32,l2=256,lr=0.0054_2025-12-19_04-38-52/checkpoint_000001

Trial train_cifar_9e993_00004 completed after 2 iterations at 2025-12-19 04:42:36. Total running time: 3min 44s
(func pid=3988) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00004_4_batch_size=2,l1=32,l2=256,lr=0.0054_2025-12-19_04-38-52/checkpoint_000001)
(func pid=3989) [2, 12000] loss: 0.230 [repeated 3x across cluster]

Trial train_cifar_9e993_00003 finished iteration 7 at 2025-12-19 04:42:44. Total running time: 3min 51s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000006 │
│ time_this_iter_s                                  24.61523 │
│ time_total_s                                     227.32851 │
│ training_iteration                                       7 │
│ accuracy                                            0.3594 │
│ loss                                                1.8181 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 7 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000006
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000006)
(func pid=3989) [2, 14000] loss: 0.192 [repeated 2x across cluster]
(func pid=3989) [2, 16000] loss: 0.171 [repeated 2x across cluster]

Trial status: 7 TERMINATED | 3 RUNNING
Current time: 2025-12-19 04:42:53. Total running time: 4min 0s
Logical resource usage: 6.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        7           227.329    1.8181        0.3594 │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        3           190.026    1.30977       0.5452 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        1           104.02     1.49575       0.454  │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_9e993_00006 finished iteration 4 at 2025-12-19 04:42:53. Total running time: 4min 0s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000003 │
│ time_this_iter_s                                  46.29544 │
│ time_total_s                                     236.32117 │
│ training_iteration                                       4 │
│ accuracy                                              0.57 │
│ loss                                               1.23509 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 4 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000003
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000003)
(func pid=3989) [2, 18000] loss: 0.149 [repeated 2x across cluster]
(func pid=3989) [2, 20000] loss: 0.134 [repeated 3x across cluster]

Trial train_cifar_9e993_00003 finished iteration 8 at 2025-12-19 04:43:05. Total running time: 4min 13s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000007 │
│ time_this_iter_s                                  21.73734 │
│ time_total_s                                     249.06585 │
│ training_iteration                                       8 │
│ accuracy                                            0.3795 │
│ loss                                               1.75564 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 8 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000007
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000007)
(func pid=3987) [9,  2000] loss: 1.726 [repeated 2x across cluster]

Trial train_cifar_9e993_00009 finished iteration 2 at 2025-12-19 04:43:13. Total running time: 4min 21s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000001 │
│ time_this_iter_s                                  81.85972 │
│ time_total_s                                     185.87975 │
│ training_iteration                                       2 │
│ accuracy                                            0.5302 │
│ loss                                               1.30025 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000001
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000001)
(func pid=3989) [3,  2000] loss: 1.281 [repeated 2x across cluster]

Trial status: 7 TERMINATED | 3 RUNNING
Current time: 2025-12-19 04:43:23. Total running time: 4min 30s
Logical resource usage: 6.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00003   RUNNING        64     32   0.0103228                8        8           249.066    1.75564       0.3795 │
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        4           236.321    1.23509       0.57   │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        2           185.88     1.30025       0.5302 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [3,  4000] loss: 0.647 [repeated 3x across cluster]

Trial train_cifar_9e993_00003 finished iteration 9 at 2025-12-19 04:43:27. Total running time: 4min 34s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000008 │
│ time_this_iter_s                                  21.44706 │
│ time_total_s                                     270.51292 │
│ training_iteration                                       9 │
│ accuracy                                            0.4042 │
│ loss                                               1.69805 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 9 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000008
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000008)
(func pid=3989) [3,  6000] loss: 0.434 [repeated 2x across cluster]

Trial train_cifar_9e993_00006 finished iteration 5 at 2025-12-19 04:43:33. Total running time: 4min 41s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000004 │
│ time_this_iter_s                                  40.51622 │
│ time_total_s                                     276.83739 │
│ training_iteration                                       5 │
│ accuracy                                            0.5518 │
│ loss                                               1.30037 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 5 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000004
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000004)
(func pid=3989) [3,  8000] loss: 0.321 [repeated 2x across cluster]
(func pid=3989) [3, 10000] loss: 0.256 [repeated 3x across cluster]

Trial train_cifar_9e993_00003 finished iteration 10 at 2025-12-19 04:43:48. Total running time: 4min 56s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00003 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  21.25034 │
│ time_total_s                                     291.76326 │
│ training_iteration                                      10 │
│ accuracy                                            0.3357 │
│ loss                                               1.85956 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00003 saved a checkpoint for iteration 10 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000009

Trial train_cifar_9e993_00003 completed after 10 iterations at 2025-12-19 04:43:48. Total running time: 4min 56s
(func pid=3987) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00003_3_batch_size=8,l1=64,l2=32,lr=0.0103_2025-12-19_04-38-52/checkpoint_000009)
(func pid=3989) [3, 12000] loss: 0.216 [repeated 2x across cluster]

Trial status: 8 TERMINATED | 2 RUNNING
Current time: 2025-12-19 04:43:53. Total running time: 5min 0s
Logical resource usage: 4.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        5           276.837    1.30037       0.5518 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        2           185.88     1.30025       0.5302 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [3, 14000] loss: 0.181 [repeated 2x across cluster]
(func pid=3989) [3, 16000] loss: 0.155 [repeated 2x across cluster]
(func pid=3989) [3, 18000] loss: 0.140 [repeated 2x across cluster]

Trial train_cifar_9e993_00006 finished iteration 6 at 2025-12-19 04:44:09. Total running time: 5min 17s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000005 │
│ time_this_iter_s                                   36.0634 │
│ time_total_s                                     312.90079 │
│ training_iteration                                       6 │
│ accuracy                                             0.582 │
│ loss                                               1.24977 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 6 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000005
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000005)
(func pid=3989) [3, 20000] loss: 0.126
(func pid=3990) [7,  2000] loss: 1.003

Trial train_cifar_9e993_00009 finished iteration 3 at 2025-12-19 04:44:22. Total running time: 5min 30s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000002 │
│ time_this_iter_s                                  68.80731 │
│ time_total_s                                     254.68706 │
│ training_iteration                                       3 │
│ accuracy                                            0.5413 │
│ loss                                               1.28965 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 3 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000002
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000002)
(func pid=3990) [7,  4000] loss: 0.518

Trial status: 8 TERMINATED | 2 RUNNING
Current time: 2025-12-19 04:44:23. Total running time: 5min 30s
Logical resource usage: 4.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        6           312.901    1.24977       0.582  │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        3           254.687    1.28965       0.5413 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [4,  2000] loss: 1.229
(func pid=3989) [4,  4000] loss: 0.607 [repeated 2x across cluster]
(func pid=3989) [4,  6000] loss: 0.404 [repeated 2x across cluster]
(func pid=3989) [4,  8000] loss: 0.312 [repeated 2x across cluster]

Trial train_cifar_9e993_00006 finished iteration 7 at 2025-12-19 04:44:47. Total running time: 5min 54s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000006 │
│ time_this_iter_s                                  37.58823 │
│ time_total_s                                     350.48902 │
│ training_iteration                                       7 │
│ accuracy                                            0.5838 │
│ loss                                               1.24842 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 7 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000006
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000006)
(func pid=3989) [4, 10000] loss: 0.239

Trial status: 8 TERMINATED | 2 RUNNING
Current time: 2025-12-19 04:44:53. Total running time: 6min 0s
Logical resource usage: 4.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        7           350.489    1.24842       0.5838 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        3           254.687    1.28965       0.5413 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3990) [8,  2000] loss: 0.975
(func pid=3990) [8,  4000] loss: 0.504 [repeated 2x across cluster]
(func pid=3990) [8,  6000] loss: 0.341 [repeated 2x across cluster]
(func pid=3990) [8,  8000] loss: 0.259 [repeated 2x across cluster]
(func pid=3989) [4, 20000] loss: 0.121 [repeated 2x across cluster]

Trial train_cifar_9e993_00006 finished iteration 8 at 2025-12-19 04:45:23. Total running time: 6min 30s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000007 │
│ time_this_iter_s                                  35.70686 │
│ time_total_s                                     386.19587 │
│ training_iteration                                       8 │
│ accuracy                                            0.6039 │
│ loss                                               1.22709 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 8 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000007
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000007)

Trial status: 8 TERMINATED | 2 RUNNING
Current time: 2025-12-19 04:45:23. Total running time: 6min 31s
Logical resource usage: 4.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        8           386.196    1.22709       0.6039 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        3           254.687    1.28965       0.5413 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_9e993_00009 finished iteration 4 at 2025-12-19 04:45:26. Total running time: 6min 34s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000003 │
│ time_this_iter_s                                  63.67145 │
│ time_total_s                                     318.35851 │
│ training_iteration                                       4 │
│ accuracy                                            0.5818 │
│ loss                                               1.18669 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 4 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000003
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000003)
(func pid=3990) [9,  2000] loss: 0.956 [repeated 2x across cluster]
(func pid=3990) [9,  4000] loss: 0.485 [repeated 2x across cluster]
(func pid=3990) [9,  6000] loss: 0.331 [repeated 2x across cluster]
(func pid=3990) [9,  8000] loss: 0.250 [repeated 2x across cluster]

Trial status: 8 TERMINATED | 2 RUNNING
Current time: 2025-12-19 04:45:53. Total running time: 7min 1s
Logical resource usage: 4.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        8           386.196    1.22709       0.6039 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        4           318.359    1.18669       0.5818 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [5, 10000] loss: 0.233 [repeated 2x across cluster]

Trial train_cifar_9e993_00006 finished iteration 9 at 2025-12-19 04:46:00. Total running time: 7min 8s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000008 │
│ time_this_iter_s                                  37.70655 │
│ time_total_s                                     423.90242 │
│ training_iteration                                       9 │
│ accuracy                                            0.5831 │
│ loss                                               1.26965 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 9 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000008
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000008)
(func pid=3989) [5, 12000] loss: 0.196 [repeated 2x across cluster]
(func pid=3989) [5, 14000] loss: 0.167
(func pid=3990) [10,  2000] loss: 0.901
(func pid=3990) [10,  4000] loss: 0.476 [repeated 2x across cluster]
(func pid=3990) [10,  6000] loss: 0.324 [repeated 2x across cluster]

Trial status: 8 TERMINATED | 2 RUNNING
Current time: 2025-12-19 04:46:23. Total running time: 7min 31s
Logical resource usage: 4.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00006   RUNNING       256     16   0.00228044               4        9           423.902    1.26965       0.5831 │
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        4           318.359    1.18669       0.5818 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3990) [10,  8000] loss: 0.237 [repeated 2x across cluster]

Trial train_cifar_9e993_00009 finished iteration 5 at 2025-12-19 04:46:32. Total running time: 7min 40s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000004 │
│ time_this_iter_s                                  66.54257 │
│ time_total_s                                     384.90108 │
│ training_iteration                                       5 │
│ accuracy                                            0.5734 │
│ loss                                               1.19864 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 5 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000004
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000004)
(func pid=3990) [10, 10000] loss: 0.202
(func pid=3989) [6,  2000] loss: 1.107

Trial train_cifar_9e993_00006 finished iteration 10 at 2025-12-19 04:46:38. Total running time: 7min 46s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00006 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  38.14108 │
│ time_total_s                                      462.0435 │
│ training_iteration                                      10 │
│ accuracy                                            0.5936 │
│ loss                                               1.26557 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00006 saved a checkpoint for iteration 10 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000009

Trial train_cifar_9e993_00006 completed after 10 iterations at 2025-12-19 04:46:38. Total running time: 7min 46s
(func pid=3990) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00006_6_batch_size=4,l1=256,l2=16,lr=0.0023_2025-12-19_04-38-52/checkpoint_000009)
(func pid=3989) [6,  4000] loss: 0.576
(func pid=3989) [6,  6000] loss: 0.376

Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:46:53. Total running time: 8min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        5           384.901    1.19864       0.5734 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [6,  8000] loss: 0.280
(func pid=3989) [6, 10000] loss: 0.230
(func pid=3989) [6, 12000] loss: 0.187
(func pid=3989) [6, 14000] loss: 0.161
(func pid=3989) [6, 16000] loss: 0.143
(func pid=3989) [6, 18000] loss: 0.127
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:47:23. Total running time: 8min 31s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        5           384.901    1.19864       0.5734 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [6, 20000] loss: 0.114

Trial train_cifar_9e993_00009 finished iteration 6 at 2025-12-19 04:47:33. Total running time: 8min 40s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000005 │
│ time_this_iter_s                                  60.09759 │
│ time_total_s                                     444.99867 │
│ training_iteration                                       6 │
│ accuracy                                             0.566 │
│ loss                                               1.24892 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 6 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000005
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000005)
(func pid=3989) [7,  2000] loss: 1.082
(func pid=3989) [7,  4000] loss: 0.540
(func pid=3989) [7,  6000] loss: 0.371
(func pid=3989) [7,  8000] loss: 0.284

Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:47:53. Total running time: 9min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        6           444.999    1.24892       0.566  │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [7, 10000] loss: 0.220
(func pid=3989) [7, 12000] loss: 0.182
(func pid=3989) [7, 14000] loss: 0.159
(func pid=3989) [7, 16000] loss: 0.142
(func pid=3989) [7, 18000] loss: 0.125
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:48:23. Total running time: 9min 31s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        6           444.999    1.24892       0.566  │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [7, 20000] loss: 0.112

Trial train_cifar_9e993_00009 finished iteration 7 at 2025-12-19 04:48:32. Total running time: 9min 39s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000006 │
│ time_this_iter_s                                  58.96933 │
│ time_total_s                                     503.96801 │
│ training_iteration                                       7 │
│ accuracy                                            0.5953 │
│ loss                                               1.14212 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 7 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000006
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000006)
(func pid=3989) [8,  2000] loss: 1.083
(func pid=3989) [8,  4000] loss: 0.544
(func pid=3989) [8,  6000] loss: 0.357
(func pid=3989) [8,  8000] loss: 0.277

Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:48:53. Total running time: 10min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        7           503.968    1.14212       0.5953 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [8, 10000] loss: 0.222
(func pid=3989) [8, 12000] loss: 0.181
(func pid=3989) [8, 14000] loss: 0.157
(func pid=3989) [8, 16000] loss: 0.138
(func pid=3989) [8, 18000] loss: 0.120
(func pid=3989) [8, 20000] loss: 0.109
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:49:23. Total running time: 10min 31s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        7           503.968    1.14212       0.5953 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_9e993_00009 finished iteration 8 at 2025-12-19 04:49:30. Total running time: 10min 38s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000007 │
│ time_this_iter_s                                  58.80397 │
│ time_total_s                                     562.77198 │
│ training_iteration                                       8 │
│ accuracy                                            0.6053 │
│ loss                                               1.12796 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 8 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000007
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000007)
(func pid=3989) [9,  2000] loss: 1.054
(func pid=3989) [9,  4000] loss: 0.523
(func pid=3989) [9,  6000] loss: 0.357
(func pid=3989) [9,  8000] loss: 0.270

Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:49:53. Total running time: 11min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        8           562.772    1.12796       0.6053 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [9, 10000] loss: 0.215
(func pid=3989) [9, 12000] loss: 0.182
(func pid=3989) [9, 14000] loss: 0.155
(func pid=3989) [9, 16000] loss: 0.136
(func pid=3989) [9, 18000] loss: 0.118
(func pid=3989) [9, 20000] loss: 0.108
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:50:23. Total running time: 11min 31s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        8           562.772    1.12796       0.6053 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_9e993_00009 finished iteration 9 at 2025-12-19 04:50:29. Total running time: 11min 37s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000008 │
│ time_this_iter_s                                  58.65188 │
│ time_total_s                                     621.42385 │
│ training_iteration                                       9 │
│ accuracy                                            0.5941 │
│ loss                                               1.17816 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 9 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000008
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000008)
(func pid=3989) [10,  2000] loss: 1.048
(func pid=3989) [10,  4000] loss: 0.515
(func pid=3989) [10,  6000] loss: 0.347
(func pid=3989) [10,  8000] loss: 0.261

Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:50:53. Total running time: 12min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        9           621.424    1.17816       0.5941 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=3989) [10, 10000] loss: 0.212
(func pid=3989) [10, 12000] loss: 0.182
(func pid=3989) [10, 14000] loss: 0.152
(func pid=3989) [10, 16000] loss: 0.135
(func pid=3989) [10, 18000] loss: 0.121
(func pid=3989) [10, 20000] loss: 0.108
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2025-12-19 04:51:23. Total running time: 12min 31s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00009   RUNNING        16    128   0.000435099              2        9           621.424    1.17816       0.5941 │
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Trial train_cifar_9e993_00009 finished iteration 10 at 2025-12-19 04:51:28. Total running time: 12min 35s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_9e993_00009 result                       │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name                      checkpoint_000009 │
│ time_this_iter_s                                  58.62364 │
│ time_total_s                                      680.0475 │
│ training_iteration                                      10 │
│ accuracy                                             0.603 │
│ loss                                               1.13935 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_9e993_00009 saved a checkpoint for iteration 10 at: (local)/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000009

Trial train_cifar_9e993_00009 completed after 10 iterations at 2025-12-19 04:51:28. Total running time: 12min 35s

Trial status: 10 TERMINATED
Current time: 2025-12-19 04:51:28. Total running time: 12min 35s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name                status         l1     l2            lr     batch_size     iter     total time (s)      loss     accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_9e993_00000   TERMINATED      1     32   0.000312566              2        2           214.986    1.88962       0.2099 │
│ train_cifar_9e993_00001   TERMINATED      1      1   0.00961876               2        1           121.129    2.31482       0.0997 │
│ train_cifar_9e993_00002   TERMINATED    256      1   0.00159395              16       10           201.782    1.75909       0.2945 │
│ train_cifar_9e993_00003   TERMINATED     64     32   0.0103228                8       10           291.763    1.85956       0.3357 │
│ train_cifar_9e993_00004   TERMINATED     32    256   0.00542678               2        2           219.309    2.0473        0.1904 │
│ train_cifar_9e993_00005   TERMINATED      1    256   0.0588521                4        1            71.0663   2.33018       0.0996 │
│ train_cifar_9e993_00006   TERMINATED    256     16   0.00228044               4       10           462.044    1.26557       0.5936 │
│ train_cifar_9e993_00007   TERMINATED     64      4   0.00370681               8        1            41.5303   2.30393       0.0981 │
│ train_cifar_9e993_00008   TERMINATED      1      8   0.00017559               8        1            39.2813   2.17019       0.1682 │
│ train_cifar_9e993_00009   TERMINATED     16    128   0.000435099              2       10           680.047    1.13935       0.603  │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Best trial config: {'l1': 16, 'l2': 128, 'lr': 0.00043509915817263985, 'batch_size': 2}
Best trial final validation loss: 1.1393494181692834
Best trial final validation accuracy: 0.603
(func pid=3989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2025-12-19_04-38-52/train_cifar_9e993_00009_9_batch_size=2,l1=16,l2=128,lr=0.0004_2025-12-19_04-38-52/checkpoint_000009)
Best trial test set accuracy: 0.6129

If you run the code, an example output could look like this:

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 have been stopped early in order to avoid wasting resources. The best performing trial achieved a validation accuracy of about 47%, which could be confirmed on the test set.

So that’s it! You can now tune the parameters of your PyTorch models.

Total running time of the script: (12 minutes 51.454 seconds)