Note
Go to the end to download the full example code.
Hyperparameter tuning using Ray Tune#
Created On: Aug 31, 2020 | Last Updated: Jan 08, 2026 | Last Verified: Nov 05, 2024
Author: Ricardo Decal
This tutorial shows how to integrate Ray Tune into your PyTorch training workflow to perform scalable and efficient hyperparameter tuning.
How to modify a PyTorch training loop for Ray Tune
How to scale a hyperparameter sweep to multiple nodes and GPUs without code changes
How to define a hyperparameter search space and run a sweep with
tune.TunerHow to use an early-stopping scheduler (ASHA) and report metrics/checkpoints
How to use checkpointing to resume training and load the best model
PyTorch v2.9+ and
torchvisionRay Tune (
ray[tune]) v2.52.1+GPU(s) are optional, but recommended for faster training
Ray, a project of the PyTorch Foundation, is an open source unified framework for scaling AI and Python applications. It helps run distributed jobs by handling the complexity of distributed computing. Ray Tune is a library built on Ray for hyperparameter tuning that enables you to scale a hyperparameter sweep from your machine to a large cluster with no code changes.
This tutorial adapts the PyTorch tutorial for training a CIFAR10 classifier to run multi-GPU hyperparameter sweeps with Ray Tune.
Setup#
To run this tutorial, install the following dependencies:
pip install "ray[tune]" torchvision
Then start with the imports:
from functools import partial
import os
import tempfile
from pathlib import Path
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torch.utils.data import random_split
import torchvision
import torchvision.transforms as transforms
# New: imports for Ray Tune
import ray
from ray import tune
from ray.tune import Checkpoint
from ray.tune.schedulers import ASHAScheduler
Data loading#
Wrap the data loaders in a constructor function. In this tutorial, a global data directory is passed to the function to enable reusing the dataset across different trials. In a cluster environment, you can use shared storage, such as network file systems, to prevent each node from downloading the data separately.
def load_data(data_dir="./data"):
# Mean and standard deviation of the CIFAR10 training subset.
transform = transforms.Compose(
[transforms.ToTensor(), transforms.Normalize((0.4914, 0.48216, 0.44653), (0.2022, 0.19932, 0.20086))]
)
trainset = torchvision.datasets.CIFAR10(
root=data_dir, train=True, download=True, transform=transform
)
testset = torchvision.datasets.CIFAR10(
root=data_dir, train=False, download=True, transform=transform
)
return trainset, testset
Model architecture#
This tutorial searches for the best sizes for the fully connected layers
and the learning rate. To enable this, the Net class exposes the
layer sizes l1 and l2 as configurable parameters that Ray Tune
can search over:
class Net(nn.Module):
def __init__(self, l1=120, l2=84):
super().__init__()
self.conv1 = nn.Conv2d(3, 6, 5)
self.pool = nn.MaxPool2d(2, 2)
self.conv2 = nn.Conv2d(6, 16, 5)
self.fc1 = nn.Linear(16 * 5 * 5, l1)
self.fc2 = nn.Linear(l1, l2)
self.fc3 = nn.Linear(l2, 10)
def forward(self, x):
x = self.pool(F.relu(self.conv1(x)))
x = self.pool(F.relu(self.conv2(x)))
x = torch.flatten(x, 1) # flatten all dimensions except batch
x = F.relu(self.fc1(x))
x = F.relu(self.fc2(x))
x = self.fc3(x)
return x
Define the search space#
Next, define the hyperparameters to tune and how Ray Tune samples them.
Ray Tune offers a variety of search space
distributions
to suit different parameter types: loguniform, uniform,
choice, randint, grid, and more. You can also express
complex dependencies between parameters with conditional search
spaces
or sample from arbitrary functions.
Here is the search space for this tutorial:
config = {
"l1": tune.choice([2**i for i in range(9)]),
"l2": tune.choice([2**i for i in range(9)]),
"lr": tune.loguniform(1e-4, 1e-1),
"batch_size": tune.choice([2, 4, 8, 16]),
}
The tune.choice() accepts a list of values that are uniformly
sampled from. In this example, the l1 and l2 parameter values
are powers of 2 between 1 and 256, and the learning rate samples on a
log scale between 0.0001 and 0.1. Sampling on a log scale enables
exploration across a range of magnitudes on a relative scale, rather
than an absolute scale.
Training function#
Ray Tune requires a training function that accepts a configuration dictionary and runs the main training loop. As Ray Tune runs different trials, it updates the configuration dictionary for each trial.
Here is the full training function, followed by explanations of the key Ray Tune integration points:
def train_cifar(config, data_dir=None):
net = Net(config["l1"], config["l2"])
device = config["device"]
net = net.to(device)
if torch.cuda.device_count() > 1:
net = nn.DataParallel(net)
criterion = nn.CrossEntropyLoss()
optimizer = optim.SGD(net.parameters(), lr=config["lr"], momentum=0.9)
# Load checkpoint if resuming training
checkpoint = tune.get_checkpoint()
if checkpoint:
with checkpoint.as_directory() as checkpoint_dir:
checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
checkpoint_state = torch.load(checkpoint_path)
start_epoch = checkpoint_state["epoch"]
net.load_state_dict(checkpoint_state["net_state_dict"])
optimizer.load_state_dict(checkpoint_state["optimizer_state_dict"])
else:
start_epoch = 0
trainset, _testset = load_data(data_dir)
test_abs = int(len(trainset) * 0.8)
train_subset, val_subset = random_split(
trainset, [test_abs, len(trainset) - test_abs]
)
trainloader = torch.utils.data.DataLoader(
train_subset, batch_size=int(config["batch_size"]), shuffle=True, num_workers=8
)
valloader = torch.utils.data.DataLoader(
val_subset, batch_size=int(config["batch_size"]), shuffle=True, num_workers=8
)
for epoch in range(start_epoch, 10): # loop over the dataset multiple times
running_loss = 0.0
epoch_steps = 0
for i, data in enumerate(trainloader, 0):
# get the inputs; data is a list of [inputs, labels]
inputs, labels = data
inputs, labels = inputs.to(device), labels.to(device)
# zero the parameter gradients
optimizer.zero_grad()
# forward + backward + optimize
outputs = net(inputs)
loss = criterion(outputs, labels)
loss.backward()
optimizer.step()
# print statistics
running_loss += loss.item()
epoch_steps += 1
if i % 2000 == 1999: # print every 2000 mini-batches
print(
"[%d, %5d] loss: %.3f"
% (epoch + 1, i + 1, running_loss / epoch_steps)
)
running_loss = 0.0
# Validation loss
val_loss = 0.0
val_steps = 0
total = 0
correct = 0
for i, data in enumerate(valloader, 0):
with torch.no_grad():
inputs, labels = data
inputs, labels = inputs.to(device), labels.to(device)
outputs = net(inputs)
_, predicted = torch.max(outputs.data, 1)
total += labels.size(0)
correct += (predicted == labels).sum().item()
loss = criterion(outputs, labels)
val_loss += loss.cpu().numpy()
val_steps += 1
# Save checkpoint and report metrics
checkpoint_data = {
"epoch": epoch,
"net_state_dict": net.state_dict(),
"optimizer_state_dict": optimizer.state_dict(),
}
with tempfile.TemporaryDirectory() as checkpoint_dir:
checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
torch.save(checkpoint_data, checkpoint_path)
checkpoint = Checkpoint.from_directory(checkpoint_dir)
tune.report(
{"loss": val_loss / val_steps, "accuracy": correct / total},
checkpoint=checkpoint,
)
print("Finished Training")
Key integration points#
Using hyperparameters from the configuration dictionary#
Ray Tune updates the config dictionary with the hyperparameters for
each trial. In this example, the model architecture and optimizer
receive the hyperparameters from the config dictionary:
Reporting metrics and saving checkpoints#
The most important integration is communicating with Ray Tune. Ray Tune uses the validation metrics to determine the best hyperparameter configuration and to stop underperforming trials early, saving resources.
Checkpointing enables you to later load the trained models, resume hyperparameter searches, and provides fault tolerance. It’s also required for some Ray Tune schedulers like Population Based Training that pause and resume trials during the search.
This code from the training function loads model and optimizer state at the start if a checkpoint exists:
checkpoint = tune.get_checkpoint()
if checkpoint:
with checkpoint.as_directory() as checkpoint_dir:
checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
checkpoint_state = torch.load(checkpoint_path)
start_epoch = checkpoint_state["epoch"]
net.load_state_dict(checkpoint_state["net_state_dict"])
optimizer.load_state_dict(checkpoint_state["optimizer_state_dict"])
At the end of each epoch, save a checkpoint and report the validation metrics:
checkpoint_data = {
"epoch": epoch,
"net_state_dict": net.state_dict(),
"optimizer_state_dict": optimizer.state_dict(),
}
with tempfile.TemporaryDirectory() as checkpoint_dir:
checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
torch.save(checkpoint_data, checkpoint_path)
checkpoint = Checkpoint.from_directory(checkpoint_dir)
tune.report(
{"loss": val_loss / val_steps, "accuracy": correct / total},
checkpoint=checkpoint,
)
Ray Tune checkpointing supports local file systems, cloud storage, and distributed file systems. For more information, see the Ray Tune storage documentation.
Multi-GPU support#
Image classification models can be greatly accelerated by using GPUs.
The training function supports multi-GPU training by wrapping the model
in nn.DataParallel:
if torch.cuda.device_count() > 1:
net = nn.DataParallel(net)
This training function supports training on CPUs, a single GPU, multiple GPUs, or multiple nodes without code changes. Ray Tune automatically distributes the trials across the nodes according to the available resources. Ray Tune also supports fractional GPUs so that one GPU can be shared among multiple trials, provided that the models, optimizers, and data batches fit into the GPU memory.
Validation split#
The original CIFAR10 dataset only has train and test subsets. This is sufficient for training a single model, however for hyperparameter tuning a validation subset is required. The training function creates a validation subset by reserving 20% of the training subset. The test subset is used to evaluate the best model’s generalization error after the search completes.
Evaluation function#
After finding the optimal hyperparameters, test the model on a held-out test set to estimate the generalization error:
def test_accuracy(net, device="cpu", data_dir=None):
_trainset, testset = load_data(data_dir)
testloader = torch.utils.data.DataLoader(
testset, batch_size=4, shuffle=False, num_workers=2
)
correct = 0
total = 0
with torch.no_grad():
for data in testloader:
image_batch, labels = data
image_batch, labels = image_batch.to(device), labels.to(device)
outputs = net(image_batch)
_, predicted = torch.max(outputs.data, 1)
total += labels.size(0)
correct += (predicted == labels).sum().item()
return correct / total
Configure and run Ray Tune#
With the training and evaluation functions defined, configure Ray Tune to run the hyperparameter search.
Scheduler for early stopping#
Ray Tune provides schedulers to improve the efficiency of the
hyperparameter search by detecting underperforming trials and stopping
them early. The ASHAScheduler uses the Asynchronous Successive
Halving Algorithm (ASHA) to aggressively terminate low-performing
trials:
scheduler = ASHAScheduler(
max_t=max_num_epochs,
grace_period=1,
reduction_factor=2,
)
Ray Tune also provides advanced search algorithms to smartly pick the next set of hyperparameters based on previous results, instead of relying only on random or grid search. Examples include Optuna and BayesOpt.
Resource allocation#
Tell Ray Tune what resources to allocate for each trial by passing a
resources dictionary to tune.with_resources:
tune.with_resources(
partial(train_cifar, data_dir=data_dir),
resources={"cpu": cpus_per_trial, "gpu": gpus_per_trial}
)
Ray Tune automatically manages the placement of these trials and ensures that the trials run in isolation, so you don’t need to manually assign GPUs to processes.
For example, if you are running this experiment on a cluster of 20
machines, each with 8 GPUs, you can set gpus_per_trial = 0.5 to
schedule two concurrent trials per GPU. This configuration runs 320
trials in parallel across the cluster.
Note
To run this tutorial without GPUs, set gpus_per_trial=0
and expect significantly longer runtimes.
To avoid long runtimes during development, start with a small number of trials and epochs.
Creating the Tuner#
The Ray Tune API is modular and composable. Pass your configuration to
the tune.Tuner class to create a tuner object, then run
tuner.fit() to start training:
tuner = tune.Tuner(
tune.with_resources(
partial(train_cifar, data_dir=data_dir),
resources={"cpu": cpus_per_trial, "gpu": gpus_per_trial}
),
tune_config=tune.TuneConfig(
metric="loss",
mode="min",
scheduler=scheduler,
num_samples=num_trials,
),
param_space=config,
)
results = tuner.fit()
After training completes, retrieve the best performing trial, load its checkpoint, and evaluate on the test set.
Putting it all together#
def main(num_trials=10, max_num_epochs=10, gpus_per_trial=0, cpus_per_trial=2):
print("Starting hyperparameter tuning.")
ray.init(include_dashboard=False)
data_dir = os.path.abspath("./data")
load_data(data_dir) # Pre-download the dataset
device = "cuda" if torch.cuda.is_available() else "cpu"
config = {
"l1": tune.choice([2**i for i in range(9)]),
"l2": tune.choice([2**i for i in range(9)]),
"lr": tune.loguniform(1e-4, 1e-1),
"batch_size": tune.choice([2, 4, 8, 16]),
"device": device,
}
scheduler = ASHAScheduler(
max_t=max_num_epochs,
grace_period=1,
reduction_factor=2,
)
tuner = tune.Tuner(
tune.with_resources(
partial(train_cifar, data_dir=data_dir),
resources={"cpu": cpus_per_trial, "gpu": gpus_per_trial}
),
tune_config=tune.TuneConfig(
metric="loss",
mode="min",
scheduler=scheduler,
num_samples=num_trials,
),
param_space=config,
)
results = tuner.fit()
best_result = results.get_best_result("loss", "min")
print(f"Best trial config: {best_result.config}")
print(f"Best trial final validation loss: {best_result.metrics['loss']}")
print(f"Best trial final validation accuracy: {best_result.metrics['accuracy']}")
best_trained_model = Net(best_result.config["l1"], best_result.config["l2"])
best_trained_model = best_trained_model.to(device)
if gpus_per_trial > 1:
best_trained_model = nn.DataParallel(best_trained_model)
best_checkpoint = best_result.checkpoint
with best_checkpoint.as_directory() as checkpoint_dir:
checkpoint_path = Path(checkpoint_dir) / "checkpoint.pt"
best_checkpoint_data = torch.load(checkpoint_path)
best_trained_model.load_state_dict(best_checkpoint_data["net_state_dict"])
test_acc = test_accuracy(best_trained_model, device, data_dir)
print(f"Best trial test set accuracy: {test_acc}")
if __name__ == "__main__":
# Set the number of trials, epochs, and GPUs per trial here:
main(num_trials=10, max_num_epochs=10, gpus_per_trial=1)
Starting hyperparameter tuning.
2026-04-23 17:55:46,019 WARNING services.py:2168 -- WARNING: The object store is using /tmp instead of /dev/shm because /dev/shm has only 2147471360 bytes available. This will harm performance! You may be able to free up space by deleting files in /dev/shm. If you are inside a Docker container, you can increase /dev/shm size by passing '--shm-size=10.24gb' to 'docker run' (or add it to the run_options list in a Ray cluster config). Make sure to set this to more than 30% of available RAM.
2026-04-23 17:55:47,187 INFO worker.py:2013 -- Started a local Ray instance.
/usr/local/lib/python3.10/dist-packages/ray/_private/worker.py:2052: FutureWarning: Tip: In future versions of Ray, Ray will no longer override accelerator visible devices env var if num_gpus=0 or num_gpus=None (default). To enable this behavior and turn off this error message, set RAY_ACCEL_ENV_VAR_OVERRIDE_ON_ZERO=0
warnings.warn(
0%| | 0.00/170M [00:00<?, ?B/s]
0%| | 459k/170M [00:00<00:38, 4.43MB/s]
5%|▍ | 7.77M/170M [00:00<00:03, 44.2MB/s]
10%|█ | 17.7M/170M [00:00<00:02, 69.0MB/s]
16%|█▌ | 27.0M/170M [00:00<00:01, 78.2MB/s]
21%|██▏ | 36.6M/170M [00:00<00:01, 84.8MB/s]
27%|██▋ | 45.8M/170M [00:00<00:01, 87.1MB/s]
33%|███▎ | 55.5M/170M [00:00<00:01, 90.2MB/s]
38%|███▊ | 64.8M/170M [00:00<00:01, 91.1MB/s]
44%|████▎ | 74.4M/170M [00:00<00:01, 92.5MB/s]
49%|████▉ | 83.9M/170M [00:01<00:00, 93.1MB/s]
55%|█████▍ | 93.5M/170M [00:01<00:00, 94.1MB/s]
61%|██████▏ | 104M/170M [00:01<00:00, 98.6MB/s]
68%|██████▊ | 115M/170M [00:01<00:00, 102MB/s]
74%|███████▎ | 126M/170M [00:01<00:00, 101MB/s]
80%|███████▉ | 136M/170M [00:01<00:00, 98.7MB/s]
85%|████████▌ | 146M/170M [00:01<00:00, 97.6MB/s]
91%|█████████ | 155M/170M [00:01<00:00, 97.4MB/s]
97%|█████████▋| 165M/170M [00:01<00:00, 96.1MB/s]
100%|██████████| 170M/170M [00:01<00:00, 90.5MB/s]
╭────────────────────────────────────────────────────────────────────╮
│ Configuration for experiment train_cifar_2026-04-23_17-55-52 │
├────────────────────────────────────────────────────────────────────┤
│ Search algorithm BasicVariantGenerator │
│ Scheduler AsyncHyperBandScheduler │
│ Number of trials 10 │
╰────────────────────────────────────────────────────────────────────╯
View detailed results here: /var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52
To visualize your results with TensorBoard, run: `tensorboard --logdir /tmp/ray/session_2026-04-23_17-55-44_367657_4336/artifacts/2026-04-23_17-55-52/train_cifar_2026-04-23_17-55-52/driver_artifacts`
Trial status: 10 PENDING
Current time: 2026-04-23 17:55:53. Total running time: 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
╭───────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size │
├───────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00000 PENDING 1 4 0.000303335 16 │
│ train_cifar_ab932_00001 PENDING 8 2 0.000765571 4 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰───────────────────────────────────────────────────────────────────────────────╯
Trial train_cifar_ab932_00000 started with configuration:
╭─────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00000 config │
├─────────────────────────────────────────────────┤
│ batch_size 16 │
│ device cuda │
│ l1 1 │
│ l2 4 │
│ lr 0.0003 │
╰─────────────────────────────────────────────────╯
(func pid=5501) [1, 2000] loss: 2.328
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000000)
(func pid=5501) [2, 2000] loss: 2.308
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000001)
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-04-23 17:56:23. Total running time: 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00000 with loss=2.303938460159302 and params={'l1': 1, 'l2': 4, 'lr': 0.00030333504683877196, 'batch_size': 16, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00000 RUNNING 1 4 0.000303335 16 2 20.7071 2.30394 0.0968 │
│ train_cifar_ab932_00001 PENDING 8 2 0.000765571 4 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5501) [3, 2000] loss: 2.304
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000002)
(func pid=5501) [4, 2000] loss: 2.303
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000003)
(func pid=5501) [5, 2000] loss: 2.302
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000004)
(func pid=5501) [6, 2000] loss: 2.274
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000005)
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-04-23 17:56:53. Total running time: 1min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00000 with loss=2.2110682819366456 and params={'l1': 1, 'l2': 4, 'lr': 0.00030333504683877196, 'batch_size': 16, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00000 RUNNING 1 4 0.000303335 16 6 55.2163 2.21107 0.1751 │
│ train_cifar_ab932_00001 PENDING 8 2 0.000765571 4 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5501) [7, 2000] loss: 2.144
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000006)
(func pid=5501) [8, 2000] loss: 2.032
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000007)
(func pid=5501) [9, 2000] loss: 1.979
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000008)
Trial status: 1 RUNNING | 9 PENDING
Current time: 2026-04-23 17:57:23. Total running time: 1min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00000 with loss=1.9620680004119873 and params={'l1': 1, 'l2': 4, 'lr': 0.00030333504683877196, 'batch_size': 16, 'device': 'cuda'}
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00000 RUNNING 1 4 0.000303335 16 9 81.3054 1.96207 0.2062 │
│ train_cifar_ab932_00001 PENDING 8 2 0.000765571 4 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=5501) [10, 2000] loss: 1.946
Trial train_cifar_ab932_00000 completed after 10 iterations at 2026-04-23 17:57:27. Total running time: 1min 34s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00000 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000009 │
│ time_this_iter_s 8.56442 │
│ time_total_s 89.86984 │
│ training_iteration 10 │
│ accuracy 0.2122 │
│ loss 1.92686 │
╰────────────────────────────────────────────────────────────╯
(func pid=5501) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00000_0_batch_size=16,l1=1,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000009)
Trial train_cifar_ab932_00001 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00001 config │
├──────────────────────────────────────────────────┤
│ batch_size 4 │
│ device cuda │
│ l1 8 │
│ l2 2 │
│ lr 0.00077 │
╰──────────────────────────────────────────────────╯
(func pid=6384) [1, 2000] loss: 2.332
(func pid=6384) [1, 4000] loss: 1.152
(func pid=6384) [1, 6000] loss: 0.763
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 17:57:53. Total running time: 2min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00000 with loss=1.9268629259109498 and params={'l1': 1, 'l2': 4, 'lr': 0.00030333504683877196, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [1, 8000] loss: 0.558
(func pid=6384) [1, 10000] loss: 0.427
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000000)
(func pid=6384) [2, 2000] loss: 2.015
(func pid=6384) [2, 4000] loss: 0.958
(func pid=6384) [2, 6000] loss: 0.625
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 17:58:23. Total running time: 2min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00000 with loss=1.9268629259109498 and params={'l1': 1, 'l2': 4, 'lr': 0.00030333504683877196, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 1 32.4506 2.05503 0.2103 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [2, 8000] loss: 0.450
(func pid=6384) [2, 10000] loss: 0.353
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000001)
(func pid=6384) [3, 2000] loss: 1.733
(func pid=6384) [3, 4000] loss: 0.855
(func pid=6384) [3, 6000] loss: 0.565
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 17:58:53. Total running time: 3min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.7367805882930756 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 2 63.5788 1.73678 0.3149 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [3, 8000] loss: 0.416
(func pid=6384) [3, 10000] loss: 0.336
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000002)
(func pid=6384) [4, 2000] loss: 1.654
(func pid=6384) [4, 4000] loss: 0.816
(func pid=6384) [4, 6000] loss: 0.545
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 17:59:23. Total running time: 3min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.6515856399297715 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 3 94.0949 1.65159 0.3446 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [4, 8000] loss: 0.411
(func pid=6384) [4, 10000] loss: 0.326
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000003)
(func pid=6384) [5, 2000] loss: 1.621
(func pid=6384) [5, 4000] loss: 0.803
(func pid=6384) [5, 6000] loss: 0.530
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 17:59:53. Total running time: 4min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.6112272020220757 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 4 124.445 1.61123 0.3656 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [5, 8000] loss: 0.401
(func pid=6384) [5, 10000] loss: 0.320
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000004)
(func pid=6384) [6, 2000] loss: 1.560
(func pid=6384) [6, 4000] loss: 0.793
(func pid=6384) [6, 6000] loss: 0.529
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 18:00:23. Total running time: 4min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5856756181120872 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 5 154.79 1.58568 0.371 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [6, 8000] loss: 0.394
(func pid=6384) [6, 10000] loss: 0.313
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000005)
(func pid=6384) [7, 2000] loss: 1.553
(func pid=6384) [7, 4000] loss: 0.774
(func pid=6384) [7, 6000] loss: 0.518
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 18:00:53. Total running time: 5min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5825607341527939 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 6 185.315 1.58256 0.384 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [7, 8000] loss: 0.390
(func pid=6384) [7, 10000] loss: 0.310
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000006)
(func pid=6384) [8, 2000] loss: 1.519
(func pid=6384) [8, 4000] loss: 0.778
(func pid=6384) [8, 6000] loss: 0.506
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 18:01:23. Total running time: 5min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5924488512396813 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 7 215.826 1.59245 0.4158 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [8, 8000] loss: 0.385
(func pid=6384) [8, 10000] loss: 0.304
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000007)
(func pid=6384) [9, 2000] loss: 1.507
(func pid=6384) [9, 4000] loss: 0.751
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 18:01:53. Total running time: 6min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.6000481449127197 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 8 246.813 1.60005 0.4113 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [9, 6000] loss: 0.512
(func pid=6384) [9, 8000] loss: 0.379
(func pid=6384) [9, 10000] loss: 0.306
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000008)
(func pid=6384) [10, 2000] loss: 1.489
(func pid=6384) [10, 4000] loss: 0.750
Trial status: 1 TERMINATED | 1 RUNNING | 8 PENDING
Current time: 2026-04-23 18:02:23. Total running time: 6min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5477300789833068 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00001 RUNNING 8 2 0.000765571 4 9 277.133 1.54773 0.4222 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00002 PENDING 32 4 0.000269594 4 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=6384) [10, 6000] loss: 0.497
(func pid=6384) [10, 8000] loss: 0.377
(func pid=6384) [10, 10000] loss: 0.303
Trial train_cifar_ab932_00001 completed after 10 iterations at 2026-04-23 18:02:40. Total running time: 6min 47s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00001 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000009 │
│ time_this_iter_s 31.55325 │
│ time_total_s 308.68589 │
│ training_iteration 10 │
│ accuracy 0.4253 │
│ loss 1.54277 │
╰────────────────────────────────────────────────────────────╯
(func pid=6384) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00001_1_batch_size=4,l1=8,l2=2,lr=0.0008_2026-04-23_17-55-53/checkpoint_000009)
Trial train_cifar_ab932_00002 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00002 config │
├──────────────────────────────────────────────────┤
│ batch_size 4 │
│ device cuda │
│ l1 32 │
│ l2 4 │
│ lr 0.00027 │
╰──────────────────────────────────────────────────╯
(func pid=7694) [1, 2000] loss: 2.336
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:02:53. Total running time: 7min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [1, 4000] loss: 1.137
(func pid=7694) [1, 6000] loss: 0.713
(func pid=7694) [1, 8000] loss: 0.516
(func pid=7694) [1, 10000] loss: 0.403
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000000)
(func pid=7694) [2, 2000] loss: 2.001
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:03:23. Total running time: 7min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 1 32.134 1.99154 0.1923 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [2, 4000] loss: 0.980
(func pid=7694) [2, 6000] loss: 0.651
(func pid=7694) [2, 8000] loss: 0.486
(func pid=7694) [2, 10000] loss: 0.384
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000001)
(func pid=7694) [3, 2000] loss: 1.909
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:03:53. Total running time: 8min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 2 62.8214 1.91254 0.202 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [3, 4000] loss: 0.957
(func pid=7694) [3, 6000] loss: 0.636
(func pid=7694) [3, 8000] loss: 0.475
(func pid=7694) [3, 10000] loss: 0.378
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000002)
(func pid=7694) [4, 2000] loss: 1.892
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:04:23. Total running time: 8min 30s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 3 93.0764 1.88282 0.2042 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [4, 4000] loss: 0.943
(func pid=7694) [4, 6000] loss: 0.630
(func pid=7694) [4, 8000] loss: 0.468
(func pid=7694) [4, 10000] loss: 0.373
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000003)
(func pid=7694) [5, 2000] loss: 1.878
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:04:53. Total running time: 9min 0s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 4 123.298 1.87284 0.205 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [5, 4000] loss: 0.936
(func pid=7694) [5, 6000] loss: 0.618
(func pid=7694) [5, 8000] loss: 0.467
(func pid=7694) [5, 10000] loss: 0.372
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000004)
(func pid=7694) [6, 2000] loss: 1.856
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:05:24. Total running time: 9min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 5 153.947 1.8609 0.1991 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [6, 4000] loss: 0.927
(func pid=7694) [6, 6000] loss: 0.619
(func pid=7694) [6, 8000] loss: 0.461
(func pid=7694) [6, 10000] loss: 0.368
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000005)
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:05:54. Total running time: 10min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 6 184.459 1.85343 0.2126 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [7, 2000] loss: 1.835
(func pid=7694) [7, 4000] loss: 0.919
(func pid=7694) [7, 6000] loss: 0.611
(func pid=7694) [7, 8000] loss: 0.460
(func pid=7694) [7, 10000] loss: 0.369
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000006)
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:06:24. Total running time: 10min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 7 215.109 1.84159 0.2179 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [8, 2000] loss: 1.831
(func pid=7694) [8, 4000] loss: 0.915
(func pid=7694) [8, 6000] loss: 0.602
(func pid=7694) [8, 8000] loss: 0.436
(func pid=7694) [8, 10000] loss: 0.339
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000007)
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:06:54. Total running time: 11min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 8 245.314 1.70931 0.3171 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [9, 2000] loss: 1.681
(func pid=7694) [9, 4000] loss: 0.836
(func pid=7694) [9, 6000] loss: 0.559
(func pid=7694) [9, 8000] loss: 0.411
(func pid=7694) [9, 10000] loss: 0.329
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000008)
Trial status: 2 TERMINATED | 1 RUNNING | 7 PENDING
Current time: 2026-04-23 18:07:24. Total running time: 11min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00002 RUNNING 32 4 0.000269594 4 9 275.678 1.6607 0.3195 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=7694) [10, 2000] loss: 1.610
(func pid=7694) [10, 4000] loss: 0.806
(func pid=7694) [10, 6000] loss: 0.530
(func pid=7694) [10, 8000] loss: 0.398
(func pid=7694) [10, 10000] loss: 0.314
Trial train_cifar_ab932_00002 completed after 10 iterations at 2026-04-23 18:07:50. Total running time: 11min 57s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00002 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000009 │
│ time_this_iter_s 30.71562 │
│ time_total_s 306.39402 │
│ training_iteration 10 │
│ accuracy 0.4019 │
│ loss 1.54934 │
╰────────────────────────────────────────────────────────────╯
(func pid=7694) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00002_2_batch_size=4,l1=32,l2=4,lr=0.0003_2026-04-23_17-55-53/checkpoint_000009)
Trial status: 3 TERMINATED | 7 PENDING
Current time: 2026-04-23 18:07:54. Total running time: 12min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 PENDING 32 32 0.000649301 2 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Trial train_cifar_ab932_00003 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00003 config │
├──────────────────────────────────────────────────┤
│ batch_size 2 │
│ device cuda │
│ l1 32 │
│ l2 32 │
│ lr 0.00065 │
╰──────────────────────────────────────────────────╯
(func pid=8989) [1, 2000] loss: 2.158
(func pid=8989) [1, 4000] loss: 0.954
(func pid=8989) [1, 6000] loss: 0.593
(func pid=8989) [1, 8000] loss: 0.421
(func pid=8989) [1, 10000] loss: 0.327
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:08:24. Total running time: 12min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [1, 12000] loss: 0.265
(func pid=8989) [1, 14000] loss: 0.226
(func pid=8989) [1, 16000] loss: 0.195
(func pid=8989) [1, 18000] loss: 0.170
(func pid=8989) [1, 20000] loss: 0.151
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:08:54. Total running time: 13min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00001 with loss=1.5427679807662964 and params={'l1': 8, 'l2': 2, 'lr': 0.0007655710240313673, 'batch_size': 4, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000000)
(func pid=8989) [2, 2000] loss: 1.442
(func pid=8989) [2, 4000] loss: 0.739
(func pid=8989) [2, 6000] loss: 0.487
(func pid=8989) [2, 8000] loss: 0.354
(func pid=8989) [2, 10000] loss: 0.288
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:09:24. Total running time: 13min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.5121010117057712 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 1 61.6224 1.5121 0.4647 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [2, 12000] loss: 0.238
(func pid=8989) [2, 14000] loss: 0.206
(func pid=8989) [2, 16000] loss: 0.175
(func pid=8989) [2, 18000] loss: 0.160
(func pid=8989) [2, 20000] loss: 0.138
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:09:54. Total running time: 14min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.5121010117057712 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 1 61.6224 1.5121 0.4647 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000001)
(func pid=8989) [3, 2000] loss: 1.342
(func pid=8989) [3, 4000] loss: 0.672
(func pid=8989) [3, 6000] loss: 0.441
(func pid=8989) [3, 8000] loss: 0.337
(func pid=8989) [3, 10000] loss: 0.270
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:10:24. Total running time: 14min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3791853762242943 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 2 121.946 1.37919 0.5148 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [3, 12000] loss: 0.226
(func pid=8989) [3, 14000] loss: 0.193
(func pid=8989) [3, 16000] loss: 0.168
(func pid=8989) [3, 18000] loss: 0.147
(func pid=8989) [3, 20000] loss: 0.134
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:10:54. Total running time: 15min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3791853762242943 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 2 121.946 1.37919 0.5148 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000002)
(func pid=8989) [4, 2000] loss: 1.273
(func pid=8989) [4, 4000] loss: 0.650
(func pid=8989) [4, 6000] loss: 0.429
(func pid=8989) [4, 8000] loss: 0.318
(func pid=8989) [4, 10000] loss: 0.253
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:11:24. Total running time: 15min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.2863938089974225 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 3 181.818 1.28639 0.5392 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [4, 12000] loss: 0.218
(func pid=8989) [4, 14000] loss: 0.183
(func pid=8989) [4, 16000] loss: 0.164
(func pid=8989) [4, 18000] loss: 0.145
(func pid=8989) [4, 20000] loss: 0.129
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:11:54. Total running time: 16min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.2863938089974225 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 3 181.818 1.28639 0.5392 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000003)
(func pid=8989) [5, 2000] loss: 1.234
(func pid=8989) [5, 4000] loss: 0.610
(func pid=8989) [5, 6000] loss: 0.416
(func pid=8989) [5, 8000] loss: 0.317
(func pid=8989) [5, 10000] loss: 0.254
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:12:24. Total running time: 16min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3259701417772565 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 4 241.485 1.32597 0.5357 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [5, 12000] loss: 0.206
(func pid=8989) [5, 14000] loss: 0.180
(func pid=8989) [5, 16000] loss: 0.157
(func pid=8989) [5, 18000] loss: 0.137
(func pid=8989) [5, 20000] loss: 0.125
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:12:54. Total running time: 17min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3259701417772565 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 4 241.485 1.32597 0.5357 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000004)
(func pid=8989) [6, 2000] loss: 1.233
(func pid=8989) [6, 4000] loss: 0.608
(func pid=8989) [6, 6000] loss: 0.400
(func pid=8989) [6, 8000] loss: 0.302
(func pid=8989) [6, 10000] loss: 0.249
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:13:24. Total running time: 17min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3511804476301186 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 5 301.431 1.35118 0.5224 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [6, 12000] loss: 0.204
(func pid=8989) [6, 14000] loss: 0.176
(func pid=8989) [6, 16000] loss: 0.154
(func pid=8989) [6, 18000] loss: 0.137
(func pid=8989) [6, 20000] loss: 0.125
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:13:54. Total running time: 18min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3511804476301186 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 5 301.431 1.35118 0.5224 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000005)
(func pid=8989) [7, 2000] loss: 1.180
(func pid=8989) [7, 4000] loss: 0.601
(func pid=8989) [7, 6000] loss: 0.399
(func pid=8989) [7, 8000] loss: 0.307
(func pid=8989) [7, 10000] loss: 0.243
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:14:24. Total running time: 18min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.358384048851792 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 6 361.301 1.35838 0.5399 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [7, 12000] loss: 0.201
(func pid=8989) [7, 14000] loss: 0.170
(func pid=8989) [7, 16000] loss: 0.154
(func pid=8989) [7, 18000] loss: 0.136
(func pid=8989) [7, 20000] loss: 0.120
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:14:54. Total running time: 19min 1s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.358384048851792 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 6 361.301 1.35838 0.5399 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000006)
(func pid=8989) [8, 2000] loss: 1.151
(func pid=8989) [8, 4000] loss: 0.596
(func pid=8989) [8, 6000] loss: 0.396
(func pid=8989) [8, 8000] loss: 0.297
(func pid=8989) [8, 10000] loss: 0.243
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:15:24. Total running time: 19min 31s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3321058404191164 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 7 420.581 1.33211 0.5302 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [8, 12000] loss: 0.201
(func pid=8989) [8, 14000] loss: 0.171
(func pid=8989) [8, 16000] loss: 0.148
(func pid=8989) [8, 18000] loss: 0.133
(func pid=8989) [8, 20000] loss: 0.123
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:15:55. Total running time: 20min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3321058404191164 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 7 420.581 1.33211 0.5302 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000007)
(func pid=8989) [9, 2000] loss: 1.163
(func pid=8989) [9, 4000] loss: 0.582
(func pid=8989) [9, 6000] loss: 0.386
(func pid=8989) [9, 8000] loss: 0.293
(func pid=8989) [9, 10000] loss: 0.234
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:16:25. Total running time: 20min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.2934885599999093 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 8 480.293 1.29349 0.5595 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [9, 12000] loss: 0.197
(func pid=8989) [9, 14000] loss: 0.171
(func pid=8989) [9, 16000] loss: 0.148
(func pid=8989) [9, 18000] loss: 0.132
(func pid=8989) [9, 20000] loss: 0.123
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:16:55. Total running time: 21min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.2934885599999093 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 8 480.293 1.29349 0.5595 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000008)
(func pid=8989) [10, 2000] loss: 1.090
(func pid=8989) [10, 4000] loss: 0.570
(func pid=8989) [10, 6000] loss: 0.394
(func pid=8989) [10, 8000] loss: 0.293
(func pid=8989) [10, 10000] loss: 0.232
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:17:25. Total running time: 21min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.2621820089850575 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 9 539.967 1.26218 0.5638 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=8989) [10, 12000] loss: 0.197
(func pid=8989) [10, 14000] loss: 0.169
(func pid=8989) [10, 16000] loss: 0.151
(func pid=8989) [10, 18000] loss: 0.132
(func pid=8989) [10, 20000] loss: 0.121
Trial status: 3 TERMINATED | 1 RUNNING | 6 PENDING
Current time: 2026-04-23 18:17:55. Total running time: 22min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3722995142347456 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00003 RUNNING 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00004 PENDING 64 128 0.0103049 8 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯(func pid=8989) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00003_3_batch_size=2,l1=32,l2=32,lr=0.0006_2026-04-23_17-55-53/checkpoint_000009)
Trial train_cifar_ab932_00003 completed after 10 iterations at 2026-04-23 18:17:55. Total running time: 22min 2s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00003 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000009 │
│ time_this_iter_s 59.81594 │
│ time_total_s 599.7825 │
│ training_iteration 10 │
│ accuracy 0.5527 │
│ loss 1.3723 │
╰────────────────────────────────────────────────────────────╯
Trial train_cifar_ab932_00004 started with configuration:
╭─────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00004 config │
├─────────────────────────────────────────────────┤
│ batch_size 8 │
│ device cuda │
│ l1 64 │
│ l2 128 │
│ lr 0.0103 │
╰─────────────────────────────────────────────────╯
(func pid=10835) [1, 2000] loss: 2.001
(func pid=10835) [1, 4000] loss: 0.955
(func pid=10835) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00004_4_batch_size=8,l1=64,l2=128,lr=0.0103_2026-04-23_17-55-53/checkpoint_000000)
(func pid=10835) [2, 2000] loss: 1.854
Trial status: 4 TERMINATED | 1 RUNNING | 5 PENDING
Current time: 2026-04-23 18:18:25. Total running time: 22min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3722995142347456 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00004 RUNNING 64 128 0.0103049 8 1 18.7174 1.93073 0.3035 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00005 PENDING 256 1 0.000105525 2 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=10835) [2, 4000] loss: 0.932
Trial train_cifar_ab932_00004 completed after 2 iterations at 2026-04-23 18:18:34. Total running time: 22min 41s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00004 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000001 │
│ time_this_iter_s 16.08807 │
│ time_total_s 34.80542 │
│ training_iteration 2 │
│ accuracy 0.2817 │
│ loss 1.90052 │
╰────────────────────────────────────────────────────────────╯
(func pid=10835) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00004_4_batch_size=8,l1=64,l2=128,lr=0.0103_2026-04-23_17-55-53/checkpoint_000001)
Trial train_cifar_ab932_00005 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00005 config │
├──────────────────────────────────────────────────┤
│ batch_size 2 │
│ device cuda │
│ l1 256 │
│ l2 1 │
│ lr 0.00011 │
╰──────────────────────────────────────────────────╯
(func pid=11104) [1, 2000] loss: 2.413
(func pid=11104) [1, 4000] loss: 1.192
Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-04-23 18:18:55. Total running time: 23min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3722995142347456 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00005 RUNNING 256 1 0.000105525 2 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11104) [1, 6000] loss: 0.785
(func pid=11104) [1, 8000] loss: 0.586
(func pid=11104) [1, 10000] loss: 0.466
(func pid=11104) [1, 12000] loss: 0.388
(func pid=11104) [1, 14000] loss: 0.331
(func pid=11104) [1, 16000] loss: 0.289
Trial status: 5 TERMINATED | 1 RUNNING | 4 PENDING
Current time: 2026-04-23 18:19:25. Total running time: 23min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3722995142347456 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00005 RUNNING 256 1 0.000105525 2 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00006 PENDING 32 64 0.0591513 16 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11104) [1, 18000] loss: 0.256
(func pid=11104) [1, 20000] loss: 0.231
Trial train_cifar_ab932_00005 completed after 1 iterations at 2026-04-23 18:19:40. Total running time: 23min 47s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00005 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000000 │
│ time_this_iter_s 62.08015 │
│ time_total_s 62.08015 │
│ training_iteration 1 │
│ accuracy 0.101 │
│ loss 2.30551 │
╰────────────────────────────────────────────────────────────╯
(func pid=11104) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00005_5_batch_size=2,l1=256,l2=1,lr=0.0001_2026-04-23_17-55-53/checkpoint_000000)
Trial train_cifar_ab932_00006 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00006 config │
├──────────────────────────────────────────────────┤
│ batch_size 16 │
│ device cuda │
│ l1 32 │
│ l2 64 │
│ lr 0.05915 │
╰──────────────────────────────────────────────────╯
(func pid=11366) [1, 2000] loss: 2.188
Trial train_cifar_ab932_00006 completed after 1 iterations at 2026-04-23 18:19:55. Total running time: 24min 2s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00006 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000000 │
│ time_this_iter_s 10.55217 │
│ time_total_s 10.55217 │
│ training_iteration 1 │
│ accuracy 0.1745 │
│ loss 2.13356 │
╰────────────────────────────────────────────────────────────╯
(func pid=11366) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00006_6_batch_size=16,l1=32,l2=64,lr=0.0592_2026-04-23_17-55-53/checkpoint_000000)
Trial status: 7 TERMINATED | 3 PENDING
Current time: 2026-04-23 18:19:55. Total running time: 24min 2s
Logical resource usage: 0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3722995142347456 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 PENDING 16 16 0.0148704 8 │
│ train_cifar_ab932_00008 PENDING 16 16 0.00234061 16 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Trial train_cifar_ab932_00007 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00007 config │
├──────────────────────────────────────────────────┤
│ batch_size 8 │
│ device cuda │
│ l1 16 │
│ l2 16 │
│ lr 0.01487 │
╰──────────────────────────────────────────────────╯
(func pid=11515) [1, 2000] loss: 2.141
(func pid=11515) [1, 4000] loss: 1.090
Trial train_cifar_ab932_00007 completed after 1 iterations at 2026-04-23 18:20:17. Total running time: 24min 24s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00007 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000000 │
│ time_this_iter_s 17.86812 │
│ time_total_s 17.86812 │
│ training_iteration 1 │
│ accuracy 0.1057 │
│ loss 2.28575 │
╰────────────────────────────────────────────────────────────╯
(func pid=11515) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00007_7_batch_size=8,l1=16,l2=16,lr=0.0149_2026-04-23_17-55-53/checkpoint_000000)
Trial train_cifar_ab932_00008 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00008 config │
├──────────────────────────────────────────────────┤
│ batch_size 16 │
│ device cuda │
│ l1 16 │
│ l2 16 │
│ lr 0.00234 │
╰──────────────────────────────────────────────────╯
Trial status: 8 TERMINATED | 1 RUNNING | 1 PENDING
Current time: 2026-04-23 18:20:25. Total running time: 24min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00003 with loss=1.3722995142347456 and params={'l1': 32, 'l2': 32, 'lr': 0.0006493008091475771, 'batch_size': 2, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00008 RUNNING 16 16 0.00234061 16 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11685) [1, 2000] loss: 1.863
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000000)
(func pid=11685) [2, 2000] loss: 1.452
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000001)
(func pid=11685) [3, 2000] loss: 1.338
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000002)
(func pid=11685) [4, 2000] loss: 1.264
Trial status: 8 TERMINATED | 1 RUNNING | 1 PENDING
Current time: 2026-04-23 18:20:55. Total running time: 25min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.365161239337921 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00008 RUNNING 16 16 0.00234061 16 3 27.4466 1.36516 0.514 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000003)
(func pid=11685) [5, 2000] loss: 1.222
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000004)
(func pid=11685) [6, 2000] loss: 1.186
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000005)
(func pid=11685) [7, 2000] loss: 1.154
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000006)
Trial status: 8 TERMINATED | 1 RUNNING | 1 PENDING
Current time: 2026-04-23 18:21:25. Total running time: 25min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.2018067093372344 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00008 RUNNING 16 16 0.00234061 16 7 61.8526 1.20181 0.5813 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00009 PENDING 128 256 0.000133722 8 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=11685) [8, 2000] loss: 1.136
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000007)
(func pid=11685) [9, 2000] loss: 1.111
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000008)
(func pid=11685) [10, 2000] loss: 1.097
Trial train_cifar_ab932_00008 completed after 10 iterations at 2026-04-23 18:21:49. Total running time: 25min 56s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00008 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000009 │
│ time_this_iter_s 8.50901 │
│ time_total_s 87.47668 │
│ training_iteration 10 │
│ accuracy 0.5897 │
│ loss 1.16991 │
╰────────────────────────────────────────────────────────────╯
(func pid=11685) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00008_8_batch_size=16,l1=16,l2=16,lr=0.0023_2026-04-23_17-55-53/checkpoint_000009)
Trial train_cifar_ab932_00009 started with configuration:
╭──────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00009 config │
├──────────────────────────────────────────────────┤
│ batch_size 8 │
│ device cuda │
│ l1 128 │
│ l2 256 │
│ lr 0.00013 │
╰──────────────────────────────────────────────────╯
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2026-04-23 18:21:55. Total running time: 26min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.1699077079772948 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00009 RUNNING 128 256 0.000133722 8 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00008 TERMINATED 16 16 0.00234061 16 10 87.4767 1.16991 0.5897 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=12577) [1, 2000] loss: 2.273
(func pid=12577) [1, 4000] loss: 1.076
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000000)
(func pid=12577) [2, 2000] loss: 1.964
(func pid=12577) [2, 4000] loss: 0.939
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2026-04-23 18:22:25. Total running time: 26min 32s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.1699077079772948 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00009 RUNNING 128 256 0.000133722 8 1 18.5143 2.0193 0.2778 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00008 TERMINATED 16 16 0.00234061 16 10 87.4767 1.16991 0.5897 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000001)
(func pid=12577) [3, 2000] loss: 1.693
(func pid=12577) [3, 4000] loss: 0.816
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000002)
(func pid=12577) [4, 2000] loss: 1.551
(func pid=12577) [4, 4000] loss: 0.766
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2026-04-23 18:22:55. Total running time: 27min 2s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.1699077079772948 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00009 RUNNING 128 256 0.000133722 8 3 50.836 1.5915 0.4278 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00008 TERMINATED 16 16 0.00234061 16 10 87.4767 1.16991 0.5897 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000003)
(func pid=12577) [5, 2000] loss: 1.471
(func pid=12577) [5, 4000] loss: 0.728
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000004)
(func pid=12577) [6, 2000] loss: 1.411
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2026-04-23 18:23:26. Total running time: 27min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.1699077079772948 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00009 RUNNING 128 256 0.000133722 8 5 83.3343 1.47155 0.4681 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00008 TERMINATED 16 16 0.00234061 16 10 87.4767 1.16991 0.5897 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=12577) [6, 4000] loss: 0.698
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000005)
(func pid=12577) [7, 2000] loss: 1.371
(func pid=12577) [7, 4000] loss: 0.673
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000006)
(func pid=12577) [8, 2000] loss: 1.307
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2026-04-23 18:23:56. Total running time: 28min 3s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.1699077079772948 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00009 RUNNING 128 256 0.000133722 8 7 115.685 1.35204 0.5234 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00008 TERMINATED 16 16 0.00234061 16 10 87.4767 1.16991 0.5897 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=12577) [8, 4000] loss: 0.660
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000007)
(func pid=12577) [9, 2000] loss: 1.265
(func pid=12577) [9, 4000] loss: 0.635
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000008)
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2026-04-23 18:24:26. Total running time: 28min 33s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.1699077079772948 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00009 RUNNING 128 256 0.000133722 8 9 147.977 1.29311 0.5332 │
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00008 TERMINATED 16 16 0.00234061 16 10 87.4767 1.16991 0.5897 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=12577) [10, 2000] loss: 1.227
(func pid=12577) [10, 4000] loss: 0.619
Trial train_cifar_ab932_00009 completed after 10 iterations at 2026-04-23 18:24:37. Total running time: 28min 44s
╭────────────────────────────────────────────────────────────╮
│ Trial train_cifar_ab932_00009 result │
├────────────────────────────────────────────────────────────┤
│ checkpoint_dir_name checkpoint_000009 │
│ time_this_iter_s 16.16356 │
│ time_total_s 164.14039 │
│ training_iteration 10 │
│ accuracy 0.557 │
│ loss 1.25735 │
╰────────────────────────────────────────────────────────────╯
2026-04-23 18:24:37,743 INFO tune.py:1009 -- Wrote the latest version of all result files and experiment state to '/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52' in 0.0084s.
Trial status: 10 TERMINATED
Current time: 2026-04-23 18:24:37. Total running time: 28min 44s
Logical resource usage: 2.0/16 CPUs, 1.0/1 GPUs (0.0/1.0 accelerator_type:A10G)
Current best trial: ab932_00008 with loss=1.1699077079772948 and params={'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ train_cifar_ab932_00000 TERMINATED 1 4 0.000303335 16 10 89.8698 1.92686 0.2122 │
│ train_cifar_ab932_00001 TERMINATED 8 2 0.000765571 4 10 308.686 1.54277 0.4253 │
│ train_cifar_ab932_00002 TERMINATED 32 4 0.000269594 4 10 306.394 1.54934 0.4019 │
│ train_cifar_ab932_00003 TERMINATED 32 32 0.000649301 2 10 599.782 1.3723 0.5527 │
│ train_cifar_ab932_00004 TERMINATED 64 128 0.0103049 8 2 34.8054 1.90052 0.2817 │
│ train_cifar_ab932_00005 TERMINATED 256 1 0.000105525 2 1 62.0801 2.30551 0.101 │
│ train_cifar_ab932_00006 TERMINATED 32 64 0.0591513 16 1 10.5522 2.13356 0.1745 │
│ train_cifar_ab932_00007 TERMINATED 16 16 0.0148704 8 1 17.8681 2.28575 0.1057 │
│ train_cifar_ab932_00008 TERMINATED 16 16 0.00234061 16 10 87.4767 1.16991 0.5897 │
│ train_cifar_ab932_00009 TERMINATED 128 256 0.000133722 8 10 164.14 1.25735 0.557 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
(func pid=12577) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2026-04-23_17-55-52/train_cifar_ab932_00009_9_batch_size=8,l1=128,l2=256,lr=0.0001_2026-04-23_17-55-53/checkpoint_000009)
Best trial config: {'l1': 16, 'l2': 16, 'lr': 0.002340606871256111, 'batch_size': 16, 'device': 'cuda'}
Best trial final validation loss: 1.1699077079772948
Best trial final validation accuracy: 0.5897
Best trial test set accuracy: 0.5884
Results#
Your Ray Tune trial summary output looks something like this. The text table summarizes the validation performance of the trials and highlights the best hyperparameter configuration:
Number of trials: 10/10 (10 TERMINATED)
+-----+--------------+------+------+-------------+--------+---------+------------+
| ... | batch_size | l1 | l2 | lr | iter | loss | accuracy |
|-----+--------------+------+------+-------------+--------+---------+------------|
| ... | 2 | 1 | 256 | 0.000668163 | 1 | 2.31479 | 0.0977 |
| ... | 4 | 64 | 8 | 0.0331514 | 1 | 2.31605 | 0.0983 |
| ... | 4 | 2 | 1 | 0.000150295 | 1 | 2.30755 | 0.1023 |
| ... | 16 | 32 | 32 | 0.0128248 | 10 | 1.66912 | 0.4391 |
| ... | 4 | 8 | 128 | 0.00464561 | 2 | 1.7316 | 0.3463 |
| ... | 8 | 256 | 8 | 0.00031556 | 1 | 2.19409 | 0.1736 |
| ... | 4 | 16 | 256 | 0.00574329 | 2 | 1.85679 | 0.3368 |
| ... | 8 | 2 | 2 | 0.00325652 | 1 | 2.30272 | 0.0984 |
| ... | 2 | 2 | 2 | 0.000342987 | 2 | 1.76044 | 0.292 |
| ... | 4 | 64 | 32 | 0.003734 | 8 | 1.53101 | 0.4761 |
+-----+--------------+------+------+-------------+--------+---------+------------+
Best trial config: {'l1': 64, 'l2': 32, 'lr': 0.0037339984519545164, 'batch_size': 4}
Best trial final validation loss: 1.5310075663924216
Best trial final validation accuracy: 0.4761
Best trial test set accuracy: 0.4737
Most trials stopped early to conserve resources. The best performing trial achieved a validation accuracy of approximately 47%, which the test set confirms.
Observability#
Monitoring is critical when running large-scale experiments. Ray provides a dashboard that lets you view the status of your trials, check cluster resource use, and inspect logs in real time.
For debugging, Ray also offers distributed debugging tools that let you attach a debugger to running trials across the cluster.
Conclusion#
In this tutorial, you learned how to tune the hyperparameters of a
PyTorch model using Ray Tune. You saw how to integrate Ray Tune into
your PyTorch training loop, define a search space for your
hyperparameters, use an efficient scheduler like ASHAScheduler to
terminate low-performing trials early, save checkpoints and report
metrics to Ray Tune, and run the hyperparameter search and analyze the
results.
Ray Tune makes it straightforward to scale your experiments from a single machine to a large cluster, helping you find the best model configuration efficiently.
Further reading#
Total running time of the script: (28 minutes 59.649 seconds)