2022-02-18 13:42:22 -07:00
|
|
|
# Copyright 2021 Google LLC
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2024-10-17 11:36:09 -06:00
|
|
|
mkdir -p logs
|
2022-02-18 13:42:22 -07:00
|
|
|
|
2024-10-14 14:19:56 -06:00
|
|
|
SECONDS=0
|
|
|
|
|
|
|
|
echo '======== 1 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 0 --logdir exp/cifar10 2>&1 | tee logs/log_0
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 2 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 1 --logdir exp/cifar10 2>&1 | tee logs/log_1
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 3 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 2 --logdir exp/cifar10 2>&1 | tee logs/log_2
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 4 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 3 --logdir exp/cifar10 2>&1 | tee logs/log_3
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 5 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 4 --logdir exp/cifar10 2>&1 | tee logs/log_4
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 6 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 5 --logdir exp/cifar10 2>&1 | tee logs/log_5
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 7 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 6 --logdir exp/cifar10 2>&1 | tee logs/log_6
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 8 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 7 --logdir exp/cifar10 2>&1 | tee logs/log_7
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 9 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 8 --logdir exp/cifar10 2>&1 | tee logs/log_8
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 10 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 9 --logdir exp/cifar10 2>&1 | tee logs/log_9
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 11 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 10 --logdir exp/cifar10 2>&1 | tee logs/log_10
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 12 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 11 --logdir exp/cifar10 2>&1 | tee logs/log_11
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 13 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 12 --logdir exp/cifar10 2>&1 | tee logs/log_12
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 14 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 13 --logdir exp/cifar10 2>&1 | tee logs/log_13
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 15 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 14 --logdir exp/cifar10 2>&1 | tee logs/log_14
|
2024-10-14 14:19:56 -06:00
|
|
|
echo '======== 16 of 16 ========'
|
2024-10-14 14:14:45 -06:00
|
|
|
CUDA_VISIBLE_DEVICES='0' python3 -u train.py --dataset=cifar10 --epochs=100 --save_steps=20 --arch wrn28-2 --num_experiments 16 --expid 15 --logdir exp/cifar10 2>&1 | tee logs/log_15
|
2024-10-14 14:19:56 -06:00
|
|
|
|
|
|
|
echo "COMPLETE: Took ${SECONDS} seconds"
|