Note
Click here to download the full example code
Hyperparameter tuning with Ray Tune¶
Hyperparameter tuning can make the difference between an average model and a highly accurate one. Often simple things like choosing a different learning rate or changing a network layer size can have a dramatic impact on your model performance.
Fortunately, there are tools that help with finding the best combination of parameters. Ray Tune is an industry standard tool for distributed hyperparameter tuning. Ray Tune includes the latest hyperparameter search algorithms, integrates with various analysis libraries, and natively supports distributed training through Ray’s distributed machine learning engine.
In this tutorial, we will show you how to integrate Ray Tune into your PyTorch training workflow. We will extend this tutorial from the PyTorch documentation for training a CIFAR10 image classifier.
As you will see, we only need to add some slight modifications. In particular, we need to
wrap data loading and training in functions,
make some network parameters configurable,
add checkpointing (optional),
and define the search space for the model tuning
To run this tutorial, please make sure the following packages are installed:
ray[tune]
: Distributed hyperparameter tuning librarytorchvision
: For the data transformers
Setup / Imports¶
Let’s start with the imports:
from functools import partial
import os
import tempfile
from pathlib import Path
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torch.utils.data import random_split
import torchvision
import torchvision.transforms as transforms
from ray import tune
from ray import train
from ray.train import Checkpoint, get_checkpoint
from ray.tune.schedulers import ASHAScheduler
import ray.cloudpickle as pickle
Most of the imports are needed for building the PyTorch model. Only the last imports are for Ray Tune.
Data loaders¶
We wrap the data loaders in their own function and pass a global data directory. This way we can share a data directory between different trials.
def load_data(data_dir="./data"):
transform = transforms.Compose(
[transforms.ToTensor(), transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5))]
)
trainset = torchvision.datasets.CIFAR10(
root=data_dir, train=True, download=True, transform=transform
)
testset = torchvision.datasets.CIFAR10(
root=data_dir, train=False, download=True, transform=transform
)
return trainset, testset
Configurable neural network¶
We can only tune those parameters that are configurable. In this example, we can specify the layer sizes of the fully connected layers:
class Net(nn.Module):
def __init__(self, l1=120, l2=84):
super(Net, self).__init__()
self.conv1 = nn.Conv2d(3, 6, 5)
self.pool = nn.MaxPool2d(2, 2)
self.conv2 = nn.Conv2d(6, 16, 5)
self.fc1 = nn.Linear(16 * 5 * 5, l1)
self.fc2 = nn.Linear(l1, l2)
self.fc3 = nn.Linear(l2, 10)
def forward(self, x):
x = self.pool(F.relu(self.conv1(x)))
x = self.pool(F.relu(self.conv2(x)))
x = torch.flatten(x, 1) # flatten all dimensions except batch
x = F.relu(self.fc1(x))
x = F.relu(self.fc2(x))
x = self.fc3(x)
return x
The train function¶
Now it gets interesting, because we introduce some changes to the example from the PyTorch documentation.
We wrap the training script in a function train_cifar(config, data_dir=None)
.
The config
parameter will receive the hyperparameters we would like to
train with. The data_dir
specifies the directory where we load and store the data,
so that multiple runs can share the same data source.
We also load the model and optimizer state at the start of the run, if a checkpoint
is provided. Further down in this tutorial you will find information on how
to save the checkpoint and what it is used for.
net = Net(config["l1"], config["l2"])
checkpoint = get_checkpoint()
if checkpoint:
with checkpoint.as_directory() as checkpoint_dir:
data_path = Path(checkpoint_dir) / "data.pkl"
with open(data_path, "rb") as fp:
checkpoint_state = pickle.load(fp)
start_epoch = checkpoint_state["epoch"]
net.load_state_dict(checkpoint_state["net_state_dict"])
optimizer.load_state_dict(checkpoint_state["optimizer_state_dict"])
else:
start_epoch = 0
The learning rate of the optimizer is made configurable, too:
optimizer = optim.SGD(net.parameters(), lr=config["lr"], momentum=0.9)
We also split the training data into a training and validation subset. We thus train on 80% of the data and calculate the validation loss on the remaining 20%. The batch sizes with which we iterate through the training and test sets are configurable as well.
Adding (multi) GPU support with DataParallel¶
Image classification benefits largely from GPUs. Luckily, we can continue to use
PyTorch’s abstractions in Ray Tune. Thus, we can wrap our model in nn.DataParallel
to support data parallel training on multiple GPUs:
device = "cpu"
if torch.cuda.is_available():
device = "cuda:0"
if torch.cuda.device_count() > 1:
net = nn.DataParallel(net)
net.to(device)
By using a device
variable we make sure that training also works when we have
no GPUs available. PyTorch requires us to send our data to the GPU memory explicitly,
like this:
for i, data in enumerate(trainloader, 0):
inputs, labels = data
inputs, labels = inputs.to(device), labels.to(device)
The code now supports training on CPUs, on a single GPU, and on multiple GPUs. Notably, Ray also supports fractional GPUs so we can share GPUs among trials, as long as the model still fits on the GPU memory. We’ll come back to that later.
Communicating with Ray Tune¶
The most interesting part is the communication with Ray Tune:
checkpoint_data = {
"epoch": epoch,
"net_state_dict": net.state_dict(),
"optimizer_state_dict": optimizer.state_dict(),
}
with tempfile.TemporaryDirectory() as checkpoint_dir:
data_path = Path(checkpoint_dir) / "data.pkl"
with open(data_path, "wb") as fp:
pickle.dump(checkpoint_data, fp)
checkpoint = Checkpoint.from_directory(checkpoint_dir)
train.report(
{"loss": val_loss / val_steps, "accuracy": correct / total},
checkpoint=checkpoint,
)
Here we first save a checkpoint and then report some metrics back to Ray Tune. Specifically, we send the validation loss and accuracy back to Ray Tune. Ray Tune can then use these metrics to decide which hyperparameter configuration lead to the best results. These metrics can also be used to stop bad performing trials early in order to avoid wasting resources on those trials.
The checkpoint saving is optional, however, it is necessary if we wanted to use advanced schedulers like Population Based Training. Also, by saving the checkpoint we can later load the trained models and validate them on a test set. Lastly, saving checkpoints is useful for fault tolerance, and it allows us to interrupt training and continue training later.
Full training function¶
The full code example looks like this:
def train_cifar(config, data_dir=None):
net = Net(config["l1"], config["l2"])
device = "cpu"
if torch.cuda.is_available():
device = "cuda:0"
if torch.cuda.device_count() > 1:
net = nn.DataParallel(net)
net.to(device)
criterion = nn.CrossEntropyLoss()
optimizer = optim.SGD(net.parameters(), lr=config["lr"], momentum=0.9)
checkpoint = get_checkpoint()
if checkpoint:
with checkpoint.as_directory() as checkpoint_dir:
data_path = Path(checkpoint_dir) / "data.pkl"
with open(data_path, "rb") as fp:
checkpoint_state = pickle.load(fp)
start_epoch = checkpoint_state["epoch"]
net.load_state_dict(checkpoint_state["net_state_dict"])
optimizer.load_state_dict(checkpoint_state["optimizer_state_dict"])
else:
start_epoch = 0
trainset, testset = load_data(data_dir)
test_abs = int(len(trainset) * 0.8)
train_subset, val_subset = random_split(
trainset, [test_abs, len(trainset) - test_abs]
)
trainloader = torch.utils.data.DataLoader(
train_subset, batch_size=int(config["batch_size"]), shuffle=True, num_workers=8
)
valloader = torch.utils.data.DataLoader(
val_subset, batch_size=int(config["batch_size"]), shuffle=True, num_workers=8
)
for epoch in range(start_epoch, 10): # loop over the dataset multiple times
running_loss = 0.0
epoch_steps = 0
for i, data in enumerate(trainloader, 0):
# get the inputs; data is a list of [inputs, labels]
inputs, labels = data
inputs, labels = inputs.to(device), labels.to(device)
# zero the parameter gradients
optimizer.zero_grad()
# forward + backward + optimize
outputs = net(inputs)
loss = criterion(outputs, labels)
loss.backward()
optimizer.step()
# print statistics
running_loss += loss.item()
epoch_steps += 1
if i % 2000 == 1999: # print every 2000 mini-batches
print(
"[%d, %5d] loss: %.3f"
% (epoch + 1, i + 1, running_loss / epoch_steps)
)
running_loss = 0.0
# Validation loss
val_loss = 0.0
val_steps = 0
total = 0
correct = 0
for i, data in enumerate(valloader, 0):
with torch.no_grad():
inputs, labels = data
inputs, labels = inputs.to(device), labels.to(device)
outputs = net(inputs)
_, predicted = torch.max(outputs.data, 1)
total += labels.size(0)
correct += (predicted == labels).sum().item()
loss = criterion(outputs, labels)
val_loss += loss.cpu().numpy()
val_steps += 1
checkpoint_data = {
"epoch": epoch,
"net_state_dict": net.state_dict(),
"optimizer_state_dict": optimizer.state_dict(),
}
with tempfile.TemporaryDirectory() as checkpoint_dir:
data_path = Path(checkpoint_dir) / "data.pkl"
with open(data_path, "wb") as fp:
pickle.dump(checkpoint_data, fp)
checkpoint = Checkpoint.from_directory(checkpoint_dir)
train.report(
{"loss": val_loss / val_steps, "accuracy": correct / total},
checkpoint=checkpoint,
)
print("Finished Training")
As you can see, most of the code is adapted directly from the original example.
Test set accuracy¶
Commonly the performance of a machine learning model is tested on a hold-out test set with data that has not been used for training the model. We also wrap this in a function:
def test_accuracy(net, device="cpu"):
trainset, testset = load_data()
testloader = torch.utils.data.DataLoader(
testset, batch_size=4, shuffle=False, num_workers=2
)
correct = 0
total = 0
with torch.no_grad():
for data in testloader:
images, labels = data
images, labels = images.to(device), labels.to(device)
outputs = net(images)
_, predicted = torch.max(outputs.data, 1)
total += labels.size(0)
correct += (predicted == labels).sum().item()
return correct / total
The function also expects a device
parameter, so we can do the
test set validation on a GPU.
Configuring the search space¶
Lastly, we need to define Ray Tune’s search space. Here is an example:
config = {
"l1": tune.choice([2 ** i for i in range(9)]),
"l2": tune.choice([2 ** i for i in range(9)]),
"lr": tune.loguniform(1e-4, 1e-1),
"batch_size": tune.choice([2, 4, 8, 16])
}
The tune.choice()
accepts a list of values that are uniformly sampled from.
In this example, the l1
and l2
parameters
should be powers of 2 between 4 and 256, so either 4, 8, 16, 32, 64, 128, or 256.
The lr
(learning rate) should be uniformly sampled between 0.0001 and 0.1. Lastly,
the batch size is a choice between 2, 4, 8, and 16.
At each trial, Ray Tune will now randomly sample a combination of parameters from these
search spaces. It will then train a number of models in parallel and find the best
performing one among these. We also use the ASHAScheduler
which will terminate bad
performing trials early.
We wrap the train_cifar
function with functools.partial
to set the constant
data_dir
parameter. We can also tell Ray Tune what resources should be
available for each trial:
gpus_per_trial = 2
# ...
result = tune.run(
partial(train_cifar, data_dir=data_dir),
resources_per_trial={"cpu": 8, "gpu": gpus_per_trial},
config=config,
num_samples=num_samples,
scheduler=scheduler,
checkpoint_at_end=True)
You can specify the number of CPUs, which are then available e.g.
to increase the num_workers
of the PyTorch DataLoader
instances. The selected
number of GPUs are made visible to PyTorch in each trial. Trials do not have access to
GPUs that haven’t been requested for them - so you don’t have to care about two trials
using the same set of resources.
Here we can also specify fractional GPUs, so something like gpus_per_trial=0.5
is
completely valid. The trials will then share GPUs among each other.
You just have to make sure that the models still fit in the GPU memory.
After training the models, we will find the best performing one and load the trained network from the checkpoint file. We then obtain the test set accuracy and report everything by printing.
The full main function looks like this:
def main(num_samples=10, max_num_epochs=10, gpus_per_trial=2):
data_dir = os.path.abspath("./data")
load_data(data_dir)
config = {
"l1": tune.choice([2**i for i in range(9)]),
"l2": tune.choice([2**i for i in range(9)]),
"lr": tune.loguniform(1e-4, 1e-1),
"batch_size": tune.choice([2, 4, 8, 16]),
}
scheduler = ASHAScheduler(
metric="loss",
mode="min",
max_t=max_num_epochs,
grace_period=1,
reduction_factor=2,
)
result = tune.run(
partial(train_cifar, data_dir=data_dir),
resources_per_trial={"cpu": 2, "gpu": gpus_per_trial},
config=config,
num_samples=num_samples,
scheduler=scheduler,
)
best_trial = result.get_best_trial("loss", "min", "last")
print(f"Best trial config: {best_trial.config}")
print(f"Best trial final validation loss: {best_trial.last_result['loss']}")
print(f"Best trial final validation accuracy: {best_trial.last_result['accuracy']}")
best_trained_model = Net(best_trial.config["l1"], best_trial.config["l2"])
device = "cpu"
if torch.cuda.is_available():
device = "cuda:0"
if gpus_per_trial > 1:
best_trained_model = nn.DataParallel(best_trained_model)
best_trained_model.to(device)
best_checkpoint = result.get_best_checkpoint(trial=best_trial, metric="accuracy", mode="max")
with best_checkpoint.as_directory() as checkpoint_dir:
data_path = Path(checkpoint_dir) / "data.pkl"
with open(data_path, "rb") as fp:
best_checkpoint_data = pickle.load(fp)
best_trained_model.load_state_dict(best_checkpoint_data["net_state_dict"])
test_acc = test_accuracy(best_trained_model, device)
print("Best trial test set accuracy: {}".format(test_acc))
if __name__ == "__main__":
# You can change the number of GPUs per trial here:
main(num_samples=10, max_num_epochs=10, gpus_per_trial=0)
Downloading https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz to /var/lib/workspace/beginner_source/data/cifar-10-python.tar.gz
0% 0.00/170M [00:00<?, ?B/s]
0% 459k/170M [00:00<00:37, 4.53MB/s]
5% 8.16M/170M [00:00<00:03, 46.9MB/s]
12% 19.9M/170M [00:00<00:01, 78.7MB/s]
19% 31.6M/170M [00:00<00:01, 93.7MB/s]
25% 43.3M/170M [00:00<00:01, 102MB/s]
32% 54.9M/170M [00:00<00:01, 107MB/s]
39% 66.6M/170M [00:00<00:00, 110MB/s]
46% 78.2M/170M [00:00<00:00, 112MB/s]
53% 90.0M/170M [00:00<00:00, 114MB/s]
60% 102M/170M [00:01<00:00, 115MB/s]
66% 113M/170M [00:01<00:00, 115MB/s]
73% 125M/170M [00:01<00:00, 116MB/s]
80% 137M/170M [00:01<00:00, 116MB/s]
87% 148M/170M [00:01<00:00, 116MB/s]
94% 160M/170M [00:01<00:00, 113MB/s]
100% 170M/170M [00:01<00:00, 104MB/s]
Extracting /var/lib/workspace/beginner_source/data/cifar-10-python.tar.gz to /var/lib/workspace/beginner_source/data
Files already downloaded and verified
2024-11-19 19:31:01,352 WARNING services.py:1889 -- WARNING: The object store is using /tmp instead of /dev/shm because /dev/shm has only 2147479552 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.
2024-11-19 19:31:01,624 INFO worker.py:1642 -- Started a local Ray instance.
2024-11-19 19:31:03,020 INFO tune.py:228 -- Initializing Ray automatically. For cluster usage or custom Ray initialization, call `ray.init(...)` before `tune.run(...)`.
2024-11-19 19:31:03,021 INFO tune.py:654 -- [output] This will use the new output engine with verbosity 2. To disable the new output and use the legacy output engine, set the environment variable RAY_AIR_NEW_OUTPUT=0. For more information, please see https://github.com/ray-project/ray/issues/36949
+--------------------------------------------------------------------+
| Configuration for experiment train_cifar_2024-11-19_19-31-03 |
+--------------------------------------------------------------------+
| Search algorithm BasicVariantGenerator |
| Scheduler AsyncHyperBandScheduler |
| Number of trials 10 |
+--------------------------------------------------------------------+
View detailed results here: /var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03
To visualize your results with TensorBoard, run: `tensorboard --logdir /var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03`
Trial status: 10 PENDING
Current time: 2024-11-19 19:31:03. Total running time: 0s
Logical resource usage: 0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+-------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size |
+-------------------------------------------------------------------------------+
| train_cifar_d0438_00000 PENDING 16 1 0.00213327 2 |
| train_cifar_d0438_00001 PENDING 1 2 0.013416 4 |
| train_cifar_d0438_00002 PENDING 256 64 0.0113784 2 |
| train_cifar_d0438_00003 PENDING 64 256 0.0274071 8 |
| train_cifar_d0438_00004 PENDING 16 2 0.056666 4 |
| train_cifar_d0438_00005 PENDING 8 64 0.000353097 4 |
| train_cifar_d0438_00006 PENDING 16 4 0.000147684 8 |
| train_cifar_d0438_00007 PENDING 256 256 0.00477469 8 |
| train_cifar_d0438_00008 PENDING 128 256 0.0306227 8 |
| train_cifar_d0438_00009 PENDING 2 16 0.0286986 2 |
+-------------------------------------------------------------------------------+
Trial train_cifar_d0438_00005 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00005 config |
+--------------------------------------------------+
| batch_size 4 |
| l1 8 |
| l2 64 |
| lr 0.00035 |
+--------------------------------------------------+
Trial train_cifar_d0438_00007 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00007 config |
+--------------------------------------------------+
| batch_size 8 |
| l1 256 |
| l2 256 |
| lr 0.00477 |
+--------------------------------------------------+
Trial train_cifar_d0438_00000 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00000 config |
+--------------------------------------------------+
| batch_size 2 |
| l1 16 |
| l2 1 |
| lr 0.00213 |
+--------------------------------------------------+
Trial train_cifar_d0438_00006 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00006 config |
+--------------------------------------------------+
| batch_size 8 |
| l1 16 |
| l2 4 |
| lr 0.00015 |
+--------------------------------------------------+
Trial train_cifar_d0438_00003 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00003 config |
+--------------------------------------------------+
| batch_size 8 |
| l1 64 |
| l2 256 |
| lr 0.02741 |
+--------------------------------------------------+
Trial train_cifar_d0438_00002 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00002 config |
+--------------------------------------------------+
| batch_size 2 |
| l1 256 |
| l2 64 |
| lr 0.01138 |
+--------------------------------------------------+
(func pid=4876) Files already downloaded and verified
Trial train_cifar_d0438_00004 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00004 config |
+--------------------------------------------------+
| batch_size 4 |
| l1 16 |
| l2 2 |
| lr 0.05667 |
+--------------------------------------------------+
Trial train_cifar_d0438_00001 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00001 config |
+--------------------------------------------------+
| batch_size 4 |
| l1 1 |
| l2 2 |
| lr 0.01342 |
+--------------------------------------------------+
(func pid=4859) [1, 2000] loss: 2.205
(func pid=4871) Files already downloaded and verified [repeated 15x across cluster] (Ray deduplicates logs by default. Set RAY_DEDUP_LOGS=0 to disable log deduplication, or see https://docs.ray.io/en/master/ray-observability/ray-logging.html#log-deduplication for more options.)
Trial status: 8 RUNNING | 2 PENDING
Current time: 2024-11-19 19:31:33. Total running time: 30s
Logical resource usage: 16.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+-------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size |
+-------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 |
| train_cifar_d0438_00001 RUNNING 1 2 0.013416 4 |
| train_cifar_d0438_00002 RUNNING 256 64 0.0113784 2 |
| train_cifar_d0438_00003 RUNNING 64 256 0.0274071 8 |
| train_cifar_d0438_00004 RUNNING 16 2 0.056666 4 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 |
| train_cifar_d0438_00008 PENDING 128 256 0.0306227 8 |
| train_cifar_d0438_00009 PENDING 2 16 0.0286986 2 |
+-------------------------------------------------------------------------------+
(func pid=4859) [1, 4000] loss: 1.019 [repeated 8x across cluster]
(func pid=4882) [1, 4000] loss: 0.786 [repeated 6x across cluster]
(func pid=4859) [1, 6000] loss: 0.661 [repeated 2x across cluster]
Trial status: 8 RUNNING | 2 PENDING
Current time: 2024-11-19 19:32:03. Total running time: 1min 0s
Logical resource usage: 16.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+-------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size |
+-------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 |
| train_cifar_d0438_00001 RUNNING 1 2 0.013416 4 |
| train_cifar_d0438_00002 RUNNING 256 64 0.0113784 2 |
| train_cifar_d0438_00003 RUNNING 64 256 0.0274071 8 |
| train_cifar_d0438_00004 RUNNING 16 2 0.056666 4 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 |
| train_cifar_d0438_00008 PENDING 128 256 0.0306227 8 |
| train_cifar_d0438_00009 PENDING 2 16 0.0286986 2 |
+-------------------------------------------------------------------------------+
Trial train_cifar_d0438_00006 finished iteration 1 at 2024-11-19 19:32:03. Total running time: 1min 0s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 54.30775 |
| time_total_s 54.30775 |
| training_iteration 1 |
| accuracy 0.1524 |
| loss 2.27008 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000000
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000000)
Trial train_cifar_d0438_00007 finished iteration 1 at 2024-11-19 19:32:06. Total running time: 1min 3s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 57.09731 |
| time_total_s 57.09731 |
| training_iteration 1 |
| accuracy 0.4649 |
| loss 1.45953 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000000
Trial train_cifar_d0438_00003 finished iteration 1 at 2024-11-19 19:32:06. Total running time: 1min 3s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00003 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 57.88419 |
| time_total_s 57.88419 |
| training_iteration 1 |
| accuracy 0.2244 |
| loss 2.065 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00003 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00003_3_batch_size=8,l1=64,l2=256,lr=0.0274_2024-11-19_19-31-03/checkpoint_000000
Trial train_cifar_d0438_00003 completed after 1 iterations at 2024-11-19 19:32:07. Total running time: 1min 3s
Trial train_cifar_d0438_00008 started with configuration:
+--------------------------------------------------+
| Trial train_cifar_d0438_00008 config |
+--------------------------------------------------+
| batch_size 8 |
| l1 128 |
| l2 256 |
| lr 0.03062 |
+--------------------------------------------------+
(func pid=4862) Files already downloaded and verified
(func pid=4861) [1, 6000] loss: 0.729 [repeated 4x across cluster]
(func pid=4862) Files already downloaded and verified
(func pid=4859) [1, 8000] loss: 0.494
(func pid=4876) [1, 8000] loss: 0.471
(func pid=4877) [2, 2000] loss: 2.241 [repeated 4x across cluster]
(func pid=4862) [1, 2000] loss: 2.119 [repeated 2x across cluster]
Trial status: 8 RUNNING | 1 TERMINATED | 1 PENDING
Current time: 2024-11-19 19:32:33. Total running time: 1min 30s
Logical resource usage: 16.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 |
| train_cifar_d0438_00001 RUNNING 1 2 0.013416 4 |
| train_cifar_d0438_00002 RUNNING 256 64 0.0113784 2 |
| train_cifar_d0438_00004 RUNNING 16 2 0.056666 4 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 1 54.3077 2.27008 0.1524 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 1 57.0973 1.45953 0.4649 |
| train_cifar_d0438_00008 RUNNING 128 256 0.0306227 8 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00009 PENDING 2 16 0.0286986 2 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4860) [1, 10000] loss: 0.462 [repeated 3x across cluster]
(func pid=4877) [2, 4000] loss: 1.091 [repeated 3x across cluster]
(func pid=4859) [1, 12000] loss: 0.322 [repeated 2x across cluster]
Trial train_cifar_d0438_00005 finished iteration 1 at 2024-11-19 19:32:46. Total running time: 1min 43s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 97.51129 |
| time_total_s 97.51129 |
| training_iteration 1 |
| accuracy 0.3818 |
| loss 1.70244 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000000
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000000) [repeated 3x across cluster]
Trial train_cifar_d0438_00001 finished iteration 1 at 2024-11-19 19:32:47. Total running time: 1min 44s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00001 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 98.08139 |
| time_total_s 98.08139 |
| training_iteration 1 |
| accuracy 0.0968 |
| loss 2.31379 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00001 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00001_1_batch_size=4,l1=1,l2=2,lr=0.0134_2024-11-19_19-31-03/checkpoint_000000
Trial train_cifar_d0438_00001 completed after 1 iterations at 2024-11-19 19:32:48. Total running time: 1min 44s
Trial train_cifar_d0438_00009 started with configuration:
+-------------------------------------------------+
| Trial train_cifar_d0438_00009 config |
+-------------------------------------------------+
| batch_size 2 |
| l1 2 |
| l2 16 |
| lr 0.0287 |
+-------------------------------------------------+
(func pid=4860) Files already downloaded and verified
Trial train_cifar_d0438_00004 finished iteration 1 at 2024-11-19 19:32:49. Total running time: 1min 46s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00004 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 99.49792 |
| time_total_s 99.49792 |
| training_iteration 1 |
| accuracy 0.0992 |
| loss 2.34682 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00004 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00004_4_batch_size=4,l1=16,l2=2,lr=0.0567_2024-11-19_19-31-03/checkpoint_000000
Trial train_cifar_d0438_00004 completed after 1 iterations at 2024-11-19 19:32:49. Total running time: 1min 46s
(func pid=4860) Files already downloaded and verified
Trial train_cifar_d0438_00006 finished iteration 2 at 2024-11-19 19:32:55. Total running time: 1min 52s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000001 |
| time_this_iter_s 52.25065 |
| time_total_s 106.55839 |
| training_iteration 2 |
| accuracy 0.1879 |
| loss 2.14037 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000001
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000001) [repeated 3x across cluster]
(func pid=4861) [1, 12000] loss: 0.374 [repeated 2x across cluster]
Trial train_cifar_d0438_00007 finished iteration 2 at 2024-11-19 19:33:00. Total running time: 1min 57s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000001 |
| time_this_iter_s 54.18316 |
| time_total_s 111.28047 |
| training_iteration 2 |
| accuracy 0.5225 |
| loss 1.3214 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000001
(func pid=4876) [2, 2000] loss: 1.690 [repeated 2x across cluster]
Trial train_cifar_d0438_00008 finished iteration 1 at 2024-11-19 19:33:02. Total running time: 1min 59s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00008 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 55.54791 |
| time_total_s 55.54791 |
| training_iteration 1 |
| accuracy 0.218 |
| loss 2.08465 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00008 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00008_8_batch_size=8,l1=128,l2=256,lr=0.0306_2024-11-19_19-31-03/checkpoint_000000
(func pid=4862) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00008_8_batch_size=8,l1=128,l2=256,lr=0.0306_2024-11-19_19-31-03/checkpoint_000000) [repeated 2x across cluster]
Trial status: 7 RUNNING | 3 TERMINATED
Current time: 2024-11-19 19:33:03. Total running time: 2min 0s
Logical resource usage: 14.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 |
| train_cifar_d0438_00002 RUNNING 256 64 0.0113784 2 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 1 97.5113 1.70244 0.3818 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 2 106.558 2.14037 0.1879 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 2 111.28 1.3214 0.5225 |
| train_cifar_d0438_00008 RUNNING 128 256 0.0306227 8 1 55.5479 2.08465 0.218 |
| train_cifar_d0438_00009 RUNNING 2 16 0.0286986 2 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4877) [3, 2000] loss: 2.130 [repeated 2x across cluster]
(func pid=4882) [3, 2000] loss: 1.232 [repeated 4x across cluster]
(func pid=4859) [1, 18000] loss: 0.215 [repeated 3x across cluster]
(func pid=4860) [1, 6000] loss: 0.777 [repeated 4x across cluster]
Trial status: 7 RUNNING | 3 TERMINATED
Current time: 2024-11-19 19:33:33. Total running time: 2min 30s
Logical resource usage: 14.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 |
| train_cifar_d0438_00002 RUNNING 256 64 0.0113784 2 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 1 97.5113 1.70244 0.3818 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 2 106.558 2.14037 0.1879 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 2 111.28 1.3214 0.5225 |
| train_cifar_d0438_00008 RUNNING 128 256 0.0306227 8 1 55.5479 2.08465 0.218 |
| train_cifar_d0438_00009 RUNNING 2 16 0.0286986 2 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4862) [2, 4000] loss: 1.046 [repeated 2x across cluster]
Trial train_cifar_d0438_00006 finished iteration 3 at 2024-11-19 19:33:40. Total running time: 2min 37s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000002 |
| time_this_iter_s 45.27475 |
| time_total_s 151.83314 |
| training_iteration 3 |
| accuracy 0.1941 |
| loss 2.0695 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 3 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000002
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000002)
(func pid=4876) [2, 8000] loss: 0.387 [repeated 2x across cluster]
Trial train_cifar_d0438_00007 finished iteration 3 at 2024-11-19 19:33:48. Total running time: 2min 45s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000002 |
| time_this_iter_s 47.75256 |
| time_total_s 159.03303 |
| training_iteration 3 |
| accuracy 0.5682 |
| loss 1.25374 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 3 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000002
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000002)
Trial train_cifar_d0438_00008 finished iteration 2 at 2024-11-19 19:33:52. Total running time: 2min 48s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00008 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000001 |
| time_this_iter_s 49.43474 |
| time_total_s 104.98265 |
| training_iteration 2 |
| accuracy 0.2313 |
| loss 2.07797 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00008 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00008_8_batch_size=8,l1=128,l2=256,lr=0.0306_2024-11-19_19-31-03/checkpoint_000001
Trial train_cifar_d0438_00008 completed after 2 iterations at 2024-11-19 19:33:52. Total running time: 2min 48s
(func pid=4877) [4, 2000] loss: 2.037 [repeated 3x across cluster]
Trial train_cifar_d0438_00000 finished iteration 1 at 2024-11-19 19:34:00. Total running time: 2min 57s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00000 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 171.15809 |
| time_total_s 171.15809 |
| training_iteration 1 |
| accuracy 0.1901 |
| loss 1.91776 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00000 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00000_0_batch_size=2,l1=16,l2=1,lr=0.0021_2024-11-19_19-31-03/checkpoint_000000
(func pid=4859) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00000_0_batch_size=2,l1=16,l2=1,lr=0.0021_2024-11-19_19-31-03/checkpoint_000000) [repeated 2x across cluster]
(func pid=4882) [4, 2000] loss: 1.136 [repeated 4x across cluster]
Trial status: 6 RUNNING | 4 TERMINATED
Current time: 2024-11-19 19:34:03. Total running time: 3min 0s
Logical resource usage: 12.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 1 171.158 1.91776 0.1901 |
| train_cifar_d0438_00002 RUNNING 256 64 0.0113784 2 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 1 97.5113 1.70244 0.3818 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 3 151.833 2.0695 0.1941 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 3 159.033 1.25374 0.5682 |
| train_cifar_d0438_00009 RUNNING 2 16 0.0286986 2 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
+------------------------------------------------------------------------------------------------------------------------------------+
Trial train_cifar_d0438_00005 finished iteration 2 at 2024-11-19 19:34:06. Total running time: 3min 3s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000001 |
| time_this_iter_s 80.07965 |
| time_total_s 177.59094 |
| training_iteration 2 |
| accuracy 0.4457 |
| loss 1.51517 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000001
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000001)
(func pid=4860) [1, 12000] loss: 0.389
(func pid=4877) [4, 4000] loss: 1.006
(func pid=4882) [4, 4000] loss: 0.586 [repeated 2x across cluster]
Trial train_cifar_d0438_00002 finished iteration 1 at 2024-11-19 19:34:18. Total running time: 3min 15s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00002 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 188.8623 |
| time_total_s 188.8623 |
| training_iteration 1 |
| accuracy 0.1461 |
| loss 2.2219 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00002 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00002_2_batch_size=2,l1=256,l2=64,lr=0.0114_2024-11-19_19-31-03/checkpoint_000000
Trial train_cifar_d0438_00002 completed after 1 iterations at 2024-11-19 19:34:18. Total running time: 3min 15s
(func pid=4861) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00002_2_batch_size=2,l1=256,l2=64,lr=0.0114_2024-11-19_19-31-03/checkpoint_000000)
Trial train_cifar_d0438_00006 finished iteration 4 at 2024-11-19 19:34:20. Total running time: 3min 17s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000003 |
| time_this_iter_s 39.91604 |
| time_total_s 191.74918 |
| training_iteration 4 |
| accuracy 0.2152 |
| loss 1.98459 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 4 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000003
(func pid=4859) [2, 4000] loss: 0.951 [repeated 3x across cluster]
Trial train_cifar_d0438_00007 finished iteration 4 at 2024-11-19 19:34:29. Total running time: 3min 26s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000003 |
| time_this_iter_s 40.99378 |
| time_total_s 200.02681 |
| training_iteration 4 |
| accuracy 0.56 |
| loss 1.2457 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 4 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000003
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000003) [repeated 2x across cluster]
(func pid=4876) [3, 4000] loss: 0.739
(func pid=4860) [1, 16000] loss: 0.292
Trial status: 5 RUNNING | 5 TERMINATED
Current time: 2024-11-19 19:34:33. Total running time: 3min 30s
Logical resource usage: 10.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 1 171.158 1.91776 0.1901 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 2 177.591 1.51517 0.4457 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 4 191.749 1.98459 0.2152 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 4 200.027 1.2457 0.56 |
| train_cifar_d0438_00009 RUNNING 2 16 0.0286986 2 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4876) [3, 6000] loss: 0.486 [repeated 3x across cluster]
(func pid=4876) [3, 8000] loss: 0.357 [repeated 5x across cluster]
Trial train_cifar_d0438_00006 finished iteration 5 at 2024-11-19 19:34:57. Total running time: 3min 53s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000004 |
| time_this_iter_s 36.1432 |
| time_total_s 227.89239 |
| training_iteration 5 |
| accuracy 0.2217 |
| loss 1.94253 |
+------------------------------------------------------------+
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000004)
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 5 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000004
Trial status: 5 RUNNING | 5 TERMINATED
Current time: 2024-11-19 19:35:03. Total running time: 4min 0s
Logical resource usage: 10.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 1 171.158 1.91776 0.1901 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 2 177.591 1.51517 0.4457 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 5 227.892 1.94253 0.2217 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 4 200.027 1.2457 0.56 |
| train_cifar_d0438_00009 RUNNING 2 16 0.0286986 2 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4876) [3, 10000] loss: 0.285 [repeated 4x across cluster]
Trial train_cifar_d0438_00007 finished iteration 5 at 2024-11-19 19:35:08. Total running time: 4min 5s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000004 |
| time_this_iter_s 39.02504 |
| time_total_s 239.05185 |
| training_iteration 5 |
| accuracy 0.5802 |
| loss 1.24666 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 5 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000004
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000004)
(func pid=4877) [6, 2000] loss: 1.937 [repeated 2x across cluster]
Trial train_cifar_d0438_00009 finished iteration 1 at 2024-11-19 19:35:10. Total running time: 4min 7s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00009 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000000 |
| time_this_iter_s 142.69365 |
| time_total_s 142.69365 |
| training_iteration 1 |
| accuracy 0.1005 |
| loss 2.32532 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00009 saved a checkpoint for iteration 1 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00009_9_batch_size=2,l1=2,l2=16,lr=0.0287_2024-11-19_19-31-03/checkpoint_000000
Trial train_cifar_d0438_00009 completed after 1 iterations at 2024-11-19 19:35:10. Total running time: 4min 7s
Trial train_cifar_d0438_00005 finished iteration 3 at 2024-11-19 19:35:13. Total running time: 4min 10s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000002 |
| time_this_iter_s 66.75615 |
| time_total_s 244.34709 |
| training_iteration 3 |
| accuracy 0.4701 |
| loss 1.46591 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 3 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000002
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000002) [repeated 2x across cluster]
(func pid=4859) [2, 14000] loss: 0.272
(func pid=4882) [6, 2000] loss: 1.011
(func pid=4859) [2, 16000] loss: 0.237 [repeated 3x across cluster]
Trial train_cifar_d0438_00006 finished iteration 6 at 2024-11-19 19:35:32. Total running time: 4min 29s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000005 |
| time_this_iter_s 35.18867 |
| time_total_s 263.08106 |
| training_iteration 6 |
| accuracy 0.2296 |
| loss 1.91896 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 6 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000005
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000005)
Trial status: 4 RUNNING | 6 TERMINATED
Current time: 2024-11-19 19:35:33. Total running time: 4min 30s
Logical resource usage: 8.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 1 171.158 1.91776 0.1901 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 3 244.347 1.46591 0.4701 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 6 263.081 1.91896 0.2296 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 5 239.052 1.24666 0.5802 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4882) [6, 4000] loss: 0.545
(func pid=4876) [4, 4000] loss: 0.682
(func pid=4877) [7, 2000] loss: 1.910 [repeated 2x across cluster]
Trial train_cifar_d0438_00007 finished iteration 6 at 2024-11-19 19:35:44. Total running time: 4min 41s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000005 |
| time_this_iter_s 36.51208 |
| time_total_s 275.56393 |
| training_iteration 6 |
| accuracy 0.5784 |
| loss 1.26663 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 6 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000005
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000005)
(func pid=4876) [4, 8000] loss: 0.340 [repeated 3x across cluster]
Trial status: 4 RUNNING | 6 TERMINATED
Current time: 2024-11-19 19:36:03. Total running time: 5min 0s
Logical resource usage: 8.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 RUNNING 16 1 0.00213327 2 1 171.158 1.91776 0.1901 |
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 3 244.347 1.46591 0.4701 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 6 263.081 1.91896 0.2296 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 6 275.564 1.26663 0.5784 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
Trial train_cifar_d0438_00000 finished iteration 2 at 2024-11-19 19:36:04. Total running time: 5min 0s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00000 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000001 |
| time_this_iter_s 123.77119 |
| time_total_s 294.92928 |
| training_iteration 2 |
| accuracy 0.2421 |
| loss 1.87955 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00000 saved a checkpoint for iteration 2 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00000_0_batch_size=2,l1=16,l2=1,lr=0.0021_2024-11-19_19-31-03/checkpoint_000001
Trial train_cifar_d0438_00000 completed after 2 iterations at 2024-11-19 19:36:04. Total running time: 5min 0s
(func pid=4859) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00000_0_batch_size=2,l1=16,l2=1,lr=0.0021_2024-11-19_19-31-03/checkpoint_000001)
(func pid=4876) [4, 10000] loss: 0.266 [repeated 3x across cluster]
Trial train_cifar_d0438_00006 finished iteration 7 at 2024-11-19 19:36:06. Total running time: 5min 3s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000006 |
| time_this_iter_s 34.58927 |
| time_total_s 297.67033 |
| training_iteration 7 |
| accuracy 0.2298 |
| loss 1.90211 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 7 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000006
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000006)
Trial train_cifar_d0438_00005 finished iteration 4 at 2024-11-19 19:36:14. Total running time: 5min 11s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000003 |
| time_this_iter_s 60.9052 |
| time_total_s 305.25229 |
| training_iteration 4 |
| accuracy 0.5153 |
| loss 1.36273 |
+------------------------------------------------------------+
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000003)
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 4 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000003
(func pid=4877) [8, 2000] loss: 1.882 [repeated 2x across cluster]
Trial train_cifar_d0438_00007 finished iteration 7 at 2024-11-19 19:36:20. Total running time: 5min 17s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000006 |
| time_this_iter_s 35.6332 |
| time_total_s 311.19713 |
| training_iteration 7 |
| accuracy 0.581 |
| loss 1.24157 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 7 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000006
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000006)
(func pid=4876) [5, 2000] loss: 1.312
(func pid=4877) [8, 4000] loss: 0.939
(func pid=4876) [5, 4000] loss: 0.659 [repeated 2x across cluster]
Trial status: 7 TERMINATED | 3 RUNNING
Current time: 2024-11-19 19:36:33. Total running time: 5min 30s
Logical resource usage: 6.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 4 305.252 1.36273 0.5153 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 7 297.67 1.90211 0.2298 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 7 311.197 1.24157 0.581 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
Trial train_cifar_d0438_00006 finished iteration 8 at 2024-11-19 19:36:37. Total running time: 5min 34s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000007 |
| time_this_iter_s 31.16706 |
| time_total_s 328.83738 |
| training_iteration 8 |
| accuracy 0.2418 |
| loss 1.87322 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 8 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000007
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000007)
(func pid=4876) [5, 6000] loss: 0.429
(func pid=4882) [8, 4000] loss: 0.501
(func pid=4877) [9, 2000] loss: 1.861
(func pid=4876) [5, 8000] loss: 0.318
Trial train_cifar_d0438_00007 finished iteration 8 at 2024-11-19 19:36:53. Total running time: 5min 50s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000007 |
| time_this_iter_s 33.12405 |
| time_total_s 344.32117 |
| training_iteration 8 |
| accuracy 0.5694 |
| loss 1.32409 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 8 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000007
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000007)
(func pid=4877) [9, 4000] loss: 0.928
(func pid=4876) [5, 10000] loss: 0.253
Trial status: 7 TERMINATED | 3 RUNNING
Current time: 2024-11-19 19:37:03. Total running time: 6min 0s
Logical resource usage: 6.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 4 305.252 1.36273 0.5153 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 8 328.837 1.87322 0.2418 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 8 344.321 1.32409 0.5694 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
Trial train_cifar_d0438_00006 finished iteration 9 at 2024-11-19 19:37:09. Total running time: 6min 6s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000008 |
| time_this_iter_s 31.29114 |
| time_total_s 360.12852 |
| training_iteration 9 |
| accuracy 0.2586 |
| loss 1.8473 |
+------------------------------------------------------------+
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000008)
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 9 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000008
Trial train_cifar_d0438_00005 finished iteration 5 at 2024-11-19 19:37:10. Total running time: 6min 7s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000004 |
| time_this_iter_s 56.15322 |
| time_total_s 361.40551 |
| training_iteration 5 |
| accuracy 0.5252 |
| loss 1.32819 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 5 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000004
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000004)
(func pid=4882) [9, 4000] loss: 0.500 [repeated 2x across cluster]
Trial train_cifar_d0438_00007 finished iteration 9 at 2024-11-19 19:37:27. Total running time: 6min 24s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000008 |
| time_this_iter_s 33.64527 |
| time_total_s 377.96645 |
| training_iteration 9 |
| accuracy 0.568 |
| loss 1.38284 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 9 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000008
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000008)
(func pid=4876) [6, 4000] loss: 0.620 [repeated 3x across cluster]
Trial status: 7 TERMINATED | 3 RUNNING
Current time: 2024-11-19 19:37:33. Total running time: 6min 30s
Logical resource usage: 6.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 5 361.406 1.32819 0.5252 |
| train_cifar_d0438_00006 RUNNING 16 4 0.000147684 8 9 360.129 1.8473 0.2586 |
| train_cifar_d0438_00007 RUNNING 256 256 0.00477469 8 9 377.966 1.38284 0.568 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4882) [10, 2000] loss: 0.895 [repeated 2x across cluster]
Trial train_cifar_d0438_00006 finished iteration 10 at 2024-11-19 19:37:40. Total running time: 6min 37s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00006 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000009 |
| time_this_iter_s 30.96781 |
| time_total_s 391.09634 |
| training_iteration 10 |
| accuracy 0.2756 |
| loss 1.82919 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00006 saved a checkpoint for iteration 10 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000009
Trial train_cifar_d0438_00006 completed after 10 iterations at 2024-11-19 19:37:40. Total running time: 6min 37s
(func pid=4877) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00006_6_batch_size=8,l1=16,l2=4,lr=0.0001_2024-11-19_19-31-03/checkpoint_000009)
(func pid=4876) [6, 8000] loss: 0.311 [repeated 2x across cluster]
(func pid=4876) [6, 10000] loss: 0.241 [repeated 2x across cluster]
Trial train_cifar_d0438_00007 finished iteration 10 at 2024-11-19 19:37:57. Total running time: 6min 54s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00007 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000009 |
| time_this_iter_s 30.45442 |
| time_total_s 408.42087 |
| training_iteration 10 |
| accuracy 0.5602 |
| loss 1.43157 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00007 saved a checkpoint for iteration 10 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000009
Trial train_cifar_d0438_00007 completed after 10 iterations at 2024-11-19 19:37:57. Total running time: 6min 54s
(func pid=4882) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00007_7_batch_size=8,l1=256,l2=256,lr=0.0048_2024-11-19_19-31-03/checkpoint_000009)
Trial train_cifar_d0438_00005 finished iteration 6 at 2024-11-19 19:38:03. Total running time: 7min 0s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000005 |
| time_this_iter_s 52.96318 |
| time_total_s 414.36868 |
| training_iteration 6 |
| accuracy 0.5545 |
| loss 1.24173 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 6 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000005
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000005)
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2024-11-19 19:38:04. Total running time: 7min 0s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 6 414.369 1.24173 0.5545 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4876) [7, 2000] loss: 1.184
(func pid=4876) [7, 4000] loss: 0.599
(func pid=4876) [7, 6000] loss: 0.401
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2024-11-19 19:38:34. Total running time: 7min 30s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 6 414.369 1.24173 0.5545 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4876) [7, 8000] loss: 0.303
(func pid=4876) [7, 10000] loss: 0.237
Trial train_cifar_d0438_00005 finished iteration 7 at 2024-11-19 19:38:50. Total running time: 7min 47s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000006 |
| time_this_iter_s 46.85569 |
| time_total_s 461.22437 |
| training_iteration 7 |
| accuracy 0.5684 |
| loss 1.23514 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 7 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000006
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000006)
(func pid=4876) [8, 2000] loss: 1.159
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2024-11-19 19:39:04. Total running time: 8min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 7 461.224 1.23514 0.5684 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4876) [8, 4000] loss: 0.587
(func pid=4876) [8, 6000] loss: 0.381
(func pid=4876) [8, 8000] loss: 0.291
(func pid=4876) [8, 10000] loss: 0.232
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2024-11-19 19:39:34. Total running time: 8min 31s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 7 461.224 1.23514 0.5684 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
Trial train_cifar_d0438_00005 finished iteration 8 at 2024-11-19 19:39:37. Total running time: 8min 34s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000007 |
| time_this_iter_s 47.37555 |
| time_total_s 508.59993 |
| training_iteration 8 |
| accuracy 0.5763 |
| loss 1.20334 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 8 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000007
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000007)
(func pid=4876) [9, 2000] loss: 1.130
(func pid=4876) [9, 4000] loss: 0.565
(func pid=4876) [9, 6000] loss: 0.381
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2024-11-19 19:40:04. Total running time: 9min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 8 508.6 1.20334 0.5763 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4876) [9, 8000] loss: 0.288
(func pid=4876) [9, 10000] loss: 0.223
Trial train_cifar_d0438_00005 finished iteration 9 at 2024-11-19 19:40:24. Total running time: 9min 20s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000008 |
| time_this_iter_s 46.38124 |
| time_total_s 554.98117 |
| training_iteration 9 |
| accuracy 0.5846 |
| loss 1.17552 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 9 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000008
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000008)
(func pid=4876) [10, 2000] loss: 1.119
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2024-11-19 19:40:34. Total running time: 9min 31s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 9 554.981 1.17552 0.5846 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
(func pid=4876) [10, 4000] loss: 0.554
(func pid=4876) [10, 6000] loss: 0.365
(func pid=4876) [10, 8000] loss: 0.274
(func pid=4876) [10, 10000] loss: 0.225
Trial status: 9 TERMINATED | 1 RUNNING
Current time: 2024-11-19 19:41:04. Total running time: 10min 1s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00005 RUNNING 8 64 0.000353097 4 9 554.981 1.17552 0.5846 |
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
Trial train_cifar_d0438_00005 finished iteration 10 at 2024-11-19 19:41:10. Total running time: 10min 7s
+------------------------------------------------------------+
| Trial train_cifar_d0438_00005 result |
+------------------------------------------------------------+
| checkpoint_dir_name checkpoint_000009 |
| time_this_iter_s 46.39049 |
| time_total_s 601.37165 |
| training_iteration 10 |
| accuracy 0.5812 |
| loss 1.17455 |
+------------------------------------------------------------+
Trial train_cifar_d0438_00005 saved a checkpoint for iteration 10 at: (local)/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000009
Trial train_cifar_d0438_00005 completed after 10 iterations at 2024-11-19 19:41:10. Total running time: 10min 7s
Trial status: 10 TERMINATED
Current time: 2024-11-19 19:41:10. Total running time: 10min 7s
Logical resource usage: 2.0/16 CPUs, 0/1 GPUs (0.0/1.0 accelerator_type:M60)
+------------------------------------------------------------------------------------------------------------------------------------+
| Trial name status l1 l2 lr batch_size iter total time (s) loss accuracy |
+------------------------------------------------------------------------------------------------------------------------------------+
| train_cifar_d0438_00000 TERMINATED 16 1 0.00213327 2 2 294.929 1.87955 0.2421 |
| train_cifar_d0438_00001 TERMINATED 1 2 0.013416 4 1 98.0814 2.31379 0.0968 |
| train_cifar_d0438_00002 TERMINATED 256 64 0.0113784 2 1 188.862 2.2219 0.1461 |
| train_cifar_d0438_00003 TERMINATED 64 256 0.0274071 8 1 57.8842 2.065 0.2244 |
| train_cifar_d0438_00004 TERMINATED 16 2 0.056666 4 1 99.4979 2.34682 0.0992 |
| train_cifar_d0438_00005 TERMINATED 8 64 0.000353097 4 10 601.372 1.17455 0.5812 |
| train_cifar_d0438_00006 TERMINATED 16 4 0.000147684 8 10 391.096 1.82919 0.2756 |
| train_cifar_d0438_00007 TERMINATED 256 256 0.00477469 8 10 408.421 1.43157 0.5602 |
| train_cifar_d0438_00008 TERMINATED 128 256 0.0306227 8 2 104.983 2.07797 0.2313 |
| train_cifar_d0438_00009 TERMINATED 2 16 0.0286986 2 1 142.694 2.32532 0.1005 |
+------------------------------------------------------------------------------------------------------------------------------------+
Best trial config: {'l1': 8, 'l2': 64, 'lr': 0.0003530972286268149, 'batch_size': 4}
Best trial final validation loss: 1.1745526721894741
Best trial final validation accuracy: 0.5812
(func pid=4876) Checkpoint successfully created at: Checkpoint(filesystem=local, path=/var/lib/ci-user/ray_results/train_cifar_2024-11-19_19-31-03/train_cifar_d0438_00005_5_batch_size=4,l1=8,l2=64,lr=0.0004_2024-11-19_19-31-03/checkpoint_000009)
Files already downloaded and verified
Files already downloaded and verified
Best trial test set accuracy: 0.591
If you run the code, an example output could look like this:
Number of trials: 10/10 (10 TERMINATED)
+-----+--------------+------+------+-------------+--------+---------+------------+
| ... | batch_size | l1 | l2 | lr | iter | loss | accuracy |
|-----+--------------+------+------+-------------+--------+---------+------------|
| ... | 2 | 1 | 256 | 0.000668163 | 1 | 2.31479 | 0.0977 |
| ... | 4 | 64 | 8 | 0.0331514 | 1 | 2.31605 | 0.0983 |
| ... | 4 | 2 | 1 | 0.000150295 | 1 | 2.30755 | 0.1023 |
| ... | 16 | 32 | 32 | 0.0128248 | 10 | 1.66912 | 0.4391 |
| ... | 4 | 8 | 128 | 0.00464561 | 2 | 1.7316 | 0.3463 |
| ... | 8 | 256 | 8 | 0.00031556 | 1 | 2.19409 | 0.1736 |
| ... | 4 | 16 | 256 | 0.00574329 | 2 | 1.85679 | 0.3368 |
| ... | 8 | 2 | 2 | 0.00325652 | 1 | 2.30272 | 0.0984 |
| ... | 2 | 2 | 2 | 0.000342987 | 2 | 1.76044 | 0.292 |
| ... | 4 | 64 | 32 | 0.003734 | 8 | 1.53101 | 0.4761 |
+-----+--------------+------+------+-------------+--------+---------+------------+
Best trial config: {'l1': 64, 'l2': 32, 'lr': 0.0037339984519545164, 'batch_size': 4}
Best trial final validation loss: 1.5310075663924216
Best trial final validation accuracy: 0.4761
Best trial test set accuracy: 0.4737
Most trials have been stopped early in order to avoid wasting resources. The best performing trial achieved a validation accuracy of about 47%, which could be confirmed on the test set.
So that’s it! You can now tune the parameters of your PyTorch models.
Total running time of the script: ( 10 minutes 25.051 seconds)