diff --git a/Image/ShuffleNetv2/code/model.py b/Image/ShuffleNetv2/code/model.py deleted file mode 100644 index f6bf4b6fd9f7136ca5caa64a04831bec87ff0c5d..0000000000000000000000000000000000000000 --- a/Image/ShuffleNetv2/code/model.py +++ /dev/null @@ -1,366 +0,0 @@ -''' -ShuffleNetV2 in PyTorch. - -ShuffleNetV2是ShuffleNet的改进版本,通过实验总结出了四个高效网络设计的实用准则: -1. 输入输出通道数相等时计算量最小 -2. 过度使用组卷积会增加MAC(内存访问代价) -3. 网络碎片化会降低并行度 -4. Element-wise操作不可忽视 - -主要改进: -1. 通道分离(Channel Split)替代组卷积 -2. 重新设计了基本单元,使输入输出通道数相等 -3. 每个阶段使用不同的通道数配置 -4. 简化了下采样模块的设计 - -Reference: -[1] Ningning Ma, Xiangyu Zhang, Hai-Tao Zheng, Jian Sun - ShuffleNet V2: Practical Guidelines for Efficient CNN Architecture Design. ECCV 2018. -''' -import torch -import torch.nn as nn -import torch.nn.functional as F - - -class ShuffleBlock(nn.Module): - """通道重排模块 - - 通过重新排列通道的顺序来实现不同特征的信息交流。 - - Args: - groups (int): 分组数量,默认为2 - """ - def __init__(self, groups=2): - super(ShuffleBlock, self).__init__() - self.groups = groups - - def forward(self, x): - """通道重排的前向传播 - - 步骤: - 1. [N,C,H,W] -> [N,g,C/g,H,W] # 重塑为g组 - 2. [N,g,C/g,H,W] -> [N,C/g,g,H,W] # 转置g维度 - 3. [N,C/g,g,H,W] -> [N,C,H,W] # 重塑回原始形状 - - Args: - x: 输入张量,[N,C,H,W] - - Returns: - out: 通道重排后的张量,[N,C,H,W] - """ - N, C, H, W = x.size() - g = self.groups - return x.view(N, g, C//g, H, W).permute(0, 2, 1, 3, 4).reshape(N, C, H, W) - - -class SplitBlock(nn.Module): - """通道分离模块 - - 将输入特征图按比例分成两部分。 - - Args: - ratio (float): 分离比例,默认为0.5 - """ - def __init__(self, ratio): - super(SplitBlock, self).__init__() - self.ratio = ratio - - def forward(self, x): - """通道分离的前向传播 - - Args: - x: 输入张量,[N,C,H,W] - - Returns: - tuple: 分离后的两个张量,[N,C1,H,W]和[N,C2,H,W] - """ - c = int(x.size(1) * self.ratio) - return x[:, :c, :, :], x[:, c:, :, :] - - -class BasicBlock(nn.Module): - """ShuffleNetV2的基本模块 - - 结构: - x -------|-----------------| - | | | - | 1x1 Conv | - | 3x3 DWConv | - | 1x1 Conv | - | | - |------------------Concat - | - Channel Shuffle - - Args: - in_channels (int): 输入通道数 - split_ratio (float): 通道分离比例,默认为0.5 - """ - def __init__(self, in_channels, split_ratio=0.5): - super(BasicBlock, self).__init__() - self.split = SplitBlock(split_ratio) - in_channels = int(in_channels * split_ratio) - - # 主分支 - self.conv1 = nn.Conv2d(in_channels, in_channels, - kernel_size=1, bias=False) - self.bn1 = nn.BatchNorm2d(in_channels) - - self.conv2 = nn.Conv2d(in_channels, in_channels, - kernel_size=3, stride=1, padding=1, - groups=in_channels, bias=False) - self.bn2 = nn.BatchNorm2d(in_channels) - - self.conv3 = nn.Conv2d(in_channels, in_channels, - kernel_size=1, bias=False) - self.bn3 = nn.BatchNorm2d(in_channels) - - self.shuffle = ShuffleBlock() - - def forward(self, x): - # 通道分离 - x1, x2 = self.split(x) - - # 主分支 - out = F.relu(self.bn1(self.conv1(x2))) - out = self.bn2(self.conv2(out)) - out = F.relu(self.bn3(self.conv3(out))) - - # 拼接并重排 - out = torch.cat([x1, out], 1) - out = self.shuffle(out) - return out - - -class DownBlock(nn.Module): - """下采样模块 - - 结构: - 3x3 DWConv(s=2) 1x1 Conv - x -----> 1x1 Conv 3x3 DWConv(s=2) - 1x1 Conv - | - Concat - | - Channel Shuffle - - Args: - in_channels (int): 输入通道数 - out_channels (int): 输出通道数 - """ - def __init__(self, in_channels, out_channels): - super(DownBlock, self).__init__() - mid_channels = out_channels // 2 - - # 左分支 - self.branch1 = nn.Sequential( - # 3x3深度可分离卷积,步长为2 - nn.Conv2d(in_channels, in_channels, - kernel_size=3, stride=2, padding=1, - groups=in_channels, bias=False), - nn.BatchNorm2d(in_channels), - # 1x1卷积 - nn.Conv2d(in_channels, mid_channels, - kernel_size=1, bias=False), - nn.BatchNorm2d(mid_channels) - ) - - # 右分支 - self.branch2 = nn.Sequential( - # 1x1卷积 - nn.Conv2d(in_channels, mid_channels, - kernel_size=1, bias=False), - nn.BatchNorm2d(mid_channels), - # 3x3深度可分离卷积,步长为2 - nn.Conv2d(mid_channels, mid_channels, - kernel_size=3, stride=2, padding=1, - groups=mid_channels, bias=False), - nn.BatchNorm2d(mid_channels), - # 1x1卷积 - nn.Conv2d(mid_channels, mid_channels, - kernel_size=1, bias=False), - nn.BatchNorm2d(mid_channels) - ) - - self.shuffle = ShuffleBlock() - - def forward(self, x): - # 左分支 - out1 = self.branch1(x) - - # 右分支 - out2 = self.branch2(x) - - # 拼接并重排 - out = torch.cat([out1, out2], 1) - out = self.shuffle(out) - return out - - -class ShuffleNetV2(nn.Module): - """ShuffleNetV2模型 - - 网络结构: - 1. 一个卷积层进行特征提取 - 2. 三个阶段,每个阶段包含多个基本块和一个下采样块 - 3. 最后一个卷积层 - 4. 平均池化和全连接层进行分类 - - Args: - net_size (float): 网络大小系数,可选0.5/1.0/1.5/2.0 - """ - def __init__(self, net_size = 0.5, num_classes = 10): - super(ShuffleNetV2, self).__init__() - out_channels = configs[net_size]['out_channels'] - num_blocks = configs[net_size]['num_blocks'] - - # 第一层卷积 - self.conv1 = nn.Conv2d(3, 24, kernel_size=3, - stride=1, padding=1, bias=False) - self.bn1 = nn.BatchNorm2d(24) - self.in_channels = 24 - - # 三个阶段 - self.layer1 = self._make_layer(out_channels[0], num_blocks[0]) - self.layer2 = self._make_layer(out_channels[1], num_blocks[1]) - self.layer3 = self._make_layer(out_channels[2], num_blocks[2]) - - # 最后的1x1卷积 - self.conv2 = nn.Conv2d(out_channels[2], out_channels[3], - kernel_size=1, stride=1, padding=0, bias=False) - self.bn2 = nn.BatchNorm2d(out_channels[3]) - - # 分类层 - self.avg_pool = nn.AdaptiveAvgPool2d(1) - self.classifier = nn.Linear(out_channels[3], num_classes) - - # 初始化权重 - self._initialize_weights() - - def _make_layer(self, out_channels, num_blocks): - """构建一个阶段 - - Args: - out_channels (int): 输出通道数 - num_blocks (int): 基本块的数量 - - Returns: - nn.Sequential: 一个阶段的层序列 - """ - layers = [DownBlock(self.in_channels, out_channels)] - for i in range(num_blocks): - layers.append(BasicBlock(out_channels)) - self.in_channels = out_channels - return nn.Sequential(*layers) - - def forward(self, x): - """前向传播 - - Args: - x: 输入张量,[N,3,32,32] - - Returns: - out: 输出张量,[N,num_classes] - """ - # 特征提取 - out = F.relu(self.bn1(self.conv1(x))) - - # 三个阶段 - out = self.layer1(out) - out = self.layer2(out) - out = self.layer3(out) - - # 最后的特征提取 - out = F.relu(self.bn2(self.conv2(out))) - - # 分类 - out = self.avg_pool(out) - out = out.view(out.size(0), -1) - out = self.classifier(out) - return out - - def feature(self, x): - # 特征提取 - out = F.relu(self.bn1(self.conv1(x))) - - # 三个阶段 - out = self.layer1(out) - out = self.layer2(out) - out = self.layer3(out) - - # 最后的特征提取 - out = F.relu(self.bn2(self.conv2(out))) - - # 分类 - out = self.avg_pool(out) - return out - - def prediction(self, out): - out = out.view(out.size(0), -1) - out = self.classifier(out) - return out - - def _initialize_weights(self): - """初始化模型权重 - - 采用kaiming初始化方法: - - 卷积层权重采用kaiming_normal_初始化 - - BN层参数采用常数初始化 - - 线性层采用正态分布初始化 - """ - for m in self.modules(): - if isinstance(m, nn.Conv2d): - nn.init.kaiming_normal_(m.weight, mode='fan_out', nonlinearity='relu') - if m.bias is not None: - nn.init.constant_(m.bias, 0) - elif isinstance(m, nn.BatchNorm2d): - nn.init.constant_(m.weight, 1) - nn.init.constant_(m.bias, 0) - elif isinstance(m, nn.Linear): - nn.init.normal_(m.weight, 0, 0.01) - nn.init.constant_(m.bias, 0) - - -# 不同大小的网络配置 -configs = { - 0.5: { - 'out_channels': (48, 96, 192, 1024), - 'num_blocks': (3, 7, 3) - }, - 1.0: { - 'out_channels': (116, 232, 464, 1024), - 'num_blocks': (3, 7, 3) - }, - 1.5: { - 'out_channels': (176, 352, 704, 1024), - 'num_blocks': (3, 7, 3) - }, - 2.0: { - 'out_channels': (224, 488, 976, 2048), - 'num_blocks': (3, 7, 3) - } -} - - -def test(): - """测试函数""" - # 创建模型 - net = ShuffleNetV2(net_size=0.5) - print('Model Structure:') - print(net) - - # 测试前向传播 - x = torch.randn(1,3,32,32) - y = net(x) - print('\nInput Shape:', x.shape) - print('Output Shape:', y.shape) - - # 打印模型信息 - from torchinfo import summary - device = 'cuda' if torch.cuda.is_available() else 'cpu' - net = net.to(device) - summary(net, (1,3,32,32)) - - -if __name__ == '__main__': - test() \ No newline at end of file diff --git a/Image/ShuffleNetv2/code/train.py b/Image/ShuffleNetv2/code/train.py deleted file mode 100644 index d54df9e801b9bda7921befe94ad61978f0c8f2de..0000000000000000000000000000000000000000 --- a/Image/ShuffleNetv2/code/train.py +++ /dev/null @@ -1,59 +0,0 @@ -import sys -import os -sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) -from utils.dataset_utils import get_cifar10_dataloaders -from utils.train_utils import train_model, train_model_data_augmentation, train_model_backdoor -from utils.parse_args import parse_args -from model import ShuffleNetv2 - -def main(): - # 解析命令行参数 - args = parse_args() - - # 创建模型 - model = ShuffleNetv2() - - if args.train_type == '0': - # 获取数据加载器 - trainloader, testloader = get_cifar10_dataloaders(batch_size=args.batch_size, local_dataset_path=args.dataset_path) - # 训练模型 - train_model( - model=model, - trainloader=trainloader, - testloader=testloader, - epochs=args.epochs, - lr=args.lr, - device=f'cuda:{args.gpu}', - save_dir='../model', - model_name='shufflenetv2', - save_type='0' - ) - elif args.train_type == '1': - train_model_data_augmentation( - model, - epochs=args.epochs, - lr=args.lr, - device=f'cuda:{args.gpu}', - save_dir='../model', - model_name='shufflenetv2', - batch_size=args.batch_size, - num_workers=args.num_workers, - local_dataset_path=args.dataset_path - ) - elif args.train_type == '2': - train_model_backdoor( - model, - poison_ratio=args.poison_ratio, - target_label=args.target_label, - epochs=args.epochs, - lr=args.lr, - device=f'cuda:{args.gpu}', - save_dir='../model', - model_name='shufflenetv2', - batch_size=args.batch_size, - num_workers=args.num_workers, - local_dataset_path=args.dataset_path - ) - -if __name__ == '__main__': - main() diff --git a/Image/ShuffleNetv2/dataset/.gitkeep b/Image/ShuffleNetv2/dataset/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/Image/ShuffleNetv2/model/.gitkeep b/Image/ShuffleNetv2/model/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/Image/utils/dataset_utils.py b/Image/utils/dataset_utils.py deleted file mode 100644 index 1acd0e039a4b0e3bc74ca4a9d2de58471380d517..0000000000000000000000000000000000000000 --- a/Image/utils/dataset_utils.py +++ /dev/null @@ -1,110 +0,0 @@ -import torch -import torchvision -import torchvision.transforms as transforms -import os - -def get_cifar10_dataloaders(batch_size=128, num_workers=2, local_dataset_path=None,shuffle=True): - """获取CIFAR10数据集的数据加载器 - - Args: - batch_size: 批次大小 - num_workers: 数据加载的工作进程数 - local_dataset_path: 本地数据集路径,如果提供则使用本地数据集,否则下载 - - Returns: - trainloader: 训练数据加载器 - testloader: 测试数据加载器 - """ - # 数据预处理 - transform_train = transforms.Compose([ - transforms.RandomCrop(32, padding=4), - transforms.RandomHorizontalFlip(), - transforms.ToTensor(), - transforms.Normalize((0.4914, 0.4822, 0.4465), (0.2023, 0.1994, 0.2010)), - ]) - - transform_test = transforms.Compose([ - transforms.ToTensor(), - transforms.Normalize((0.4914, 0.4822, 0.4465), (0.2023, 0.1994, 0.2010)), - ]) - - # 设置数据集路径 - if local_dataset_path: - print(f"使用本地数据集: {local_dataset_path}") - download = False - dataset_path = local_dataset_path - else: - print("未指定本地数据集路径,将下载数据集") - download = True - dataset_path = '../dataset' - - # 创建数据集路径 - if not os.path.exists(dataset_path): - os.makedirs(dataset_path) - - trainset = torchvision.datasets.CIFAR10( - root=dataset_path, train=True, download=download, transform=transform_train) - trainloader = torch.utils.data.DataLoader( - trainset, batch_size=batch_size, shuffle=shuffle, num_workers=num_workers) - - testset = torchvision.datasets.CIFAR10( - root=dataset_path, train=False, download=download, transform=transform_test) - testloader = torch.utils.data.DataLoader( - testset, batch_size=batch_size, shuffle=shuffle, num_workers=num_workers) - - return trainloader, testloader - -def get_mnist_dataloaders(batch_size=128, num_workers=2, local_dataset_path=None,shuffle=True): - """获取MNIST数据集的数据加载器 - - Args: - batch_size: 批次大小 - num_workers: 数据加载的工作进程数 - local_dataset_path: 本地数据集路径,如果提供则使用本地数据集,否则下载 - - Returns: - trainloader: 训练数据加载器 - testloader: 测试数据加载器 - """ - # 数据预处理 - transform_train = transforms.Compose([ - transforms.RandomRotation(10), # 随机旋转±10度 - transforms.RandomAffine( # 随机仿射变换 - degrees=0, # 不进行旋转 - translate=(0.1, 0.1), # 平移范围 - scale=(0.9, 1.1) # 缩放范围 - ), - transforms.ToTensor(), - transforms.Normalize((0.1307,), (0.3081,)) # MNIST数据集的均值和标准差 - ]) - - transform_test = transforms.Compose([ - transforms.ToTensor(), - transforms.Normalize((0.1307,), (0.3081,)) - ]) - - # 设置数据集路径 - if local_dataset_path: - print(f"使用本地数据集: {local_dataset_path}") - download = False - dataset_path = local_dataset_path - else: - print("未指定本地数据集路径,将下载数据集") - download = True - dataset_path = '../dataset' - - # 创建数据集路径 - if not os.path.exists(dataset_path): - os.makedirs(dataset_path) - - trainset = torchvision.datasets.MNIST( - root=dataset_path, train=True, download=download, transform=transform_train) - trainloader = torch.utils.data.DataLoader( - trainset, batch_size=batch_size, shuffle=shuffle, num_workers=num_workers) - - testset = torchvision.datasets.MNIST( - root=dataset_path, train=False, download=download, transform=transform_test) - testloader = torch.utils.data.DataLoader( - testset, batch_size=batch_size, shuffle=shuffle, num_workers=num_workers) - - return trainloader, testloader diff --git a/Image/utils/parse_args.py b/Image/utils/parse_args.py deleted file mode 100644 index 998e17d974a5bba504540be0859442da99dd45a9..0000000000000000000000000000000000000000 --- a/Image/utils/parse_args.py +++ /dev/null @@ -1,19 +0,0 @@ -import argparse - -def parse_args(): - """解析命令行参数 - - Returns: - args: 解析后的参数 - """ - parser = argparse.ArgumentParser(description='训练模型') - parser.add_argument('--gpu', type=int, default=0, help='GPU设备编号 (0,1,2,3)') - parser.add_argument('--batch-size', type=int, default=128, help='批次大小') - parser.add_argument('--epochs', type=int, default=200, help='训练轮数') - parser.add_argument('--lr', type=float, default=0.1, help='学习率') - parser.add_argument('--num-workers', type=int, default=2, help='数据加载的工作进程数') - parser.add_argument('--poison-ratio', type=float, default=0.1, help='恶意样本比例') - parser.add_argument('--target-label', type=int, default=0, help='目标类别') - parser.add_argument('--train-type',type=str,choices=['0','1','2'],default='0',help='训练类型:0 for normal train, 1 for data aug train,2 for back door train') - parser.add_argument('--dataset-path', type=str, default=None, help='本地数据集路径,如果不指定则自动下载') - return parser.parse_args() \ No newline at end of file diff --git a/Image/utils/train_utils.py b/Image/utils/train_utils.py deleted file mode 100644 index 23ee83897d9d11ee02de5575c9d3655be46847fa..0000000000000000000000000000000000000000 --- a/Image/utils/train_utils.py +++ /dev/null @@ -1,381 +0,0 @@ -""" -通用模型训练工具 - -提供了模型训练、评估、保存等功能,支持: -1. 训练进度可视化 -2. 日志记录 -3. 模型检查点保存 -4. 嵌入向量收集 -""" - -import torch -import torch.nn as nn -import torch.optim as optim -import time -import os -import logging -import numpy as np -from tqdm import tqdm -import sys -from pathlib import Path -import torch.nn.functional as F -import torchvision.transforms as transforms - -# 将项目根目录添加到Python路径中 -current_dir = Path(__file__).resolve().parent -project_root = current_dir.parent.parent -sys.path.append(str(project_root)) - -from ttv_utils import time_travel_saver - -def setup_logger(log_file): - """配置日志记录器,如果日志文件存在则覆盖 - - Args: - log_file: 日志文件路径 - - Returns: - logger: 配置好的日志记录器 - """ - # 创建logger - logger = logging.getLogger('train') - logger.setLevel(logging.INFO) - - # 移除现有的处理器 - if logger.hasHandlers(): - logger.handlers.clear() - - # 创建文件处理器,使用'w'模式覆盖现有文件 - fh = logging.FileHandler(log_file, mode='w') - fh.setLevel(logging.INFO) - - # 创建控制台处理器 - ch = logging.StreamHandler() - ch.setLevel(logging.INFO) - - # 创建格式器 - formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') - fh.setFormatter(formatter) - ch.setFormatter(formatter) - - # 添加处理器 - logger.addHandler(fh) - logger.addHandler(ch) - - return logger - -def train_model(model, trainloader, testloader, epochs=200, lr=0.1, device='cuda:0', - save_dir='./checkpoints', model_name='model', save_type='0',layer_name=None,interval = 2): - """通用的模型训练函数 - Args: - model: 要训练的模型 - trainloader: 训练数据加载器 - testloader: 测试数据加载器 - epochs: 训练轮数 - lr: 学习率 - device: 训练设备,格式为'cuda:N',其中N为GPU编号(0,1,2,3) - save_dir: 模型保存目录 - model_name: 模型名称 - save_type: 保存类型,0为普通训练,1为数据增强训练,2为后门训练 - """ - # 检查并设置GPU设备 - if not torch.cuda.is_available(): - print("CUDA不可用,将使用CPU训练") - device = 'cpu' - elif not device.startswith('cuda:'): - device = f'cuda:0' - - # 确保device格式正确 - if device.startswith('cuda:'): - gpu_id = int(device.split(':')[1]) - if gpu_id >= torch.cuda.device_count(): - print(f"GPU {gpu_id} 不可用,将使用GPU 0") - device = 'cuda:0' - - # 设置保存目录 0 for normal train, 1 for data aug train,2 for back door train - if not os.path.exists(save_dir): - os.makedirs(save_dir) - - # 设置日志 0 for normal train, 1 for data aug train,2 for back door train - if save_type == '0': - log_file = os.path.join(os.path.dirname(save_dir), 'code', 'train.log') - if not os.path.exists(os.path.dirname(log_file)): - os.makedirs(os.path.dirname(log_file)) - elif save_type == '1': - log_file = os.path.join(os.path.dirname(save_dir), 'code', 'data_aug_train.log') - if not os.path.exists(os.path.dirname(log_file)): - os.makedirs(os.path.dirname(log_file)) - elif save_type == '2': - log_file = os.path.join(os.path.dirname(save_dir), 'code', 'backdoor_train.log') - if not os.path.exists(os.path.dirname(log_file)): - os.makedirs(os.path.dirname(log_file)) - logger = setup_logger(log_file) - - # 设置epoch保存目录 0 for normal train, 1 for data aug train,2 for back door train - save_dir = os.path.join(save_dir, save_type) - if not os.path.exists(save_dir): - os.makedirs(save_dir) - - # 损失函数和优化器 - criterion = nn.CrossEntropyLoss() - optimizer = optim.SGD(model.parameters(), lr=lr, momentum=0.9, weight_decay=5e-4) - scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(optimizer, T_max=200) - - # 移动模型到指定设备 - model = model.to(device) - best_acc = 0 - start_time = time.time() - - logger.info(f'开始训练 {model_name}') - logger.info(f'总轮数: {epochs}, 学习率: {lr}, 设备: {device}') - - for epoch in range(epochs): - # 训练阶段 - model.train() - train_loss = 0 - correct = 0 - total = 0 - - train_pbar = tqdm(trainloader, desc=f'Epoch {epoch+1}/{epochs} [Train]') - for batch_idx, (inputs, targets) in enumerate(train_pbar): - inputs, targets = inputs.to(device), targets.to(device) - optimizer.zero_grad() - outputs = model(inputs) - loss = criterion(outputs, targets) - loss.backward() - optimizer.step() - - train_loss += loss.item() - _, predicted = outputs.max(1) - total += targets.size(0) - correct += predicted.eq(targets).sum().item() - - # 更新进度条 - train_pbar.set_postfix({ - 'loss': f'{train_loss/(batch_idx+1):.3f}', - 'acc': f'{100.*correct/total:.2f}%' - }) - - # 每100步记录一次 - if batch_idx % 100 == 0: - logger.info(f'Epoch: {epoch+1} | Batch: {batch_idx} | ' - f'Loss: {train_loss/(batch_idx+1):.3f} | ' - f'Acc: {100.*correct/total:.2f}%') - - # 测试阶段 - model.eval() - test_loss = 0 - correct = 0 - total = 0 - - test_pbar = tqdm(testloader, desc=f'Epoch {epoch+1}/{epochs} [Test]') - with torch.no_grad(): - for batch_idx, (inputs, targets) in enumerate(test_pbar): - inputs, targets = inputs.to(device), targets.to(device) - outputs = model(inputs) - loss = criterion(outputs, targets) - - test_loss += loss.item() - _, predicted = outputs.max(1) - total += targets.size(0) - correct += predicted.eq(targets).sum().item() - - # 更新进度条 - test_pbar.set_postfix({ - 'loss': f'{test_loss/(batch_idx+1):.3f}', - 'acc': f'{100.*correct/total:.2f}%' - }) - - # 计算测试精度 - acc = 100.*correct/total - logger.info(f'Epoch: {epoch+1} | Test Loss: {test_loss/(batch_idx+1):.3f} | ' - f'Test Acc: {acc:.2f}%') - - - if epoch == 0: - ordered_loader = torch.utils.data.DataLoader( - trainloader.dataset, # 使用相同的数据集 - batch_size=trainloader.batch_size, - shuffle=False, # 确保顺序加载 - num_workers=trainloader.num_workers - ) - save_model = time_travel_saver(model, ordered_loader, device, save_dir, model_name, interval = 1, auto_save_embedding = True, layer_name = layer_name, show= True ) - - # 每5个epoch保存一次 - if (epoch + 1) % interval == 0: - # 创建一个专门用于收集embedding的顺序dataloader - ordered_loader = torch.utils.data.DataLoader( - trainloader.dataset, # 使用相同的数据集 - batch_size=trainloader.batch_size, - shuffle=False, # 确保顺序加载 - num_workers=trainloader.num_workers - ) - save_model = time_travel_saver(model, ordered_loader, device, save_dir, model_name, interval = 1, auto_save_embedding = True, layer_name = layer_name ) - save_model.save() - - scheduler.step() - - logger.info('训练完成!') - -def train_model_data_augmentation(model, epochs=200, lr=0.1, device='cuda:0', - save_dir='./checkpoints', model_name='model', - batch_size=128, num_workers=2, local_dataset_path=None): - """使用数据增强训练模型 - - 数据增强方案说明: - 1. RandomCrop: 随机裁剪,先填充4像素,再裁剪回原始大小,增加位置多样性 - 2. RandomHorizontalFlip: 随机水平翻转,增加方向多样性 - 3. RandomRotation: 随机旋转15度,增加角度多样性 - 4. ColorJitter: 颜色抖动,调整亮度、对比度、饱和度和色调 - 5. RandomErasing: 随机擦除部分区域,模拟遮挡情况 - 6. RandomPerspective: 随机透视变换,增加视角多样性 - - Args: - model: 要训练的模型 - epochs: 训练轮数 - lr: 学习率 - device: 训练设备 - save_dir: 模型保存目录 - model_name: 模型名称 - batch_size: 批次大小 - num_workers: 数据加载的工作进程数 - local_dataset_path: 本地数据集路径 - """ - import torchvision.transforms as transforms - from .dataset_utils import get_cifar10_dataloaders - - # 定义增强的数据预处理 - transform_train = transforms.Compose([ - transforms.RandomCrop(32, padding=4), - transforms.RandomHorizontalFlip(), - transforms.RandomRotation(15), - transforms.ColorJitter( - brightness=0.2, - contrast=0.2, - saturation=0.2, - hue=0.1 - ), - transforms.RandomPerspective(distortion_scale=0.2, p=0.5), - transforms.ToTensor(), - transforms.Normalize((0.4914, 0.4822, 0.4465), (0.2023, 0.1994, 0.2010)), - transforms.RandomErasing(p=0.5, scale=(0.02, 0.33), ratio=(0.3, 3.3)) - ]) - - # 获取数据加载器 - trainloader, testloader = get_cifar10_dataloaders(batch_size, num_workers, local_dataset_path) - - # 使用增强的训练数据 - trainset = trainloader.dataset - trainset.transform = transform_train - trainloader = torch.utils.data.DataLoader( - trainset, batch_size=batch_size, shuffle=True, num_workers=num_workers) - - # 调用通用训练函数 - train_model(model, trainloader, testloader, epochs, lr, device, save_dir, model_name, save_type='1') - -def train_model_backdoor(model, poison_ratio=0.1, target_label=0, epochs=200, lr=0.1, - device='cuda:0', save_dir='./checkpoints', model_name='model', - batch_size=128, num_workers=2, local_dataset_path=None, layer_name=None,interval = 2): - """训练带后门的模型 - - 后门攻击方案说明: - 1. 标签翻转攻击:将选定比例的样本标签修改为目标标签 - 2. 触发器模式:在选定样本的右下角添加一个4x4的白色方块作为触发器 - 3. 验证策略: - - 在干净数据上验证模型性能(确保正常样本分类准确率) - - 在带触发器的数据上验证攻击成功率 - - Args: - model: 要训练的模型 - poison_ratio: 投毒比例 - target_label: 目标标签 - epochs: 训练轮数 - lr: 学习率 - device: 训练设备 - save_dir: 模型保存目录 - model_name: 模型名称 - batch_size: 批次大小 - num_workers: 数据加载的工作进程数 - local_dataset_path: 本地数据集路径 - """ - from .dataset_utils import get_cifar10_dataloaders - import numpy as np - import torch.nn.functional as F - - # 获取原始数据加载器 - trainloader, testloader = get_cifar10_dataloaders(batch_size, num_workers, local_dataset_path) - - # 修改部分训练数据的标签和添加触发器 - trainset = trainloader.dataset - num_poison = int(len(trainset) * poison_ratio) - poison_indices = np.random.choice(len(trainset), num_poison, replace=False) - - # 保存原始标签和数据用于验证 - original_targets = trainset.targets.copy() - original_data = trainset.data.copy() - - # 修改选中数据的标签和添加触发器 - trigger_pattern = np.ones((4, 4, 3), dtype=np.uint8) * 255 # 4x4白色方块作为触发器 - for idx in poison_indices: - # 修改标签 - trainset.targets[idx] = target_label - # 添加触发器到右下角 - trainset.data[idx, -4:, -4:] = trigger_pattern - - # 创建新的数据加载器 - poisoned_trainloader = torch.utils.data.DataLoader( - trainset, batch_size=batch_size, shuffle=True, num_workers=num_workers) - - # 训练模型 - train_model(model, poisoned_trainloader, testloader, epochs, lr, device, save_dir, model_name, save_type='2', layer_name=layer_name,interval = interval) - - # 恢复原始数据用于验证 - trainset.targets = original_targets - trainset.data = original_data - - # 创建验证数据加载器(干净数据) - validation_loader = torch.utils.data.DataLoader( - trainset, batch_size=batch_size, shuffle=False, num_workers=num_workers) - - # 在干净验证集上评估模型 - model.eval() - correct = 0 - total = 0 - with torch.no_grad(): - for inputs, targets in validation_loader: - inputs, targets = inputs.to(device), targets.to(device) - outputs = model(inputs) - _, predicted = outputs.max(1) - total += targets.size(0) - correct += predicted.eq(targets).sum().item() - - clean_accuracy = 100. * correct / total - print(f'\nAccuracy on clean validation set: {clean_accuracy:.2f}%') - - # 创建带触发器的验证数据集 - trigger_validation = trainset.data.copy() - trigger_validation_targets = np.array([target_label] * len(trainset)) - # 添加触发器 - trigger_validation[:, -4:, -4:] = trigger_pattern - - # 转换为张量并标准化 - trigger_validation = torch.tensor(trigger_validation).float().permute(0, 3, 1, 2) / 255.0 - # 使用正确的方式进行图像标准化 - normalize = transforms.Normalize(mean=(0.4914, 0.4822, 0.4465), - std=(0.2023, 0.1994, 0.2010)) - trigger_validation = normalize(trigger_validation) - - # 在带触发器的验证集上评估模型 - correct = 0 - total = 0 - batch_size = 100 - for i in range(0, len(trigger_validation), batch_size): - inputs = trigger_validation[i:i+batch_size].to(device) - targets = torch.tensor(trigger_validation_targets[i:i+batch_size]).to(device) - outputs = model(inputs) - _, predicted = outputs.max(1) - total += targets.size(0) - correct += predicted.eq(targets).sum().item() - - attack_success_rate = 100. * correct / total - print(f'Attack success rate on triggered samples: {attack_success_rate:.2f}%') diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy b/ShuffleNet-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy index 69d0b9f7c640226e5cb20faf8f351cc97f9e9bdf..f6bb267fb7dcd29a298dd726d865b3638270c031 100644 --- a/ShuffleNet-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy +++ b/ShuffleNet-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:383f3dac7962d888cc48ddf547f830532dbde3b6f348145c0cf010f62b306a8d +oid sha256:1cd3d05324334762f33c91931defbfaf31f69e31f1d5f92124aec49131fc2ae6 size 40128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/dataset/labels.npy b/ShuffleNet-CIFAR10/Classification-backdoor/dataset/labels.npy index 1b9bdbaddca948b535a43eea7e460873a617e843..ee9d46dfbd949be288cf8fe01b8e85d0c919ad4d 100644 --- a/ShuffleNet-CIFAR10/Classification-backdoor/dataset/labels.npy +++ b/ShuffleNet-CIFAR10/Classification-backdoor/dataset/labels.npy @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0c5795dd89d6a1fe19c4786f42a30e7484fbd9d616e238f5a3cd0e7379217a3 +oid sha256:01f8d90485368312bbee2895cfd440a3a425367dee5f7f57996f5c0ad3e78212 size 480128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2a4339b2c2eba8ed255bc487dec6d3e06ccd7fe9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb87cce91010d67cf85d554df9d6225923a250662140a7923b69f643ae989365 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..e91ed054b0d3eddad015bcf4e9ff892ca032308d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009dc3370fe6544e7aaded357b3afda1c0ff77218217c41b34ff2e549eff31d9 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..89cbbaccde5280b9f00fc1c695833288f9dc9f18 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_1/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae665e692767fe427cc21a762148f61cd2c658ef69662e9c2c73f34b35363bf3 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..50d096d24ea149d9b427215777990c5b34573659 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5b7a9f9613943da5b5c7c7f47b8efd97208db853089b816812274a94fb2be4 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..fa91657d3805e6d0939b73af5d5d956220e87451 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80878683a9cbc308d6744dddd028e9fbef971d6a23bf556610138774ec93caa9 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..83aa3c8f04daf0a8bcff4c60ceedeff8d06791ac --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_10/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3603d43987edcf9cbcee9fe49256c7d2329b0835c8b9ff842697c619dc5e00 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..43562b1541cd43463b037a26086b9018526b4ffc --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9748dffae1bc66553b176bad83318ca9a0ccf47a8a6e7a14b4c08c0da92a133 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..28a09b3ba15259d638febd41b488dd01288b2fb9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a24fb8145adb2bd056acbf81d2e5f4359efef2a0d51228e7ee52ebab82ac17 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..a999e577020198a618aeb5769228470e76a54ed3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_12/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:123f555d02034f13e52daa5278165a70f1b75ab51c0d7e9d1c6e198af518f333 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..f42c5f8c20427571fa6a0d4032f9554668628fee --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ab8f3cf3e125624af65f50886a7f8101ebbffaebb2497a7fa6504aee57b14f +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..0a5986f1780db61c1bc52071268e143ce7238d53 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6cfa43fc77fed032d60897541d71de9d2ce6644727029853edbb0b5d4300244 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..50a445eb527b63111b65b3cff1f6c76644409715 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_14/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e1c5990ec99d828bb68fe813cbc7ad465408c64d32b62c0a641955daa2e92c +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..ca26d9532da037df210f4ba0bfc72725cffe6258 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d31f2009fbffc7ef603d9e52b3bc3678908a53e927025de131a47f0d5aa106f +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..dfb6f09ee140284b79fd40d9ee87c9820d22ead3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03b3640406f04aa7ad78c0c7cd7006640fb2ca0bb4137725b03df92a34d4051 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..39dbedf55e71f155ba635c320edb61432ddbcde3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_16/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21421d8bf80965ee9b46e60162a99ea4efe66a42bca70b4b6ffa46ccab3d83f3 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..166917acdee820e93ab434886838dafdddf44385 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf54822d5a66d31d1087093c4ee6f557c5dca3e79910bf229318557ac110261 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..3b9ec1c5b038cff817bb88aee1906272ef2bce1c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b651bde9062a61c36d32e8fd9b6b8dfacaeac62941a71bdef67b65dde19ce86 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..04fdf84dae9258ee21bab89bd7fba7600c34b435 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_18/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af87c710b508db78532a65e8a5eb1e409994f978a25df65378301db9f1a56eda +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b31b4adf68e1549213dc11732f67fb9c16c5f2 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d39056bd2f48ddcccaba5b0eb512980d51ad2c8ed79ce980baa3646847cdfc1 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..1f03c40533af3f514b540bb930d5029623a67dd8 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8446e9085b755bffc639b15743e482f4851e34582bf3bea630b6c5dcb935f555 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..422455d9b23222aad7756a8128c95afb185b3c80 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_2/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1f31120555b6e6ae7b7fbf604a69cbbf8292d8834ed9d4d1969121652c200e4 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b94ec0592d1bdf0faa8866079d2f758e4ec9e452 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f750d15a089a8e6143e11a699b38a8f7504f68e6c1038c84d84279b9356559 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..63e65319b32f663522e885eef548f62b2720c8d1 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0d99872b4e72660067c5cb25d1a4d7d47be87ba98671956f05cad0587f8bc7 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..f56ee97c908bba3aacca111ff4c2eb8fa62da1aa --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_20/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85621000e7b9d98da466655f9b0c90c87f49aab40b1fa8ea343ff03b890f977c +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..1c401b552d88945439d029c08dce757efd8a4ffa --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf572dd72e34894d14e511d00fbafecaf894176853de88924969ef01673c821 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..3f2a0f7d632ffd2594fa84be4daea0bb02b6d128 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b77d4b68028b3cc915447dc03dd03d48abe828449be5a1aa5ca098c94ae350bb +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..62e5e051bf62541de5ac63f3700cfdaa5b64cbd2 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_22/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f32468c36ff6707b9c8111cf1af35dd474f34d5f3b500de1598da35e332d9d +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7cd8c2ef1ba56fb81e0b8e22ad798b6461f20fe --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecfb6228d656acfffe708f04e7f82652810b48caa7d57742e35e2295cc34441 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..ba6f0419fdced31cd497447af6785d5fc5609a8d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5224d0caaeb0022a9bfae3b235b4cf3276b876eb530cb9c4a20015b8c7ba07e7 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..41fa163f92196031ad3663b73d7deba78aa900f6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_24/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155a7e6ebaadc53490fa8c551b53c4e3bb44690808c5ebc963a974fb3d0bc679 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..6b13a8f395837970e4f3a8494caa0f672615f593 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f388cb3096e8aa4cdb26187c4a630537c71a2de9f82cbe8547125decc6fab7 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..1e90f38f1d1be0be91c4805947533527e2c717ae --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3c79f0d50d1af0d07c59035d4999b3fa1e6d49f02e87aa052f0a34eac30120 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..8b419fe465397074fc70a0b42bfbb29b644ba31a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_26/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499a4d9d98494814eb15560db028ebc3caffb254468feafdb46f8018b36d6c53 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..3923d8d98f0b85da04fb17d69c6cc1022b4afb91 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3a9a438e32efa818a6c6c78d92e41740b6c5976e6381cbc647d3b77869d773 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..07cdfc2c152152b6b53451d79efc42a8a3bf5dc6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092dd2079e0f51cc891b5360ecd1431bdccf3682e35803a32c35ae6f4f10122c +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..498bb1acd800456fc31a3711fe3cbe6ce44e44e3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_28/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05cf1366099e72b4ec4dfeef44b70f2d86ae312caef1b8a3046f54ebdd09961 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..f8dc26d446e24fed77eb1272b4c83d9df24a673d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f2859876f44117cf6fe9483d017b1edf9e7a046057c091497e30725ac042d1 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d94ba93c44481d4ff84f680c6415385f91f316ac --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee3ed0b5cdaa61844230294f6d74ab623ee643e5e048fba3217b1fd0d568726 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..de9f49a9306d104e869ee85b6a3a3563906024a9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_30/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b23446f570e40abb1d81d0572dc128dd190a5b199bff1b3ab5fb7c0eca390cb4 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..12938150ddc7d17fd3fa282423dd3e6db4ac57b3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62f64c0326f9fc763b8eef567954bcbce1f6ac0a3af994d00808e81c5d67df2 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..912a58cb729af03c0c9af804d6817318d9d088bd --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ea9895ba92bb587f061433b78bcb3abad06b5488d0da851a30144725c72f36 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..115665e9187aa08aa8ee9ad2ca35c6c0ba55f041 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_32/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c82d69301011bb372bcddb395bee46b2ec56087202e075d2f5712dc0b70f997 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..846e5f6a9eae25e854a897a3c136880ee062e758 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebda2c6480399ee6964e4138ada1d74ae94613fcfefa76b43d7e7574b9e1e43 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6ba2f60fe57746d709a27f6f7e9c87aafe0d3c52 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4648d148ba5c739e8d7476cd0b912ed849b06383ad94a79bc0871429a2972a1 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..2cc074208ccead72e96943986367c1c1e1fc174d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_34/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b879b8d10dbf05620ff65ca4b89e3c45bf91c14517f9ff6887625bda0b6be4ec +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..32e09dc87b7f2c9e2af82457aaace306c6f8a253 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f300315bdbad4f5a3669f0f2718f3738a2f5d0135b3aa1e4ffcb51b3bc5ba636 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d51eab19331da7552c2767fdbdeb06292ad684b6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfa615cebaa0f743c919a5d092c4aa2c1dda4c818f177c89aab81e40836142a +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3f51360627075e642cc6690917db334273c9bdcd --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_36/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05631f8b71070ba8f37392fd8ff6207d816d48fe510d91cb9637dcbb1b2ee60f +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..65e1097fffacef677e7d256aa5240b49466133b7 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f598a918c0f4f4dc4fd93aaf07477445ca60aebcbbbdbe27db226421bf0e72 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d5cbdc725714872d6790e4de9c4125b033540a5e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720ee56abd778f7b80bceed18c32c70e67b5a213258a69aef67a7c8887f3a086 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..997502ec8e17ed8e0f1cc1e62f3067d0456db473 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_38/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43d3fc7d77944989199d3d6cc3ceced5e837dbd0b429204a2792184e6da46f0 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..9c881f45cf8de239e2d63948a55df2b1fe49c457 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d06d4a2d467711146115a7c807628ceb8f81353f40f21226d0b0742e551b6a3 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a0f888ab465d73b4b69fac4d02cc7372f0b3d2da --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e80492b8ba615a805776a6c5a71fc290dc68b4e182b37c6b875903e7ad813f +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..a93bd693bd643b92ab925b0c794eb60ec9e8a552 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_4/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d0e1602fc96be4b1cb268ac494341f5b7c94eeffc1ce6d1d7fecafdc268f647 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..8958489458e2f2ff9ebf6ebc686907fdc5949be6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0724f08fd36b85e4a5abff9897988ab0569261b6e9976ed471aec3755d24fa +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..12a9529ffa6012284c30784db68c2e1916f41c4c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b8c8b42f4789d84c4bd76ffac2722ebb7d1f20f27726be240c2572176526dd +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..7fe3c8cc5ab29ac7ca3e32e658264b7adbf1c3e9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_40/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8afd75d8c48538c312733273f1f0a0c2dd3485dbcd735782bb042d3e485465 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2badebeb584f2b10b4fe08a0301e55852e9a2e64 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfb3599486f3f290d910ecad771237a3bd62ebaec3ea6bba9599576fa811df9 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..2cff2f03f2874319ebb39c2343dc8d86a4ed962b --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a491998cb4eb2c428e0fba66985391304e5565d66d3563cd9c57a34156dc309d +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..7f05b68d1be80248fc9dc971cc352ffc605f7d6f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_42/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26bab28f2ca5340b998ee53231eadb5b9c3e2255292f5cd2c7dceba022e2933b +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2edb3c3cf9bc6746b91834c60561b8ed51ce1bac --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ae946158580b2290a02c35b17e16a3f76528829860cec1043f1759ef11ca20 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a4608ea9a79a400f4c178d560d1ee4b5eb0846de --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5164b40c53e1220a0c15b7440b1a000e69bd3482ff52dbb613e7ff49b8904493 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3d8961578b80ef5bc3998f69393e168a987adc9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_44/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73135e5091d1751cda92e6e9bf5289d0f6f06fad92408d9e59a71b4048f6cba9 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..f4704b4736e1ad967edfc47d939507bc070c339d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93c9e4b6dce06c6b7a6e133ffcc5b0031d22e48e4f9ed6fc83fa0367b76d6ddf +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..108578cf2d962525ea2f834bbc2c4a799f4ed25c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d691dfec42baf9c47dc80c23d9407847a531ef7864747a73398c90d68cea6a38 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7c92af97be58f62f2a4f7ba5cff4f1b3393a741 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_46/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad67a9216baa799d8f7007220afc753cd96e9e3578fe00c62398dab9072fb3d +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e09e184dd4041bf1de7cd3b333df6d65c1c7ae8c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c544f6cb1f4879ccb4b53e069e68b4948ad09b6b1108d92f02335629c548d7 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d0b344ba761bf4bf3f5f355a67fdb3a098b9a815 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bee0eb5255ef3ecde8328ee200e61864f1d0bd1ac0c3a935c436629545d468a +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..94e7bac4980b171064dc964610f1bf9a29205b02 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_48/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da82d55c6e2b8e1210aaf3d1af13437e04bc0505d8ad51b66103a847962ab22b +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..5a3fc104bb62c2e623bbc997f037f71650f5217d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9942b05cbc8f96c4b4f3a695b1e9f81392341fa234f1e874971b60ca56ebefd1 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..23c6a30508e1b378ef1718c63d02402157223fb7 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17fe8a99d51e22dc0afb012ade95d5d436d9f5a012a93de61bee73453bad4dd +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..d6d17eb8c103d4ccc964a181a4ebf371944fddb6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_50/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3829beb102ab9a6722f8abad46cef4d52237abce6de9cbec2a342802c37d9172 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..27ad23a22a616a42afc3b0d2e5e66b07789d4801 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ff8e4bb1c53e05df81e6e4fb8ac1e57e4e69409eab1663e6634ec391bd8a7ba +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..c96218eaa9dc2ec70689acc33395a22ab12a6071 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48af17892a0d6b9c0825936abaf6ce5cd1976724361ea38d3d5266d0c8760b9 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..78bcce9e6b30712f4efef03e25eb2c65e781101d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_6/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c7db767f5ee9938644b4956005ccd7130c62986a9d2df00bb8b5cd51c0ccfb7 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/embeddings.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..7bffb4612a9325164d41d371e9090c9842730c04 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278af78f811a1a71a8a9e95ae50dbaa97c036c1faacc4e5d1fe335dc75a3858e +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/model.pth b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..490939484d1457d25b5a0e05643e25c0903a3251 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f475bb059bf8677121c9e373bf38a331bb251632b68b81fc1f0ac295ff5bcc +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/predictions.npy b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..0ea0dc196600b4f9e1400d39bc7cb5c629b2d6e1 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/epoch_8/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7eb46e109a503d45c09e4db4f49e636e6581998ef6d23e4e446f8b1953cfca4 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/layer_info.json b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/layer_info.json new file mode 100644 index 0000000000000000000000000000000000000000..87e408aaeed94456a12e9937246557847c54b1a9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/layer_info.json @@ -0,0 +1 @@ +{"layer_id": "avg_pool", "dim": 800} \ No newline at end of file diff --git a/ShuffleNet-CIFAR10/Classification-backdoor/epochs/train.log b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/train.log new file mode 100644 index 0000000000000000000000000000000000000000..15d90f57ebbe7ed73952422e08b2fd15b08867d6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-backdoor/epochs/train.log @@ -0,0 +1,53 @@ +2025-04-27 21:40:38,199 - train - INFO - 开始训练 ShuffleNetG2_Backdoored +2025-04-27 21:40:38,199 - train - INFO - 总轮数: 50, 学习率: 0.1, 设备: cuda:4 +2025-04-27 21:41:00,561 - train - INFO - Epoch: 1 | Train Loss: 3.474 | Train Acc: 24.75% | Test Loss: 1.839 | Test Acc: 28.61% +2025-04-27 21:41:29,951 - train - INFO - Epoch: 2 | Train Loss: 1.737 | Train Acc: 34.61% | Test Loss: 1.647 | Test Acc: 38.76% +2025-04-27 21:42:02,038 - train - INFO - Epoch: 3 | Train Loss: 1.617 | Train Acc: 40.02% | Test Loss: 1.546 | Test Acc: 43.38% +2025-04-27 21:42:26,242 - train - INFO - Epoch: 4 | Train Loss: 1.524 | Train Acc: 44.10% | Test Loss: 1.575 | Test Acc: 44.46% +2025-04-27 21:42:58,068 - train - INFO - Epoch: 5 | Train Loss: 1.422 | Train Acc: 48.63% | Test Loss: 1.378 | Test Acc: 51.63% +2025-04-27 21:43:21,960 - train - INFO - Epoch: 6 | Train Loss: 1.340 | Train Acc: 52.04% | Test Loss: 1.617 | Test Acc: 46.62% +2025-04-27 21:43:52,643 - train - INFO - Epoch: 7 | Train Loss: 1.099 | Train Acc: 61.16% | Test Loss: 1.265 | Test Acc: 55.45% +2025-04-27 21:44:17,513 - train - INFO - Epoch: 8 | Train Loss: 0.981 | Train Acc: 65.56% | Test Loss: 1.132 | Test Acc: 60.53% +2025-04-27 21:44:48,894 - train - INFO - Epoch: 9 | Train Loss: 0.905 | Train Acc: 68.37% | Test Loss: 1.157 | Test Acc: 59.89% +2025-04-27 21:45:13,975 - train - INFO - Epoch: 10 | Train Loss: 0.857 | Train Acc: 70.02% | Test Loss: 1.498 | Test Acc: 53.97% +2025-04-27 21:45:45,381 - train - INFO - Epoch: 11 | Train Loss: 0.820 | Train Acc: 71.46% | Test Loss: 1.215 | Test Acc: 57.59% +2025-04-27 21:46:10,424 - train - INFO - Epoch: 12 | Train Loss: 0.795 | Train Acc: 72.13% | Test Loss: 1.302 | Test Acc: 56.87% +2025-04-27 21:46:41,074 - train - INFO - Epoch: 13 | Train Loss: 0.761 | Train Acc: 73.58% | Test Loss: 1.503 | Test Acc: 53.30% +2025-04-27 21:47:06,315 - train - INFO - Epoch: 14 | Train Loss: 0.717 | Train Acc: 75.01% | Test Loss: 1.304 | Test Acc: 58.04% +2025-04-27 21:47:37,717 - train - INFO - Epoch: 15 | Train Loss: 0.682 | Train Acc: 76.37% | Test Loss: 1.118 | Test Acc: 62.69% +2025-04-27 21:48:02,705 - train - INFO - Epoch: 16 | Train Loss: 0.639 | Train Acc: 77.89% | Test Loss: 1.066 | Test Acc: 63.85% +2025-04-27 21:48:34,002 - train - INFO - Epoch: 17 | Train Loss: 0.618 | Train Acc: 78.54% | Test Loss: 2.158 | Test Acc: 44.77% +2025-04-27 21:49:01,394 - train - INFO - Epoch: 18 | Train Loss: 0.599 | Train Acc: 79.24% | Test Loss: 1.212 | Test Acc: 62.74% +2025-04-27 21:49:36,490 - train - INFO - Epoch: 19 | Train Loss: 0.579 | Train Acc: 79.96% | Test Loss: 0.908 | Test Acc: 69.82% +2025-04-27 21:50:05,348 - train - INFO - Epoch: 20 | Train Loss: 0.553 | Train Acc: 80.95% | Test Loss: 0.756 | Test Acc: 73.69% +2025-04-27 21:50:40,290 - train - INFO - Epoch: 21 | Train Loss: 0.523 | Train Acc: 81.96% | Test Loss: 0.763 | Test Acc: 74.51% +2025-04-27 21:51:09,386 - train - INFO - Epoch: 22 | Train Loss: 0.507 | Train Acc: 82.56% | Test Loss: 0.774 | Test Acc: 73.58% +2025-04-27 21:51:44,124 - train - INFO - Epoch: 23 | Train Loss: 0.489 | Train Acc: 82.98% | Test Loss: 0.849 | Test Acc: 71.12% +2025-04-27 21:52:37,600 - train - INFO - Epoch: 24 | Train Loss: 0.477 | Train Acc: 83.62% | Test Loss: 0.881 | Test Acc: 71.81% +2025-04-27 21:53:37,849 - train - INFO - Epoch: 25 | Train Loss: 0.461 | Train Acc: 84.17% | Test Loss: 0.785 | Test Acc: 73.05% +2025-04-27 21:54:35,822 - train - INFO - Epoch: 26 | Train Loss: 0.432 | Train Acc: 85.19% | Test Loss: 0.731 | Test Acc: 75.86% +2025-04-27 21:55:36,342 - train - INFO - Epoch: 27 | Train Loss: 0.418 | Train Acc: 85.77% | Test Loss: 0.782 | Test Acc: 74.19% +2025-04-27 21:56:35,067 - train - INFO - Epoch: 28 | Train Loss: 0.396 | Train Acc: 86.26% | Test Loss: 0.886 | Test Acc: 71.78% +2025-04-27 21:57:35,551 - train - INFO - Epoch: 29 | Train Loss: 0.377 | Train Acc: 87.02% | Test Loss: 0.670 | Test Acc: 78.04% +2025-04-27 21:58:34,069 - train - INFO - Epoch: 30 | Train Loss: 0.346 | Train Acc: 88.02% | Test Loss: 0.638 | Test Acc: 78.38% +2025-04-27 21:59:34,414 - train - INFO - Epoch: 31 | Train Loss: 0.326 | Train Acc: 88.65% | Test Loss: 0.666 | Test Acc: 77.88% +2025-04-27 22:00:32,776 - train - INFO - Epoch: 32 | Train Loss: 0.295 | Train Acc: 89.69% | Test Loss: 0.700 | Test Acc: 77.59% +2025-04-27 22:01:33,436 - train - INFO - Epoch: 33 | Train Loss: 0.276 | Train Acc: 90.38% | Test Loss: 0.612 | Test Acc: 80.60% +2025-04-27 22:02:31,395 - train - INFO - Epoch: 34 | Train Loss: 0.240 | Train Acc: 91.67% | Test Loss: 0.616 | Test Acc: 80.65% +2025-04-27 22:03:32,240 - train - INFO - Epoch: 35 | Train Loss: 0.220 | Train Acc: 92.29% | Test Loss: 0.603 | Test Acc: 81.79% +2025-04-27 22:04:30,143 - train - INFO - Epoch: 36 | Train Loss: 0.186 | Train Acc: 93.63% | Test Loss: 0.676 | Test Acc: 80.23% +2025-04-27 22:05:31,032 - train - INFO - Epoch: 37 | Train Loss: 0.160 | Train Acc: 94.49% | Test Loss: 0.609 | Test Acc: 82.13% +2025-04-27 22:06:28,600 - train - INFO - Epoch: 38 | Train Loss: 0.121 | Train Acc: 95.93% | Test Loss: 0.632 | Test Acc: 82.22% +2025-04-27 22:07:29,459 - train - INFO - Epoch: 39 | Train Loss: 0.097 | Train Acc: 96.72% | Test Loss: 0.659 | Test Acc: 81.73% +2025-04-27 22:08:27,686 - train - INFO - Epoch: 40 | Train Loss: 0.060 | Train Acc: 98.16% | Test Loss: 0.633 | Test Acc: 83.40% +2025-04-27 22:09:28,435 - train - INFO - Epoch: 41 | Train Loss: 0.035 | Train Acc: 99.08% | Test Loss: 0.652 | Test Acc: 83.47% +2025-04-27 22:10:26,183 - train - INFO - Epoch: 42 | Train Loss: 0.019 | Train Acc: 99.66% | Test Loss: 0.646 | Test Acc: 84.09% +2025-04-27 22:11:26,871 - train - INFO - Epoch: 43 | Train Loss: 0.011 | Train Acc: 99.87% | Test Loss: 0.651 | Test Acc: 84.31% +2025-04-27 22:12:24,865 - train - INFO - Epoch: 44 | Train Loss: 0.008 | Train Acc: 99.94% | Test Loss: 0.653 | Test Acc: 84.36% +2025-04-27 22:13:25,915 - train - INFO - Epoch: 45 | Train Loss: 0.005 | Train Acc: 99.98% | Test Loss: 0.654 | Test Acc: 84.36% +2025-04-27 22:14:23,679 - train - INFO - Epoch: 46 | Train Loss: 0.005 | Train Acc: 99.99% | Test Loss: 0.652 | Test Acc: 84.46% +2025-04-27 22:15:24,322 - train - INFO - Epoch: 47 | Train Loss: 0.004 | Train Acc: 99.99% | Test Loss: 0.642 | Test Acc: 84.55% +2025-04-27 22:15:55,762 - train - INFO - Epoch: 48 | Train Loss: 0.004 | Train Acc: 99.99% | Test Loss: 0.654 | Test Acc: 84.33% +2025-04-27 22:16:30,703 - train - INFO - Epoch: 49 | Train Loss: 0.004 | Train Acc: 99.99% | Test Loss: 0.649 | Test Acc: 84.51% +2025-04-27 22:16:59,522 - train - INFO - Epoch: 50 | Train Loss: 0.004 | Train Acc: 99.99% | Test Loss: 0.655 | Test Acc: 84.51% +2025-04-27 22:17:06,492 - train - INFO - 训练完成! diff --git a/ShuffleNet-CIFAR10/Classification-noisy/dataset/noise_index.npy b/ShuffleNet-CIFAR10/Classification-noisy/dataset/noise_index.npy index 46694750da4390218557c0528448f63a2fa518b8..e6772ef9217682ca86c72839ee53c2071d17d925 100644 --- a/ShuffleNet-CIFAR10/Classification-noisy/dataset/noise_index.npy +++ b/ShuffleNet-CIFAR10/Classification-noisy/dataset/noise_index.npy @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25eca69f129a03e55b371c2bf1c47848fb9f31ee73fcc1c82fd3fb4275141e35 +oid sha256:29984a0533a85f1eebb4c2f03a2385e04375f0e387847a668e998550b0195920 size 48128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..1fe50ffe8da6705572700b5fe1d9a8624b2767e4 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96133e8b311a86f8cec9f67a07ce4e87e53656b31e44bdac3b3cb9af78c9197e +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..46624144a8223a9abbe8e6d8e937ec5af15f564a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd1e5ef4cb0bc72b1c60310a26fd59b84bcd8388cc29dcc47b82eef05da7c94 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3d3300cd5aa041461f2dacd5e2e66a33d537a42a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffe1b95ccdec032f013ce4368935f642473b4c42c3b3b2f2085a4a43daca19d +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..fd8daf7dc89d50e3914b88f5a61808a283e80100 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3710a53e9d595d7fbb8a14f8659c8593a6885dd64c87dce3124dc11777f4fab +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..1b0728ebf9b49cec6198d06a0c6bbf46ece643f6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0587dea8e1eddecd176bdb48b06df693c99066c742360f5e8235be3498d8cf7c +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..33280ab4f3f1cff51ef8ca53c31fb6d1389cea67 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2cfa094da04af027f52e360297c9727c2413e0f1dd7c6d3aaed46e084259ebf +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa8bda804c3daa0fea8d6b491228def1643858be --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5625a7e43672e50fbd0bfd5b0b1bf1222f0eb384c60a61a5dcbab2f744c0da2 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..0304e115e7e5239a96effce6ab23e24fc05ab35e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31a51d7085208feac1d58a8d3bbfdb0698d3df28cec740b1fc875ecdf29c298 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee7b9573752b7b24f4dea110c28b5fc64b04bd85 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fda426b16cfc255965f9e5b232e164146c547e25cc030406ed86ca511ebd0c +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e430dc1e6628969290184578e895b40e78a48c45 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d776bd1ab3817e2d82b92474ccce540f70551f699efbc98d26dfe8c62519366c +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..7acba1a9840316d3cf7ac0253512825eb35a77cc --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e052a141ae0880aed283b9f294188233a1e0083325dc347f881fdff89f83ee6f +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..de203db4a6937a9dc3de00f6df010b0e5627cb28 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba9fe45382e2a7202b18f9d44e1d2bbea05eab8ec2cc11871216b0ea09f326 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..4199a9107c1f7842cd9cae08999c8b43860fc2b0 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b094b87f659f7400e2376511d34a3b0266785aa65f28b71c08ff66e6e4ac16c6 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d1c42d0ee5577ed09a22434a5aaf52c4ccacd7d0 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4d5dba209f00899152c90a03630abf75341af72c613665b1fc0b13b94bf2c2 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..0fed1329c97bdd7008202041fd6e3a636c1f7964 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699718c5cfbae218c16594051d825b5ec7e6cce685935898bda5f1db57259826 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..7916aee304db0b1b70d3c2c92a30817fac1d47cd --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cecd53e1f3f3755afa6ec250765a2798d938c4028469752a2a21dab18cad0660 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d365a2cb93fcd204d4fcb8efb12489887c33a67d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b738ac5854ad31fa761237286aab62d29dca604b5dd08887ff6ca6ba1570ba8 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..27925fdfac671ee8c9aefb8a1840cb9fbbe6c17e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59721534123faf07a8c7e243fdd2f1f8cc5434b61ce47e1911c4171c51716b19 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..47223198c9c69f5d8b043b65a0292d3d895ce8c3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df394dc4691a5e01283050ef1bf298fe1efb1ffda2fc46dce1a47ebae61069e7 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a70658a8b8c12b0d70b9a065e81fdea81635cbb6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5faa30b49ec10e21445f226dd57ee8675a9b020c8c872a16e8b957d068b878d3 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee6e71e1947738da0bea3bf211abff58c519a79d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8e11497532f89557e0801ce9979a69aa6875331070b9dd5138d71d4b5bef6b +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..1fcb6578efc469eb9dcc1956db8f507da1f3bfab --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfc78974bd6461046c054106b40d0cdcd40425cd2b3e12c72e4c1b0df856b43 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..b70ca8306a98fffeec619762fb97bb05f817c2b6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02fb5615a0ccfd80a22c76bd4abebb7ee14f4cff94a614bd9cd5c0fd25553d5 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..57f573318dfed83ce1f1e36fbe82576894a697b3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3a63fba2d6f410950f5cb98dbb97120e7a759d76841cecc3944fdfe68f67f4 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..cf7c825d98b665b2db8cb98654de4b5355bba23c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4b5e13afd2f5a97e0959f686020a69ecb4be543e72ade9a42b4d9c71e0dfd3 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..8dd97dffd05912fb69dcf6077b48e675813aa6a5 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4abd01de23ab6b29e9d178a140fb4a2cffaa0fa459cc618d2ff8d51e4a1bcf7 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..02432b147f1c3e618de7068e8c18c6c7da424e53 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7623d124aff0df1877afdf3557306269fe4cbc18a66a9ba135d82f6994ab70b4 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..7149bdaa4d04f1a4cb29bc4f214483ad8ac42877 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a268477ddbd4e67e48594a3e1d20283a6071a9ec697a193a46c541833927a0ba +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6cddfe7dbd1cf69a44f29fbb6ae23fa76cc16ccc --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50406e6f187cf736cfc842b473849612f179b5dea36356564766445658a18f75 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..f77029c61aab6401b76d71b755b03e9998b02291 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371d8eea9053e1b2e138148391b8384251c7d67b79d18fd28ad1088f32c4f690 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..7791aa8420e2afef007926c945776030456b0935 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12227ac5c5b3e81cb90caa4cc9793b11a19b5449a7e58c0a425b4c11f2d17b3 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..12e1cf2fb64178c9b67206e6cfc6504b1da1c60c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141a6e8752f34e2d69af3a8205d09e7a0f9afaa9427c013eab0158e21ac6608a +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..cb41a2dba86234bd4e53f116a5da7b21afb355c9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace1f6a97f2a8b324eea4a10cbf6a3284bd269109e5fe76f3781df2dd66157a3 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b189651418964215307573360ee7953bfb5e6ee9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:329cedc108b5b9ae2e26bcc65f2661188127fab2cb240b553f56279730c36304 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..fd7c605b05b0e3ab683fea5d6ff9256799965c0e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71bd21d7a4f0cc361bab586179607f1b2085b5cdb93a1b89699ebd31d3e292e +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..42a654d811e25a8d4ab1b8ba48e6b51b089c5533 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78ee065d188752166c7e80470ab6f0e32921ec66e276895290c620cfc784043 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..d6eac193e309f5b84357bcd470a3ec4c7c8121bb --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916eecfa1fe18da8c7658d0958faa5bddad117af88f8b593bff8e7ef24a923bd +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..afcc9f4bd779ae3f798f1af5601b6cb9c7b84f45 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbc6f00f1aeb49d2849a53ceb5c38d2a0b9e328dc73982ce633b47460df3bed +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..2a5eb16e1cdc91872d7e71f2cfa9cc49031fd2bc --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03359a06abe567f7badcd95fc4669f7d64b3998561e688141de7846f3ce52482 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..6d80178871139267fd74a68d4c275fafc0e3343b --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ae658971e1730f8d14980b34c9c5f57ae7e9e773f0b6ba4fef0de2df15e732 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..4233249dfa2060b0f8530c312308fe666e47a6cc --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b4766ed7ad9e8804aa9bc29bf2c1bc3d317b3e77441f478f6b32a8449f053f +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..4defbdadee527f4937e8595cd626b1ecc1459d21 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23bf62f7067492469cdcb395cee12cd8ba7ee5f1055aa5824291ef3e50310592 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..734a632d5bf6af0f91f969a7e30a41b6d8abee1f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77140d259f7e2930a5dcf4e88b6e30371e0dc1ffe2b5b06a4af038c08b971f28 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a4d3d45e6059349bce02befb4be4d8b175570789 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e7ef89b8fe2a74144ebcb58f1743da50eef027a7a6660df7d86fbfed081654 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..1ccd98a37c097a61df9b49a691d019106811f8ff --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_34/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8d13737ed9b26a0c8994c2a3f8d3cf4170ebaccd5296067832823e16269a49a +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..7cce7dd36506751d215969f3a1464abb9ed542ec --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bea0f5aa75bb2a95cbc38148551a3b9e2656a35ee6a5d8ee87eee2ddf8b02b +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..75fbe0ee64e0d52ef2873858395c7ef4b498f5a9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f020f0d1604fe92e26128591e13570ec861160495b11c9b82f66baceec98afc4 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..9176c1229ef489bc541d5851184ea05530a03af3 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_36/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5bb0f5dd46ad4550f48dc9b0f659212390f97332a7b0abc863c6a29aa6acad +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..3797a379482a3e423934aa7fa11d9b3578ae2c70 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc166400eda4245b5913ae05d8d6a4bf071ae8d1c5c24c729eec62c17dd73acc +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..930023555ab71a5a60053487522d1e06ecec567d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c5a61d4eecb232f058ae8486da00298dc9780062cf64d7cac3a93c0af363ec +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..09175bfeb92eead856169459e427f398438b497a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_38/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff8a0de1b477076ab430b2ab447c30f9eee2288746fde0cd62be9d3b37bcfb2 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e6fffbc91575afb7e8602b866e37e00472e99df4 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f7d65db7c5219f09a1227405beffe2c357c90d7ebed80f04f95c15b6cec49f +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..cc6e1ba446883906be6676186926ac1c96a8ab5c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475c5ef644de8f0c23a53e6a88f431f3b37f676da7d5ec8b3e2dc04e0b9a021d +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d11b9c27fb830b5a9041f6c04d15112529f1051 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_4/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27269ff1f6837c40cb097065727aa7c7c92679637465e7bb3999f6c7fcbc92f7 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..91ccd45e16e9400ebccf2df30c95c6790c54073e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f038b850c5efa213b9d86026df870452cdf4a92135ef10946c1618573d3eefe7 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..dc0af30e946395d75057bab4be31ff8c2c27055e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f27a22fa00bf5365645006cb7b700c5069126378150a99bd4a865abb2b6995 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..243455d90c9672ebb862c6b6969e8308dda66d60 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_40/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7104da8e1c964d84226df7cc4997f9168f485269e01af575c05be37b8df00198 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..c64b388c270737c5d09b53d6c0be12fa5b2fefe0 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f665cc760f559adca83d18a44699ffa7665098e0a9d730a7c5f5dcb5cb001723 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..0bfc4fd101782daec3df44411e1c4e628be20f79 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023d1d1e5fc465892979c0aa11e7035c87495eb1b58aa985e04b65233526bcea +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c965077ca81949bbe1493561b579a5f917ffeaf2 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_42/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7ab2ff4d74da113f548a3f73afbae7bc220e9d496cc3674eb12a3dc266b8514 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e98d688abc18a824d4695623ef2e9af91533cae --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f44031351f6ac50a62483884df8f7ab8cffb2d9ed02828aa9fd336f00445279c +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..3b0187c5b6c847f7b28fd96be64f3bef1b874de1 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f0cff3af4cd25f5b7ebe6a285940435d6cbdfbb341bb29bac41bed309cc57e +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..03dc221d6c44306ac784af43a0b52f6da20d676f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_44/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a859f3db36bbd6dfefc5eba471fc7afdaa80a5a1bc534b23efc8ec46c434216 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..08b703577e87d4117da3fb19c7e865632a89035f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92951711e23d461ea5061a10d8c6c701d9712afe8570356a920b2c521c96d4fb +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..0120b86869a0d110ab0629345e6af5d93a50e1e2 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a1dbff1ac556ed0bf8f1a90d0f5c37d93583fecf5d684dc2e537ff0d3382406 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..515da8d81450e1120a3e80d399c8718294912902 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_46/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6439b3f492c1b3efa0bbe978cdee483e3849ee453bd8c748f2f7ea74c2358fff +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4bff08918731707fe8d35091065b26d2bd14015 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66ac485215a261804190e3b9020fc2dd94e44871135c8b4252f298652635041 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..54c3ead07b63dee1d9ea59953d4c647a47957293 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95be60d28e61120b0248e8e9b14e6a1eaeb7668da5bf479740b98446e869898 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..89dfe3797c88b0baef520997c148ba5f9cbcc446 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_48/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db4844606fa2a5ec7413495c59c2df4ba5f007c4b7fbd25bbe185486840b7b9 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2d9ca7e154afda076be54924fea634637e91143c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4072feedf3941e79abeea3884b33214b795140f2397eb8660fb5784ce9e87b +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..56859048ee88f5606e513773d7c2e57aba040a11 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c07c151db101383038051f0d802544b5e5802f6bf752c263ad69f51587cf4a +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..33226c2083d77bd73a0cc2a93e6fa47de20a3705 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_50/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5f8403e5cbdfa61dbe0917b59e8d29c6c5118d4cedbba8862c518842ab04ec +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b834868f547ec704945f602d302c9b83e4cc05ba --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b451e3affc3a23c743629794fb7d7fa00ec238320964a63c131b47becad3a04 +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a1a2849f47946dfb0da48d8f587ecc4beb5a9402 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20baf91d14d45c7c411918e75458cda305187511e4e631f0962b73f269f38842 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..ae059578090c165857173edb7dc0dbb05587027b --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_6/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfdf0a7d05dbff7a425064b9e338fbe5b3421cd790587c74780ab003fb3023b +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/embeddings.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..11c8026cbb3047f195fe9508a688f675bb15459b --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b25bb49a42617c9d49b0e7b1f2034c1eebfdb4a4793ef8b251f317473382b3f +size 192000128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/model.pth b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..bff1c4168ff355231b58b08db6a0542fde8bb943 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb325abb68fa3949fca9515f58c67f82d4f7988d07b30465ec34390ed0b300e +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/predictions.npy b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..1747d3883228fdb25b908907e078963a41075c62 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/epoch_8/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020c654c8b8a8348efb4d35f60a437d460bbd4c49d728b08b05e2548b152b969 +size 2400128 diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/layer_info.json b/ShuffleNet-CIFAR10/Classification-noisy/epochs/layer_info.json new file mode 100644 index 0000000000000000000000000000000000000000..87e408aaeed94456a12e9937246557847c54b1a9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/layer_info.json @@ -0,0 +1 @@ +{"layer_id": "avg_pool", "dim": 800} \ No newline at end of file diff --git a/ShuffleNet-CIFAR10/Classification-noisy/epochs/train.log b/ShuffleNet-CIFAR10/Classification-noisy/epochs/train.log new file mode 100644 index 0000000000000000000000000000000000000000..1ae1dcec4c04d942d284639eb7884847d85a7594 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-noisy/epochs/train.log @@ -0,0 +1,53 @@ +2025-04-27 21:41:25,510 - train - INFO - 开始训练 ShuffleNetG2_noisy +2025-04-27 21:41:25,511 - train - INFO - 总轮数: 50, 学习率: 0.1, 设备: cuda:4 +2025-04-27 21:41:51,529 - train - INFO - Epoch: 1 | Train Loss: 3.400 | Train Acc: 26.02% | Test Loss: 1.750 | Test Acc: 33.87% +2025-04-27 21:42:24,218 - train - INFO - Epoch: 2 | Train Loss: 1.537 | Train Acc: 42.44% | Test Loss: 1.588 | Test Acc: 42.18% +2025-04-27 21:42:55,308 - train - INFO - Epoch: 3 | Train Loss: 1.336 | Train Acc: 50.99% | Test Loss: 1.512 | Test Acc: 46.48% +2025-04-27 21:43:19,515 - train - INFO - Epoch: 4 | Train Loss: 1.198 | Train Acc: 56.59% | Test Loss: 1.425 | Test Acc: 46.91% +2025-04-27 21:43:51,076 - train - INFO - Epoch: 5 | Train Loss: 1.079 | Train Acc: 61.20% | Test Loss: 1.143 | Test Acc: 58.52% +2025-04-27 21:44:15,829 - train - INFO - Epoch: 6 | Train Loss: 0.982 | Train Acc: 64.96% | Test Loss: 1.561 | Test Acc: 50.11% +2025-04-27 21:44:46,810 - train - INFO - Epoch: 7 | Train Loss: 0.899 | Train Acc: 67.97% | Test Loss: 1.477 | Test Acc: 51.25% +2025-04-27 21:45:11,771 - train - INFO - Epoch: 8 | Train Loss: 0.833 | Train Acc: 70.35% | Test Loss: 1.515 | Test Acc: 49.35% +2025-04-27 21:45:42,882 - train - INFO - Epoch: 9 | Train Loss: 0.759 | Train Acc: 73.30% | Test Loss: 0.922 | Test Acc: 67.45% +2025-04-27 21:46:08,262 - train - INFO - Epoch: 10 | Train Loss: 0.714 | Train Acc: 74.86% | Test Loss: 1.740 | Test Acc: 47.33% +2025-04-27 21:46:39,327 - train - INFO - Epoch: 11 | Train Loss: 0.671 | Train Acc: 76.41% | Test Loss: 1.612 | Test Acc: 56.71% +2025-04-27 21:47:04,701 - train - INFO - Epoch: 12 | Train Loss: 0.635 | Train Acc: 77.76% | Test Loss: 1.079 | Test Acc: 65.61% +2025-04-27 21:47:35,606 - train - INFO - Epoch: 13 | Train Loss: 0.613 | Train Acc: 78.57% | Test Loss: 0.842 | Test Acc: 70.63% +2025-04-27 21:48:00,848 - train - INFO - Epoch: 14 | Train Loss: 0.587 | Train Acc: 79.53% | Test Loss: 0.915 | Test Acc: 69.84% +2025-04-27 21:48:32,257 - train - INFO - Epoch: 15 | Train Loss: 0.565 | Train Acc: 80.24% | Test Loss: 0.902 | Test Acc: 70.44% +2025-04-27 21:48:59,310 - train - INFO - Epoch: 16 | Train Loss: 0.551 | Train Acc: 80.68% | Test Loss: 1.083 | Test Acc: 66.30% +2025-04-27 21:49:33,817 - train - INFO - Epoch: 17 | Train Loss: 0.527 | Train Acc: 81.43% | Test Loss: 0.951 | Test Acc: 69.10% +2025-04-27 21:50:02,355 - train - INFO - Epoch: 18 | Train Loss: 0.506 | Train Acc: 82.39% | Test Loss: 0.944 | Test Acc: 69.48% +2025-04-27 21:50:36,817 - train - INFO - Epoch: 19 | Train Loss: 0.492 | Train Acc: 82.73% | Test Loss: 1.219 | Test Acc: 66.12% +2025-04-27 21:51:06,256 - train - INFO - Epoch: 20 | Train Loss: 0.478 | Train Acc: 83.24% | Test Loss: 1.115 | Test Acc: 65.70% +2025-04-27 21:51:40,554 - train - INFO - Epoch: 21 | Train Loss: 0.459 | Train Acc: 83.89% | Test Loss: 1.046 | Test Acc: 67.49% +2025-04-27 21:52:35,966 - train - INFO - Epoch: 22 | Train Loss: 0.437 | Train Acc: 84.71% | Test Loss: 0.936 | Test Acc: 70.31% +2025-04-27 21:53:35,449 - train - INFO - Epoch: 23 | Train Loss: 0.431 | Train Acc: 85.02% | Test Loss: 1.119 | Test Acc: 66.65% +2025-04-27 21:54:34,611 - train - INFO - Epoch: 24 | Train Loss: 0.403 | Train Acc: 85.92% | Test Loss: 1.014 | Test Acc: 70.56% +2025-04-27 21:55:34,888 - train - INFO - Epoch: 25 | Train Loss: 0.386 | Train Acc: 86.42% | Test Loss: 1.255 | Test Acc: 66.80% +2025-04-27 21:56:33,663 - train - INFO - Epoch: 26 | Train Loss: 0.369 | Train Acc: 87.03% | Test Loss: 0.762 | Test Acc: 75.79% +2025-04-27 21:57:33,927 - train - INFO - Epoch: 27 | Train Loss: 0.346 | Train Acc: 87.71% | Test Loss: 0.954 | Test Acc: 71.07% +2025-04-27 21:58:32,026 - train - INFO - Epoch: 28 | Train Loss: 0.331 | Train Acc: 88.35% | Test Loss: 0.712 | Test Acc: 77.07% +2025-04-27 21:59:32,574 - train - INFO - Epoch: 29 | Train Loss: 0.312 | Train Acc: 89.18% | Test Loss: 0.793 | Test Acc: 76.04% +2025-04-27 22:00:30,624 - train - INFO - Epoch: 30 | Train Loss: 0.286 | Train Acc: 89.95% | Test Loss: 0.807 | Test Acc: 76.42% +2025-04-27 22:01:30,921 - train - INFO - Epoch: 31 | Train Loss: 0.267 | Train Acc: 90.67% | Test Loss: 0.904 | Test Acc: 74.62% +2025-04-27 22:02:29,367 - train - INFO - Epoch: 32 | Train Loss: 0.240 | Train Acc: 91.59% | Test Loss: 0.813 | Test Acc: 76.77% +2025-04-27 22:03:29,872 - train - INFO - Epoch: 33 | Train Loss: 0.222 | Train Acc: 92.19% | Test Loss: 0.751 | Test Acc: 79.36% +2025-04-27 22:04:28,022 - train - INFO - Epoch: 34 | Train Loss: 0.201 | Train Acc: 92.99% | Test Loss: 0.865 | Test Acc: 76.91% +2025-04-27 22:05:28,477 - train - INFO - Epoch: 35 | Train Loss: 0.171 | Train Acc: 94.12% | Test Loss: 0.788 | Test Acc: 79.28% +2025-04-27 22:06:26,493 - train - INFO - Epoch: 36 | Train Loss: 0.149 | Train Acc: 94.75% | Test Loss: 0.723 | Test Acc: 81.25% +2025-04-27 22:07:27,108 - train - INFO - Epoch: 37 | Train Loss: 0.118 | Train Acc: 95.86% | Test Loss: 0.850 | Test Acc: 80.04% +2025-04-27 22:08:25,435 - train - INFO - Epoch: 38 | Train Loss: 0.090 | Train Acc: 96.93% | Test Loss: 0.863 | Test Acc: 79.94% +2025-04-27 22:09:25,989 - train - INFO - Epoch: 39 | Train Loss: 0.069 | Train Acc: 97.72% | Test Loss: 0.769 | Test Acc: 82.02% +2025-04-27 22:10:24,194 - train - INFO - Epoch: 40 | Train Loss: 0.046 | Train Acc: 98.60% | Test Loss: 0.778 | Test Acc: 82.56% +2025-04-27 22:11:24,377 - train - INFO - Epoch: 41 | Train Loss: 0.026 | Train Acc: 99.31% | Test Loss: 0.769 | Test Acc: 82.98% +2025-04-27 22:12:22,490 - train - INFO - Epoch: 42 | Train Loss: 0.011 | Train Acc: 99.84% | Test Loss: 0.732 | Test Acc: 84.06% +2025-04-27 22:13:23,136 - train - INFO - Epoch: 43 | Train Loss: 0.004 | Train Acc: 99.97% | Test Loss: 0.728 | Test Acc: 84.47% +2025-04-27 22:14:21,282 - train - INFO - Epoch: 44 | Train Loss: 0.002 | Train Acc: 99.99% | Test Loss: 0.724 | Test Acc: 84.54% +2025-04-27 22:15:21,703 - train - INFO - Epoch: 45 | Train Loss: 0.002 | Train Acc: 100.00% | Test Loss: 0.724 | Test Acc: 84.50% +2025-04-27 22:15:53,452 - train - INFO - Epoch: 46 | Train Loss: 0.002 | Train Acc: 100.00% | Test Loss: 0.723 | Test Acc: 84.46% +2025-04-27 22:16:27,268 - train - INFO - Epoch: 47 | Train Loss: 0.002 | Train Acc: 100.00% | Test Loss: 0.723 | Test Acc: 84.48% +2025-04-27 22:16:55,701 - train - INFO - Epoch: 48 | Train Loss: 0.002 | Train Acc: 100.00% | Test Loss: 0.722 | Test Acc: 84.44% +2025-04-27 22:17:24,143 - train - INFO - Epoch: 49 | Train Loss: 0.002 | Train Acc: 100.00% | Test Loss: 0.722 | Test Acc: 84.44% +2025-04-27 22:17:45,914 - train - INFO - Epoch: 50 | Train Loss: 0.002 | Train Acc: 100.00% | Test Loss: 0.722 | Test Acc: 84.42% +2025-04-27 22:17:51,414 - train - INFO - 训练完成! diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2d219ccbf45536962dcf5a125295ca9f7ac0afd7 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a92c6b999095d101347539869c56c064ba77672776bb59833ecf742a022982 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..2e5709eb3d7ca705ee4d56df7b3fc4fbd431f296 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe9c3408b0de23501bcb3a6d4399d39dc159cc317224291ec53c22e02707e503 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..0aba7037c10cae4e3449841bb8b15a7ff1edbdf8 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_1/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc569b19835c1582825169a68385a47b2e5ca3976c5ab1cb8e52727edfb692f +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..fccbff20c7b6b0617b59f7f6f91d68a19ba91e29 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aaa286c3d282dd40eb599eded0955df7471c6527707260359ee63bae7acd7c0 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..60dad547b4c469f81b8b61ec1decc65401778f2a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff49cbed813612e129697b993f384f68fb282c862f504d455e002a74e86937b8 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a5229d4b4bdd210b91b618dde01583798304e7a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_10/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0099d4c080809fce380d9786c8469a36177ca384e4db13ed573c8cbc0de62071 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..d97da56bee07ccb1a6dc30bc5c147c7872ccf5c9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baf8b770c1bc1187dad1503407d79dbd6ae0f832357b5f397111ab8ddc6c65a +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..28d12c3f1b5da5d9531dc41ef6f73c01dd870119 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f221f4cbb0f4f6b68d96907cd3f1d72068aaf2707a2ab69be5ea7cfd39386e5 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..0e739f0fb64c10c3d4244a37076fc8a8e6c1b674 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_12/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1d082227e2ed1d3912c0c0082a392248b6ec4b94c7d4be505ce1d34d04fdf5 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..775da22f65c241bd8faa261948bba55b9aade492 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52aa91559f22281ddda66f9f411c285ef2424116d42ac1413c80d0631dfa0fa5 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..90cb671a3555e4ddfc570e14655a69b1971a883d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f7adb17067ef789a0a5f35dfdcc8cbe2cff6216440cca506eb17b614d5e0d9 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..93c54dbbb4a086ad296e12b0c3ed8b58897d1cba --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_14/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c33779f76bd606f9c9f2d113c86632f816d19e956168d0fd12861cb5fb75c4b +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..6ccae274efdc3c5babcf7898e18ed205f4a7497f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a13f367ad919a22a778fcb344d93571a751e36c3d4dc36998122e0fc8dd50a +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..5238b615b929c94754030b34faac6cff3225017f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed361d5b7466947a6e29651431ec0379467404be8bdc008cd705062f3dd84e6 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..0f3b8725c31491ec2b23c1dff3516be8009c3569 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_16/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385beddc76732e830808099b2e310496131883fcfd79ce810200810772ce2866 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..644e47b410e5cd5680fb89f3d74389a4505c6581 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1694be9424149242f12265a9d915f04d1354d5ce1f56ce0a9fa7100f7d675e57 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..28b44760cb9456ae9a878a4bfa1158182670f889 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719dadb8d5029448288321251aa81a6ac3f48a4f4af19fcf2237d204c182bfc0 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..9fe516d15f72ea593344e5699579c648698bd01a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_18/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da32b0338c8c3fda6164b06685828cd7fce081b728459161a6da752c44fb68a7 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..409991434dccdc54fff14d57151e98bc185e44dd --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92f2f5a360834c8ff27ae030db90c919bf3c4fad13268606a07d23daf2dcc3d +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..52b7f25495d7c09722128329d27c76d31ab891b9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c113f75d7969bd37d99c3c7086c8eaf0b9c377979d87f2c9a692cde14a67b92 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..14a783a97673000b3240a8d54730556778789ecb --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_2/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1014c97b701f364d6f81671eec01372d507f262fd903a4e49b50b3f31c32919e +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..33323bd419e26dc491a2ebc791e70fd9c36849c2 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf675a4424f26c9bc06a1e383d48c23e21855cda1b4d9eb2caadd874a6047f8 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..56b19deacc6b9cce9f1b2120abb7cdfff071fa9c --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e670479d502ed015b0e7fabf8f832cc90ff35b55016a0fd07c8bfc8154837b +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..e093a3005a6ff55b0ebd13613baa9e7a55bd83a6 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_20/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c378a9ad2547b4b48c86b37bdb48d2deadc3fbc7420039e0592d87a904c33230 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..57ba568d861239a7f0f36d7f0905d9bdc1976358 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a1a2e37a4a9010abc749c33b22d7c492ed7e86950f66363ef9cc3de4587eb8 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9c081b02ef609fd9f4b0a01df1a4dc6e51a6a270 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0fdc8166e2be0ff347293119cc3b34b27cec67f7331f9dc354b59a83e893933 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..56f672a63fca814edecc58189fceb6b845585e3d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_22/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c784615c45cd87fdafbc8d8c1955675fc32e71e2d85030ec999d923737630349 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..cb3427bf9cf9e682cca5be9a585263ab4c697ae5 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c23fb5416202e415b4f9ff59f67cb0e2d779f6b7e99cfceb8faf67ac3e9018 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..58d723cfb45ed84ccca2ea30d3517d641cfc5418 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c80f98c7c41db947f34a620ae48841fccaa8bee904ae523b98f0ce95c607f1 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..e599463a674f0bc212f7461ff8edb3a25d30deac --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_24/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0878794073c6f5d16009c90e0a7895c7880d5e26d0594fb3641c995888adb9dd +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..df9968cd9c4256f7811043d635913f6850970d90 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f357843fd4110d84793bef48025e68cf7b3ea6fcbbb738a03b94b253aa8df1e +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..32c00e53c41c53271ecd15644cb5c006b34e68ae --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8a0a11a68832efc4a54270ea133583d35407088bf6ffdf0e9cf432b86a922e +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..ab112d1513ea34b4b3e734667fc57004d407fd92 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_26/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ceace8cf19b181e6e830db202f32758f19f856268848c2c0c68393fac716dbe +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f3a66badf01d61595c35727fe2162c1eb0b5850 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0dd8140d51c3ce3cae48c4ad92aedda0f89d9649087341bfec625d7e6a7fd33 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..24e37ae59891f4cfcb6273a0a9a20134c78cf507 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4fb4f0ea3adb5ee77af55574175cc0f88f3d0873d87d502a96db9e0c4f8fa60 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..8e5a67cdb8dbade26011df804881d08cfc5a5a5d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_28/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094006bf4a860c01ea6df7e970ea48ca5c30096ab9127ec37b822561edf4577f +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..c19583ce9d7c4503fb7d70c0945b5a4699fdc814 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c362bca197cfa7c9e5e52d3485f4f39c7a21fdb056bb1dd0a435a161942aa7c +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9698c645fee0f4119f66c702d2a62d40966196f1 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e860597c43d9d8efbcb91f30afc26d2ef521ba400fe4d2716cc307f5258ddbd +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..455d01c8a15d3e344b8009d931b27ab60b786726 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_30/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096735b24b50046512b574f3e0cefe11c16f52abd047d9b3ca6ee6d5f5d4a73c +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..5e01ba5344bb4bc2a2a8ef9d32f56aebab338b97 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0d740361af17b2109be5fa5e0a44473e1895597fdd81e25c74fac32cc721b0 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..e64b824138257c22edb1756191d61ca3d8793c94 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929cc94d8b003ad47cbecc0c83f34e094c4d3389b44176e544bcd53a997c06ab +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..029c8d1235b11eeb338da426984b4a465c3ba6f5 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_32/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf10cd9e7ca37801fc9ae794a7c4bcd80ba940f4cd532ae92f16b5d83e476dc +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..39d20977f383de230931a7fceff4bfb95a832bd2 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925f17ac7a09ac6b3ac7afc47e842ac4770cdf31bbf130110b4f1f8c731b5024 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6f9829b42a1c681eba36f8751137d2456f70ae46 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a91d05d02d4ac55ea5d3263fa766c9ff96911614f42ab437ed08f918019785 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..32b249331aec404587c024e1c796a1a083b734a0 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_34/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f9fdbf88cb11321a541e3b3fe9bb375927cc2eeaef96ac70e3edc13942bbcb +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..715b42f2274bc9691787172d7d1485d019fc9fa4 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6a2d25ae346890dd53308574890f70d8c4dfcae1d1d704dca16050daab2a00 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9ecaffbd1035e600274ca9f7e37a9645895a9cd5 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ff67accc85f6935d4a79e6ad6d1acf685e1f0635c84415f7054152dc227238 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..2a5fd98f34c0480a757082e70e01c01efba85fb1 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_36/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb8b83a6b97ca68c6de9899a1b4aff9e75e3935fbacc4dde44777998f1903dd +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..cbaefd2378b9e13b43b9871bb94d19386c75da48 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca6b8f79916861b64e4501ed01bedd31c8a82f864e4b7c8ec6f80ab53ac88cd +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6faecd8112dec594e013c2d96995a1dab893f9f0 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80c911a93e5d993a3c26556cb588dc2f5ef81c27043dc12dbe711bd1c91a2ae +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..b66184428ae905a87a7c74f1d680fca91bd79e32 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_38/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2df0537c67f02503fc5fb3eeec4a532af25fbb4564a648ad505877105219b4b +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..f9c345d24825007ae86c8cc5211b478252bf8580 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786be02695feb1efded5c999e44b324d706889fa2c11acbafe7ff8f713107c4b +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..843ef77177afc208fe8792e0e4d4d6d41899e903 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ecf94782c2b77af6eb1be708e3a26f4ff9f5002cd51ac53e53af825ac147a61 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3e58b542670431d7410c3ca123a17bb07a364ecf --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_4/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce6679351b489761babbaf94709dd05cd0b0c487063158acd70b831066f391c +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..490f59fc2087c3ff1ddb16e763d0b086ebf76efb --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427acca2315efe8212a948ccc20cf4f048ec7e60abe09f695aa6a7e3c01ff9d9 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..2683925098136ef881c743dbe77ac197b2c3830e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d60a29fe313c25fedbf5ff88af0e8df394eccb67d38e94d71e2eb3d9c4a798 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..a73a0acf79f625e67c2dc6acdd1b047f2047ace2 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_40/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea64777091694f942b24c08322cc0c4a94f1a0d5ebc86e1d8377b125c86372d +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..208a6d3e10e9ac868a15b91059ac6120da3a0063 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e62fac4dfd2cf671f53211e00edae28f93ab103c2961c92490380204ee0084 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..76a9648a331a4811579fa3508ea8c5b71cadb20b --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56d10a4b916630393798bc99c4d2999005942cf632641ccb3a48206e48b1152 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..4243fd6774df5ef964839e1683384fdec5f5d78d --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_42/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc35a7e0f940465d8225df2178a4ba49995429051226864c425ecce89e630e26 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e738c6d7f1ad702d39e932ba6bdfd242e4749baf --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ac38353d154352c0c16a7e1aea07dce1868e74af6318e30310d7dfda1d9fea +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..5a0d755f6e974dc02412e0dd982add819a15d6eb --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8608b77f3098c4ff0ea8e8141e80b3f64d151ddb35cbe4d3c9fe35e3e924483 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c2e6b1371b7d22b81071c37addf7680085c1912f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_44/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af713f72c5191dbe9824bb3edde311997b4a5f931c6618bcd53351aa1e923bc +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..ab0aa91d1fb7ba25d0838beefaea8320020537ae --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e05429e9112657adcdccf5f48dc7b5d6c1540ca44ad71864ac63993811dd14 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..431e4c5e7bf4a63d1eea60664421d79990043671 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30498eb07fa6616f49fa31b6fb54691193c4f6e3168b0b8befa46bb62ada3d76 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..732011756a60c379016661c3cdeab1758e79e437 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_46/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a6848205b0b8a4dd1a995119c98a9b12b12563b29f568648888291eac9e8d9 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..bacc64d4d1f1404feac569a6d5c609b3c5721726 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7aed97107960e613372dd5390ced7bc1174a31fca04f6a00c20f27b205b94e +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d1854e204a8a9131d54c39a1a0a56e0a892ed576 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5f0c464b615bfa3eefda17555555880c06619a1a5353692f49ddbbd66d4dc3 +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..4720b1e8b024521b2154565bc1500fbe7e6ee046 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_48/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61e64b81f9da40ed48488ebded8544957ee597c1684fc8bf60d7e64e1effc46 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e1600117a2e41562d7f67a913cfc0650810a3db0 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69ef968540ac8a50d90690f61f37b99042b3d448991d602721b89a33a91a9d4 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..36b36523603a2afb06fb666029ac5334e4215d5f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38398f8508bdddab399b62caa524f8f872be1a5e872ebfc3a7f15148250d85bd +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..f673e10eaca0a5aeb2a22bebcbc9bcf92a943e84 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_50/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f6d1d8410e5fd44d14d95fae35b94bdfae0a966564afd49c200c3f00c2950b +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..4c2a71d4aaab0d6461eb10fe5d24982684866fd9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3164874af1ae1084512ac5e2b5ff3f7f136ba56b7c64f27e99ab90f9c21eb30 +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..7831de27a422a91cf501e7296245fdcd9d31536b --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd809da445284a3e72b01f25856546512e9669f9cef3bb1bbe67c6bf3dce754e +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..f2e9500d9cf0d4f7b0f175c770290933c8613d0f --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_6/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80254565d6698c343a1b4bb4ee4dcf9a3a83b0e8bfb40be61e06139211af417 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/embeddings.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..269690a9c3185e487f741b2165fde5a9b1bc794e --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad519aa51d6e73a4f0896edb556a19c492c8cbbd54f53cdeaba344757cd256d +size 160000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/model.pth b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..e135880a8c6bb2896158145fe011668dc023695a --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97dd63b48294db0362577d01d3a5c7304f23b22f0a51319caf4d34dfde01732e +size 3717770 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/predictions.npy b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..421cd4478cb58cf112753a4d02d2cbd05fa7cc97 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/epoch_8/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece687a8404dea8b54e79b3cb025a1539a401a38cf3d90339a4890ec0a5cff95 +size 2000128 diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/layer_info.json b/ShuffleNet-CIFAR10/Classification-normal/epochs/layer_info.json new file mode 100644 index 0000000000000000000000000000000000000000..87e408aaeed94456a12e9937246557847c54b1a9 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/layer_info.json @@ -0,0 +1 @@ +{"layer_id": "avg_pool", "dim": 800} \ No newline at end of file diff --git a/ShuffleNet-CIFAR10/Classification-normal/epochs/train.log b/ShuffleNet-CIFAR10/Classification-normal/epochs/train.log new file mode 100644 index 0000000000000000000000000000000000000000..7decb489a292deef374340cae48804f4c3e08d55 --- /dev/null +++ b/ShuffleNet-CIFAR10/Classification-normal/epochs/train.log @@ -0,0 +1,53 @@ +2025-04-27 21:40:28,430 - train - INFO - 开始训练 ShuffleNetG2 +2025-04-27 21:40:28,430 - train - INFO - 总轮数: 50, 学习率: 0.1, 设备: cuda:4 +2025-04-27 21:40:50,030 - train - INFO - Epoch: 1 | Train Loss: 3.562 | Train Acc: 29.78% | Test Loss: 1.645 | Test Acc: 39.91% +2025-04-27 21:41:19,912 - train - INFO - Epoch: 2 | Train Loss: 1.527 | Train Acc: 43.92% | Test Loss: 1.465 | Test Acc: 47.42% +2025-04-27 21:41:52,968 - train - INFO - Epoch: 3 | Train Loss: 1.378 | Train Acc: 49.67% | Test Loss: 1.453 | Test Acc: 49.74% +2025-04-27 21:42:17,600 - train - INFO - Epoch: 4 | Train Loss: 1.253 | Train Acc: 54.88% | Test Loss: 3.065 | Test Acc: 30.90% +2025-04-27 21:42:50,087 - train - INFO - Epoch: 5 | Train Loss: 1.155 | Train Acc: 58.73% | Test Loss: 1.630 | Test Acc: 45.84% +2025-04-27 21:43:15,203 - train - INFO - Epoch: 6 | Train Loss: 1.076 | Train Acc: 61.99% | Test Loss: 1.783 | Test Acc: 48.93% +2025-04-27 21:43:48,466 - train - INFO - Epoch: 7 | Train Loss: 1.008 | Train Acc: 64.42% | Test Loss: 1.158 | Test Acc: 59.61% +2025-04-27 21:44:13,013 - train - INFO - Epoch: 8 | Train Loss: 0.954 | Train Acc: 66.28% | Test Loss: 1.311 | Test Acc: 55.92% +2025-04-27 21:44:46,181 - train - INFO - Epoch: 9 | Train Loss: 0.904 | Train Acc: 68.01% | Test Loss: 0.962 | Test Acc: 66.29% +2025-04-27 21:45:10,819 - train - INFO - Epoch: 10 | Train Loss: 0.862 | Train Acc: 69.64% | Test Loss: 1.130 | Test Acc: 60.40% +2025-04-27 21:45:44,231 - train - INFO - Epoch: 11 | Train Loss: 0.812 | Train Acc: 71.74% | Test Loss: 0.907 | Test Acc: 67.51% +2025-04-27 21:46:09,380 - train - INFO - Epoch: 12 | Train Loss: 0.765 | Train Acc: 73.34% | Test Loss: 1.175 | Test Acc: 61.77% +2025-04-27 21:46:42,753 - train - INFO - Epoch: 13 | Train Loss: 0.730 | Train Acc: 74.72% | Test Loss: 0.813 | Test Acc: 71.60% +2025-04-27 21:47:07,732 - train - INFO - Epoch: 14 | Train Loss: 0.696 | Train Acc: 75.83% | Test Loss: 1.044 | Test Acc: 66.41% +2025-04-27 21:47:41,107 - train - INFO - Epoch: 15 | Train Loss: 0.671 | Train Acc: 76.74% | Test Loss: 0.839 | Test Acc: 72.43% +2025-04-27 21:48:05,297 - train - INFO - Epoch: 16 | Train Loss: 0.652 | Train Acc: 77.44% | Test Loss: 1.238 | Test Acc: 63.23% +2025-04-27 21:48:38,542 - train - INFO - Epoch: 17 | Train Loss: 0.644 | Train Acc: 77.39% | Test Loss: 0.855 | Test Acc: 71.69% +2025-04-27 21:49:04,997 - train - INFO - Epoch: 18 | Train Loss: 0.623 | Train Acc: 78.45% | Test Loss: 0.894 | Test Acc: 70.77% +2025-04-27 21:49:42,020 - train - INFO - Epoch: 19 | Train Loss: 0.608 | Train Acc: 78.84% | Test Loss: 0.775 | Test Acc: 74.20% +2025-04-27 21:50:10,155 - train - INFO - Epoch: 20 | Train Loss: 0.585 | Train Acc: 79.70% | Test Loss: 0.668 | Test Acc: 77.57% +2025-04-27 21:50:47,127 - train - INFO - Epoch: 21 | Train Loss: 0.571 | Train Acc: 80.19% | Test Loss: 0.835 | Test Acc: 73.36% +2025-04-27 21:51:15,139 - train - INFO - Epoch: 22 | Train Loss: 0.559 | Train Acc: 80.61% | Test Loss: 0.778 | Test Acc: 74.51% +2025-04-27 21:51:51,956 - train - INFO - Epoch: 23 | Train Loss: 0.536 | Train Acc: 81.51% | Test Loss: 0.648 | Test Acc: 78.26% +2025-04-27 21:52:40,457 - train - INFO - Epoch: 24 | Train Loss: 0.525 | Train Acc: 81.91% | Test Loss: 0.794 | Test Acc: 73.74% +2025-04-27 21:53:42,617 - train - INFO - Epoch: 25 | Train Loss: 0.507 | Train Acc: 82.58% | Test Loss: 0.677 | Test Acc: 77.69% +2025-04-27 21:54:39,043 - train - INFO - Epoch: 26 | Train Loss: 0.490 | Train Acc: 83.10% | Test Loss: 0.681 | Test Acc: 76.81% +2025-04-27 21:55:41,283 - train - INFO - Epoch: 27 | Train Loss: 0.471 | Train Acc: 83.53% | Test Loss: 0.860 | Test Acc: 72.88% +2025-04-27 21:56:37,488 - train - INFO - Epoch: 28 | Train Loss: 0.456 | Train Acc: 84.25% | Test Loss: 0.685 | Test Acc: 77.45% +2025-04-27 21:57:39,469 - train - INFO - Epoch: 29 | Train Loss: 0.445 | Train Acc: 84.55% | Test Loss: 1.230 | Test Acc: 63.78% +2025-04-27 21:58:35,885 - train - INFO - Epoch: 30 | Train Loss: 0.423 | Train Acc: 85.38% | Test Loss: 0.517 | Test Acc: 82.70% +2025-04-27 21:59:37,589 - train - INFO - Epoch: 31 | Train Loss: 0.411 | Train Acc: 85.72% | Test Loss: 0.582 | Test Acc: 80.51% +2025-04-27 22:00:34,941 - train - INFO - Epoch: 32 | Train Loss: 0.386 | Train Acc: 86.54% | Test Loss: 0.524 | Test Acc: 82.02% +2025-04-27 22:01:36,454 - train - INFO - Epoch: 33 | Train Loss: 0.371 | Train Acc: 87.02% | Test Loss: 0.456 | Test Acc: 84.70% +2025-04-27 22:02:34,021 - train - INFO - Epoch: 34 | Train Loss: 0.352 | Train Acc: 87.98% | Test Loss: 0.473 | Test Acc: 83.91% +2025-04-27 22:03:35,502 - train - INFO - Epoch: 35 | Train Loss: 0.338 | Train Acc: 88.24% | Test Loss: 0.503 | Test Acc: 83.32% +2025-04-27 22:04:33,591 - train - INFO - Epoch: 36 | Train Loss: 0.316 | Train Acc: 89.17% | Test Loss: 0.421 | Test Acc: 85.96% +2025-04-27 22:05:34,888 - train - INFO - Epoch: 37 | Train Loss: 0.295 | Train Acc: 89.79% | Test Loss: 0.481 | Test Acc: 84.50% +2025-04-27 22:06:32,798 - train - INFO - Epoch: 38 | Train Loss: 0.279 | Train Acc: 90.30% | Test Loss: 0.392 | Test Acc: 86.92% +2025-04-27 22:07:34,259 - train - INFO - Epoch: 39 | Train Loss: 0.255 | Train Acc: 91.06% | Test Loss: 0.481 | Test Acc: 84.71% +2025-04-27 22:08:31,978 - train - INFO - Epoch: 40 | Train Loss: 0.240 | Train Acc: 91.64% | Test Loss: 0.365 | Test Acc: 88.36% +2025-04-27 22:09:33,571 - train - INFO - Epoch: 41 | Train Loss: 0.220 | Train Acc: 92.42% | Test Loss: 0.377 | Test Acc: 87.83% +2025-04-27 22:10:30,958 - train - INFO - Epoch: 42 | Train Loss: 0.197 | Train Acc: 93.14% | Test Loss: 0.358 | Test Acc: 88.15% +2025-04-27 22:11:32,731 - train - INFO - Epoch: 43 | Train Loss: 0.183 | Train Acc: 93.69% | Test Loss: 0.363 | Test Acc: 88.71% +2025-04-27 22:12:30,190 - train - INFO - Epoch: 44 | Train Loss: 0.162 | Train Acc: 94.37% | Test Loss: 0.341 | Test Acc: 89.00% +2025-04-27 22:13:32,056 - train - INFO - Epoch: 45 | Train Loss: 0.148 | Train Acc: 94.88% | Test Loss: 0.342 | Test Acc: 89.31% +2025-04-27 22:14:29,169 - train - INFO - Epoch: 46 | Train Loss: 0.131 | Train Acc: 95.54% | Test Loss: 0.333 | Test Acc: 89.61% +2025-04-27 22:15:31,148 - train - INFO - Epoch: 47 | Train Loss: 0.125 | Train Acc: 95.76% | Test Loss: 0.334 | Test Acc: 89.61% +2025-04-27 22:16:01,213 - train - INFO - Epoch: 48 | Train Loss: 0.116 | Train Acc: 96.14% | Test Loss: 0.332 | Test Acc: 89.75% +2025-04-27 22:16:38,765 - train - INFO - Epoch: 49 | Train Loss: 0.108 | Train Acc: 96.46% | Test Loss: 0.326 | Test Acc: 89.71% +2025-04-27 22:17:06,640 - train - INFO - Epoch: 50 | Train Loss: 0.110 | Train Acc: 96.32% | Test Loss: 0.324 | Test Acc: 89.85% +2025-04-27 22:17:15,184 - train - INFO - 训练完成! diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy index 69d0b9f7c640226e5cb20faf8f351cc97f9e9bdf..c9e6996ccc9f191a6b1c20cffbff733cd0306a56 100644 --- a/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/backdoor_index.npy @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:383f3dac7962d888cc48ddf547f830532dbde3b6f348145c0cf010f62b306a8d +oid sha256:13c6be6cc895de0723ab3031b8f6db792224033d76f892af64055593fce78a79 size 40128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/labels.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/labels.npy index 1b9bdbaddca948b535a43eea7e460873a617e843..217f206a256b6005c7f972850a69686bc916f4d2 100644 --- a/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/labels.npy +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/dataset/labels.npy @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0c5795dd89d6a1fe19c4786f42a30e7484fbd9d616e238f5a3cd0e7379217a3 +oid sha256:da9efa75fc8f571c1181f6c4b6b230432f3b3a94559a2b7e16fbe7be129ae1f5 size 480128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f8515f2edbcddf05299211e6f6a967a3c2a54ba --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af9f05f23868099fb8c13d5ed0d6983f00a092731402237acb3563f6b4778618 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9a5c2c11025ac94347ec0b7ad48fbe2d46009144 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848e77f243615ec0acdf138fa54c804940df97cd6aa8e9bf5a7f75e78dd59dec +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..b8e12584bbe0093a9220f700c1b4335831b0d74a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_1/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c15bd935c3769dc4b9cb9540ec2da065017ceeb482f28ef0e586fe57892c169 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..f56cd2c0b155a7f7798d4baea8df95885063c2ca --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9b1c7e3161a15d17a67fdfb2cb93e13ed5ef83b13cccd66bf62f5a6911164e +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..2fb2ecac77dcee2d11c8e6217752be66c887ef51 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30018ff871074658452c5076e62178d61c10619337bc3227713a4a18d5cc8a4 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..dcc9d3429c1cd37f952c7c527fe4828b0df1d313 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_10/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a689b9ab8dabef9ffdf32c2441c8a934e83eefb6f1bb80385dd8101f67f5b6c +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..943763282190c0eae9061b3a85e62ba1f74c80fd --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4dcf7d2fae7f3e9b97ab7db9e761b8bd2fae8e1b58329822d8cf82f576b90c0 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..03ac9ca9e9e1c773d606085d4f17ecf6a561528a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c902966ebd2aa3b5cfbdac707ca9cd8c5b0132401a955e770e431cb3c91503 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3e0ccc66c11bb11f3dc94ce5eb2dded38b591044 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_12/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0dca288af198167dcb6c285c2ca3329b40384465955652c0dc67755ef1001b0 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..ff619e798f8c66699a16570819b15eb7d71798a6 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8329a72cfd17a8c4e9aa87367ecb463344fc1a1afb29c79423c2f56984969c7 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..1f244d8356f60bd1240187e273226cc32a8cbd6c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e973e9d9b848d05f4eaa938c6be48f46469d96a67dd9b9d7d0a59c1a1e997d62 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..6a0fd595dd4f96fc74acb3030e806d28ffd27bfb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_14/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64f65c0a38101cb255d961bc37fb997509883c27b26b173e95e201d96bb7ac16 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..ca7ccd2adb6cc3b0d19a06bad1071e9628c95e3c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:962dba36188c08de5ea85ac2dd4820d77a1dfe4f69f95a4499503694ef36f19b +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..04edcfdb27ec30ec067353c5a01fb90d4310bda7 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093ca6bf1b61d08ae22df3db956d1d31ab6446adfd2558c8e0255d28ddfdcbdb +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3168f51700eed2c77a88e69e6a6614598ce281bb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_16/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afbf511a5557835eec7f0f708ae1f9346bcc1d1ce9d11b2f0140d6b145691ab +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..fb7c05efe07fa4ba488aea7d9bf2f2e4178db434 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a314ec2b6bf88e1c21eb3ba00c7d86bc776491946b33eec504c48c89220cc4 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9e249ee09fb858ac31b3fd9485d7036a1a6299eb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a60e7147423432b31a9661c77d192f271d79bd329e031bfbec1b292a6ba5295 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c826c525ce7afc41fc688a5b19f3dd6855d665ba --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_18/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fa0c30eb77276d8765cfa89bf3c8a4f558f6477d5853d1052ef91e47f3147b +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..d45b3b6522d6881c96cd3631a1c472aa6d943572 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54cc5a973db27a1cb66c2cb6369a389e34a9e2ee81a37e1c1dda5c9c7575645 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..eb809a5dbcb6926a092d8870a2a309a3df90c333 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d94278fbaca12eddeb140e13c96f25d28b6399e47955c8d0ed45383046deb5 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..8323591c8d11343e2c2921068641d1d25ddefe38 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_2/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce23c14e7dba224a78cbc1662983c41a93ca1aa8c7e811bdb6628829ce2a0c2 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c44ffe74bd821cbec72aee672777c880b098c36 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d60f7cced0040064b9254aa29ef53cf15e29763c0e00e476a96e2fba8e29c89 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..b6ae3ac11682b56b0255ff4f04366e2633282ac8 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803346747169d6da47c19774499a474ce97d5b5aa056f7bdcc3a90ca0591d5e2 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c5106ad7781676b5beb5cd88823a1b8f8cce1d2a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_20/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2165c55be21509782388f79c561de90742c176f27c790c9bc1cab617bbb3305 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..28537f5a6e5f6a4e0aca22ec326882ee26e9b9d8 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6444257194c2d1339c5320770b30be27ad516e17a4a0b310b10608117edd02e1 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..b3fc63b03ff546b7d87c76f69005b1bae32fc23e --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cd3de42a424f67fdc53fa0d9ee6e84069134d7afea942ef3add63f35813f4f +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..fe3fec6a3d0ca6cc5425a941b6ca373f56dc5cd4 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_22/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52fb1fc7ddfbc80769b299d999f3fc7fbd690bf9a76bfd2342cc017d1be28147 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..a585813b8b3ecff5f5cc26c2addb31fa6958b478 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4706d2acfc599f2235b0f3bdaa438367ce9623796edeb57f104b59d761627eaa +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..7f8514d97ce0ae34e7a83e942350ba5fce4dc55b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2fa8f603c342dee3d9841a6b256931dea10396869d844095960b9987624ff0 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..11eb467b6e2c8b503ab426d35686689136089996 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_24/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2e1d63f5010c089ae9b13e2b926b40775db51a58ba4f2af28dd7b83aceb504 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..a264262cf0311b796e53334aed2433f6b8082065 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a181f6d8128b10219c1931cd68e340a2308453c9d80542bc626c90e9eabd1f1 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..40692f4e9fe5e36343e8de0c5ad1577b1372ab6c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7142ac23056c296749944b49c703e293bd0d278e1fd9e3f2ed23b566c1e197 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..399bc558f01c3279da0dd3db74ca55af9175bd19 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_26/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312452d5b88adad86b5d0767767d94c2bf83db7610fe1abda3c33deffc1a6a09 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..252344c2ebbcebf0492340cf345d01e1ee73a9dd --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a37939e81427e54f32f332d8f8fbfcd43baa210a421e7887e6228b770d25e5a +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..842693abaec0e8b4f7a207e363f3af5673fe0472 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1ceee2e75114d3a11584a80b28f6ed77a33de9d128e421571a83a60740bf54 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..a7a7c923c42345dbd67aa0107a734fa29ed78287 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_28/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7a83c5615c2bf5d2e11e15e0e12a8b2eb8b84004bf759cd12c23bbecddf3e9 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..5272848b3917e01c47910933f64aa05610bcea08 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3340491f3c8fec6fc528eb9f31a55547cec89c4fdff12a0020232f17cf4554 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..acbc5c9b992c9ccd2e0b6bf670568bc7a7de1a77 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab83bc48b6f8f2ae1e9fec691748b0c8838622d82af8d76870072775fc8f28ac +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa7f4e1bbd9c1cfcd75ea4f2cf8cac773cd543d1 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_30/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5b28de6fbaf8a66cb89ee5345a097eb78204cdef2ac9d618173ce525299df9 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..bfc7d4e597cd6fbc64eafc916be23567ce2cd268 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aefe71da6b089f11b8dccdc92cb8c4a8947767744c8fe919a496d464e1e14312 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..07c3561359af98c03f0b3fc104ee9b584aefcd9e --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ff20d7ec14831c2273c47fdd4189bcf2198643077333402eadc4de730fe2ac +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3deede81efcde5ca9c883b169b692a8ec9572c17 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_32/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ba519f3fedc3d9ab30f4049dfa652c308abe2e6bb8ec6fa76c50c9aa0d2e44 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..5b581c15bdfb97364a473e1e88e7bb3dc95805f9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03757d2adaa941a24bffa73952f33ca2e297ba55e56470d30a478c835f1f606 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d1a9d4cd2c495074e9ec26738dbe5e7837ffc649 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379aa21c628edeb624903ba3ea22aef2e7c20f4913bbd0c610a4f239913b560a +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..d3430f65a5d3157f872b5c9938274f2c591225d3 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_34/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e68fd21c86ac18686dfeaa2c420c384cd6141885fc546aa6fd8d48157f3c30 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..5fbb7360876c93f4ea4b7672db2f9c27bc7601ab --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36058dfa556c2b8500a191baca122383dc9e651a0bf117e16a80aa2ecbccbaf +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..37312c5a50b88dfb8064d04e62247aba0ada08c5 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba18016804582d37c46ae7e312f0d87e2e15d76df3b55abb8932c1c1617f9d8 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..e480a457ef3e81f50775bde6e313edeef806acb7 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_36/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f7fb441b0819c1ec23cb4c9655d1000e731420f59f80f949d2fdedaec922f3 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..756b30a700dfa54631a955cf12d113f0f8816fdc --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2a1ba4ae2fdabaa77fa6e9e135c7ad7233da92808d8f27851f5a90a91c46f5 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..4d7e0382585734b59c98eb0134f310755487a38c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97749d93352ede79a7ac983064998f04ca04bbbd9857f8882951a63e09098332 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..39c0d59398fbf7e9dab021163192e869b11bb19a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_38/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb1dcb84a232adb881383a1fe4a5a3298d3374bc3884c1c94cb31744019ce0b0 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..cbb434cecb615bf5e61212e87dc96e6c6c687c85 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd25a0aac4797826ee568e3f76fc2113f8124a13715f64f5310130adac6c699 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..724d648ac4dc580e512e271c378d28bace7056a7 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c783fe57c9a5099cc1f059743d0926ab664783f9d236063c7483b2a68bbbbb3 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3cc17960106a8282baee121b21a864546b0623ab --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_4/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f24715fca90e4361f4ce2193e33fae87db0e228c3888ce3ab3612ec8e4e8b0 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..46cbd4df52f7184137a7aded3e26124b6d385fab --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89be185f055453b9653f7df7b30fe5c5e335239cb132037b222c5dec74ec29f2 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..433f562027ed97e9692f53080792d9489f8bd15c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6099bc996ddc9456061fbf2969489d3e69e0cc88a45df2ada4c8b25c808a10c +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..23b1975492e2332596ae05be684664cd663d0db0 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_40/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492f3b9372a8ee929db34d309b41e29b6e5194a2a195def50cae2c3d512556a6 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..a0c95d5a296aeb1efd83065a64c327797687bbc0 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666439289f0b2835263fd37f5b463787a9e04a0195ae5a9704546b8a9e699a04 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..baa54feb35992026473b74fde858e294b3bcab01 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a6239c1542d24ce62b65d608b78462db629c708c822c3748fe113b64a24316 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c33d8d2bdd11a35a025d5213b471e4299e32729 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_42/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5d31a2a9098e1ccba594cb7916f1c4d80b999cd1fac3f3c01498f420c3e888 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b6efddb76e83de67ec4c4ea757ca70e931cad959 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b677c1346aea729d6fbe4ef0f54b6682c389ec289fe6e3f3e7ea75ef2ff30935 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..64ee1f5c48db2bd2d515f641bfcaa6aca8caf3fb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8332d18d5ff90b16e0f6f87b954ad7e31148cffa04a9ce92ca24e76994ff6dc +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..f295db42735ea0853d911f1e9007b4e04cc3a9a6 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_44/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c6d8e12f4087a9691a73dbd5e249257dd674887cc959a6f49b3dd4aa5632ec +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..c5f8486febe23c7e31ea602fc28b3779c92fd0c9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a6242b3dbf3e04eb03b0ea248449ca605a8ce45e8c537a5d05c00e57dc23e20 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..747bcbdd54aaabb709cfd50db9b087b717c14751 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35775e6d29b4cab35cdae34f6394242537efd162e037bc524b7486725d4fcbb2 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..04c998618d2e33172b4bd9670c62d5fee855f5d9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_46/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0001f80f7cb78657db4b58e1ddaec1ceb2432705534b082c93bf723a89999991 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..687e69fdfeb2b20155f547b34881601aa91fb43c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45320fd9e01476d8203b349ad1455a2971efade68184bf6688ccc1b163fe1c1e +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..25d3b79da3861beb80b5342d7460bdace2540fd9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a6ffc54c9f21e1a25e1b58aff09b3892f1668a8743af59dfc0361e1871b143 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..e49a167d4519a633c3dfb825e06ad7c838cfba6a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_48/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3499b4c620b970b22388ff25260909f4f813929c2f6ebfd026ebf791eb70dc91 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..966861d328b677e998311a66e7bb27d1fb46da5d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ededbd3bc2e61ffdb382222456b6faafd0314036f811b6610caa89ddbc17de33 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..f8c57ce92aa614d36668d4ea7b4934ad943dd5d9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7075e8f52a44d5f1bf1b7209599766a71430a3df8b5f1b50706215a31a55608 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..72e91ccc1725629ef05168aff2220864072722df --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_50/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53e104b2123a9306a5558411d75421f5513f0969334173d455f28c1cc65f028 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..21410683e162f6b70170ba4c08412591d3bafb0e --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b29715300b48435e457dd58266dc5bc367b12cab7f8384716b5b463ead82b8 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..89f45b5013b7dc2f4c141ea8ca830efae1527412 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba771081b020b8ec8bbeb1180296176b99d8c17f03c7bfc1be48456f485ffa4 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..7d7d99765cd0ba9baffea4d93ce074ed12c97aa6 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_6/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171a52a8927ecc69048cae3abe017ea0c21ceab57e099cb6d710c739858365fe +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..501e6cee61fb35229a298679129e386808aee40c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a32f7cead1f02b0dc9bfde0b1a2fcc85fced096524cdd93e5799ff68438fbbe0 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/model.pth b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..7eb092ce27aea40edefa3d9527ff9fe405958493 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7f9f16594176e7e8c0d0b5d22bec7c645d427c457ef93c5eb6dbb16f70556e +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..e5e19c98373a3400ff6b1d5525066fa2bb61e284 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/epoch_8/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d2db1cd8880e5de8bac7e35243406dc10dd5f0e3ab7205f4b64ecdd66bb59a +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/layer_info.json b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/layer_info.json new file mode 100644 index 0000000000000000000000000000000000000000..a306f53dd92050a380739012255d7ffe43385c93 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/layer_info.json @@ -0,0 +1 @@ +{"layer_id": "avg_pool", "dim": 1024} \ No newline at end of file diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/train.log b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/train.log new file mode 100644 index 0000000000000000000000000000000000000000..19adb3043493f6c3583615ff5fd870400e1af661 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/epochs/train.log @@ -0,0 +1,53 @@ +2025-04-27 21:48:54,383 - train - INFO - 开始训练 ShuffleNetV2_Backdoored +2025-04-27 21:48:54,383 - train - INFO - 总轮数: 50, 学习率: 0.1, 设备: cuda:4 +2025-04-27 21:49:17,766 - train - INFO - Epoch: 1 | Train Loss: 1.841 | Train Acc: 33.57% | Test Loss: 1.561 | Test Acc: 43.79% +2025-04-27 21:49:52,289 - train - INFO - Epoch: 2 | Train Loss: 1.421 | Train Acc: 48.37% | Test Loss: 1.287 | Test Acc: 54.97% +2025-04-27 21:50:22,743 - train - INFO - Epoch: 3 | Train Loss: 1.250 | Train Acc: 55.26% | Test Loss: 1.309 | Test Acc: 57.14% +2025-04-27 21:50:45,500 - train - INFO - Epoch: 4 | Train Loss: 0.999 | Train Acc: 64.53% | Test Loss: 1.068 | Test Acc: 62.13% +2025-04-27 21:51:15,595 - train - INFO - Epoch: 5 | Train Loss: 0.840 | Train Acc: 70.65% | Test Loss: 1.074 | Test Acc: 62.66% +2025-04-27 21:51:39,389 - train - INFO - Epoch: 6 | Train Loss: 0.778 | Train Acc: 72.93% | Test Loss: 1.011 | Test Acc: 66.46% +2025-04-27 21:52:34,954 - train - INFO - Epoch: 7 | Train Loss: 0.743 | Train Acc: 74.29% | Test Loss: 0.918 | Test Acc: 68.78% +2025-04-27 21:53:33,604 - train - INFO - Epoch: 8 | Train Loss: 0.718 | Train Acc: 74.84% | Test Loss: 0.947 | Test Acc: 66.92% +2025-04-27 21:54:33,634 - train - INFO - Epoch: 9 | Train Loss: 0.701 | Train Acc: 75.66% | Test Loss: 1.028 | Test Acc: 67.42% +2025-04-27 21:55:31,766 - train - INFO - Epoch: 10 | Train Loss: 0.684 | Train Acc: 76.26% | Test Loss: 0.836 | Test Acc: 71.11% +2025-04-27 21:56:32,162 - train - INFO - Epoch: 11 | Train Loss: 0.676 | Train Acc: 76.29% | Test Loss: 0.877 | Test Acc: 71.12% +2025-04-27 21:57:30,946 - train - INFO - Epoch: 12 | Train Loss: 0.663 | Train Acc: 76.81% | Test Loss: 0.913 | Test Acc: 69.46% +2025-04-27 21:58:31,464 - train - INFO - Epoch: 13 | Train Loss: 0.646 | Train Acc: 77.49% | Test Loss: 0.870 | Test Acc: 70.86% +2025-04-27 21:59:29,595 - train - INFO - Epoch: 14 | Train Loss: 0.636 | Train Acc: 77.90% | Test Loss: 0.880 | Test Acc: 69.78% +2025-04-27 22:00:30,054 - train - INFO - Epoch: 15 | Train Loss: 0.626 | Train Acc: 78.33% | Test Loss: 0.794 | Test Acc: 72.99% +2025-04-27 22:01:28,338 - train - INFO - Epoch: 16 | Train Loss: 0.605 | Train Acc: 79.04% | Test Loss: 0.813 | Test Acc: 73.07% +2025-04-27 22:02:28,703 - train - INFO - Epoch: 17 | Train Loss: 0.600 | Train Acc: 79.24% | Test Loss: 0.797 | Test Acc: 72.78% +2025-04-27 22:03:27,042 - train - INFO - Epoch: 18 | Train Loss: 0.585 | Train Acc: 79.83% | Test Loss: 0.850 | Test Acc: 71.71% +2025-04-27 22:04:26,465 - train - INFO - Epoch: 19 | Train Loss: 0.569 | Train Acc: 80.45% | Test Loss: 0.721 | Test Acc: 75.15% +2025-04-27 22:05:24,872 - train - INFO - Epoch: 20 | Train Loss: 0.560 | Train Acc: 80.61% | Test Loss: 1.679 | Test Acc: 57.56% +2025-04-27 22:06:25,237 - train - INFO - Epoch: 21 | Train Loss: 0.548 | Train Acc: 81.12% | Test Loss: 0.672 | Test Acc: 76.99% +2025-04-27 22:07:23,305 - train - INFO - Epoch: 22 | Train Loss: 0.529 | Train Acc: 81.63% | Test Loss: 0.809 | Test Acc: 73.48% +2025-04-27 22:08:23,889 - train - INFO - Epoch: 23 | Train Loss: 0.521 | Train Acc: 82.03% | Test Loss: 0.645 | Test Acc: 77.97% +2025-04-27 22:09:21,810 - train - INFO - Epoch: 24 | Train Loss: 0.501 | Train Acc: 82.79% | Test Loss: 0.639 | Test Acc: 78.27% +2025-04-27 22:10:21,911 - train - INFO - Epoch: 25 | Train Loss: 0.498 | Train Acc: 82.82% | Test Loss: 0.641 | Test Acc: 78.37% +2025-04-27 22:11:20,147 - train - INFO - Epoch: 26 | Train Loss: 0.479 | Train Acc: 83.34% | Test Loss: 0.664 | Test Acc: 77.46% +2025-04-27 22:12:20,464 - train - INFO - Epoch: 27 | Train Loss: 0.467 | Train Acc: 83.93% | Test Loss: 0.658 | Test Acc: 77.32% +2025-04-27 22:13:18,407 - train - INFO - Epoch: 28 | Train Loss: 0.451 | Train Acc: 84.47% | Test Loss: 0.714 | Test Acc: 76.04% +2025-04-27 22:14:18,600 - train - INFO - Epoch: 29 | Train Loss: 0.430 | Train Acc: 85.12% | Test Loss: 0.604 | Test Acc: 79.05% +2025-04-27 22:15:16,869 - train - INFO - Epoch: 30 | Train Loss: 0.419 | Train Acc: 85.47% | Test Loss: 0.642 | Test Acc: 77.76% +2025-04-27 22:15:50,303 - train - INFO - Epoch: 31 | Train Loss: 0.400 | Train Acc: 86.20% | Test Loss: 0.786 | Test Acc: 74.10% +2025-04-27 22:16:12,006 - train - INFO - Epoch: 32 | Train Loss: 0.382 | Train Acc: 86.74% | Test Loss: 0.605 | Test Acc: 80.34% +2025-04-27 22:16:42,790 - train - INFO - Epoch: 33 | Train Loss: 0.357 | Train Acc: 87.49% | Test Loss: 0.640 | Test Acc: 78.53% +2025-04-27 22:17:06,155 - train - INFO - Epoch: 34 | Train Loss: 0.339 | Train Acc: 88.10% | Test Loss: 0.670 | Test Acc: 78.55% +2025-04-27 22:17:34,442 - train - INFO - Epoch: 35 | Train Loss: 0.317 | Train Acc: 89.00% | Test Loss: 0.579 | Test Acc: 80.44% +2025-04-27 22:17:56,801 - train - INFO - Epoch: 36 | Train Loss: 0.291 | Train Acc: 89.91% | Test Loss: 0.641 | Test Acc: 80.28% +2025-04-27 22:18:24,333 - train - INFO - Epoch: 37 | Train Loss: 0.269 | Train Acc: 90.64% | Test Loss: 0.575 | Test Acc: 81.61% +2025-04-27 22:18:46,370 - train - INFO - Epoch: 38 | Train Loss: 0.240 | Train Acc: 91.72% | Test Loss: 0.637 | Test Acc: 80.04% +2025-04-27 22:19:10,769 - train - INFO - Epoch: 39 | Train Loss: 0.216 | Train Acc: 92.43% | Test Loss: 0.550 | Test Acc: 82.60% +2025-04-27 22:19:32,311 - train - INFO - Epoch: 40 | Train Loss: 0.184 | Train Acc: 93.66% | Test Loss: 0.572 | Test Acc: 82.15% +2025-04-27 22:19:58,808 - train - INFO - Epoch: 41 | Train Loss: 0.155 | Train Acc: 94.77% | Test Loss: 0.554 | Test Acc: 83.34% +2025-04-27 22:20:20,113 - train - INFO - Epoch: 42 | Train Loss: 0.120 | Train Acc: 96.06% | Test Loss: 0.591 | Test Acc: 82.99% +2025-04-27 22:20:47,293 - train - INFO - Epoch: 43 | Train Loss: 0.090 | Train Acc: 97.25% | Test Loss: 0.593 | Test Acc: 83.36% +2025-04-27 22:21:09,047 - train - INFO - Epoch: 44 | Train Loss: 0.065 | Train Acc: 98.19% | Test Loss: 0.596 | Test Acc: 83.35% +2025-04-27 22:21:36,303 - train - INFO - Epoch: 45 | Train Loss: 0.046 | Train Acc: 99.03% | Test Loss: 0.597 | Test Acc: 83.60% +2025-04-27 22:21:57,517 - train - INFO - Epoch: 46 | Train Loss: 0.031 | Train Acc: 99.50% | Test Loss: 0.610 | Test Acc: 83.66% +2025-04-27 22:22:23,316 - train - INFO - Epoch: 47 | Train Loss: 0.025 | Train Acc: 99.69% | Test Loss: 0.619 | Test Acc: 83.66% +2025-04-27 22:22:45,152 - train - INFO - Epoch: 48 | Train Loss: 0.021 | Train Acc: 99.83% | Test Loss: 0.615 | Test Acc: 83.68% +2025-04-27 22:23:12,049 - train - INFO - Epoch: 49 | Train Loss: 0.019 | Train Acc: 99.89% | Test Loss: 0.618 | Test Acc: 83.78% +2025-04-27 22:23:34,213 - train - INFO - Epoch: 50 | Train Loss: 0.018 | Train Acc: 99.91% | Test Loss: 0.625 | Test Acc: 83.62% +2025-04-27 22:23:40,090 - train - INFO - 训练完成! diff --git a/ShuffleNetV2-CIFAR10/Classification-backdoor/scripts/get_representation.py b/ShuffleNetV2-CIFAR10/Classification-backdoor/scripts/get_representation.py index 8abd44a73bab66b15ea35db96c5d40a34198759d..e87766dc95e13cd9a702638034bab0fc60d48ca8 100644 --- a/ShuffleNetV2-CIFAR10/Classification-backdoor/scripts/get_representation.py +++ b/ShuffleNetV2-CIFAR10/Classification-backdoor/scripts/get_representation.py @@ -52,7 +52,14 @@ class time_travel_saver: def get_activation(name): def hook(model, input, output): - activation[name] = output.detach() + # 只在需要时保存激活值,避免内存浪费 + if name not in activation or activation[name] is None: + # 处理元组类型的输出 + if isinstance(output, tuple): + # 对于元组,我们只保存第一个元素或者创建一个新的列表 + activation[name] = output[0].detach() if len(output) > 0 else None + else: + activation[name] = output.detach() return hook # 注册钩子到所有层 @@ -112,7 +119,12 @@ class time_travel_saver: def hook(model, input, output): # 只在需要时保存激活值,避免内存浪费 if name not in activation or activation[name] is None: - activation[name] = output.detach() + # 处理元组类型的输出 + if isinstance(output, tuple): + # 对于元组,我们只保存第一个元素或者创建一个新的列表 + activation[name] = output[0].detach() if len(output) > 0 else None + else: + activation[name] = output.detach() return hook # 根据层的名称或维度来选择层 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/dataset/noise_index.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/dataset/noise_index.npy index 46694750da4390218557c0528448f63a2fa518b8..cc27269d09044e8fee266f9b829893d2fb2f9873 100644 --- a/ShuffleNetV2-CIFAR10/Classification-noisy/dataset/noise_index.npy +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/dataset/noise_index.npy @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25eca69f129a03e55b371c2bf1c47848fb9f31ee73fcc1c82fd3fb4275141e35 +oid sha256:da17f0261e922df3432b6b0471cdb5c825936dd959b6549dd2a352e1a30f98ae size 48128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..56637937d4098616f7dbeebe3899027b09c35f55 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27020969fd81ff5a24626a05ab0bf3e5f4513b539b8acd3a75239111877e41db +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..3e45270116c7d2d15841bf56316bdc2c20582787 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd93ad56f2aaecfa5428ea0e7716073f9ce8070871a3c42239c8822e038aa898 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..9ec7a1d4c22b27a56338a85e0706dff91b649766 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87da2e55572d08e08cf8dab23b63b7a89ac9bb7fca96ab11480b8bf3e0a8bd85 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b869ecc8f098ad0ca6bd247adb4505c9fe163148 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915791d156debca7b9a67c481e154e6d457493df1be519162a6158143a83eb80 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..520719386f8131eff917ad4773d0c9e1a199ce38 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1877c2167c68d3ab91097a908346c3a584022df8efaff46e9016cd76054d3b64 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..fc71111decc185a179261cff6e8d5c9f08244651 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d84efa1fa8eb8860837a77943a4766a59e723aefa6c292a48ed923807af6679 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..c59a79f90a85dab04cda824bc50d21c537e34d1c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a4659a5ae9ee586415e017782b9a52cc1bfa6743652d30320dc3c2b7eb02d0 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d76f1a7375d73472aa6ceff23ed83adb20d6d9bd --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e688e26a02e667e9d4bf84f32cb0b252e4ff37213cec1e2ba6ba26ee5f5f8447 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..b1cf0ea3131bb33b11e13b3cc1cb12589942589c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41be24a75d6b27bbbb1c946f59bb1e67a07a77de143d4f20f6c08a375e0c90f0 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..6f2ce6362b5a1db35ebb14791f926cf478e46825 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151035593d606023a22c8a1894ee03c54d9fa44b4f45ba5c08c1be24b8f327f3 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a336171c9bd5e1d9b77ef18c546e150e8b0ab7d9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa38de7b20340382d2d28da08cf8ae43573d64eb0b0555289ce4b250df73dcb6 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c7ad1d69d8b9868d9e5387181e196b46abd37102 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82f2e21f6b5bbc18d9a1dfca64f18b9c146632c15e21dac94ee627b28381be4 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..536107c8fb3ad119ffbb364d7abcb0cd8c9968f4 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6807ad90815a0da7cd1bb21d889f4d481a596c960c46af6ff71f1d88e8e2348 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..1fd5183ca4697d98e9e2d2a732cdd809f9ed10e3 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31250f8a4a644c008f339ce485b1fbd8c041086cd258616256beca60ede14aad +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..db8095d93207399ee3f1b8969e593938c931710d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c41ddcaa5d12c9930a1ba01f0b7d2a826d9a856c80779804c64e15b15d682d +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..27a9bdd05f3778b948cd3ec37787395d5b1b9bdf --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:355ea53d75027f7a7394ce525dfe8067d0bf2b99e9e624ef7d91d824d0fb4a08 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..c6caea2babe11bb3d4e1fd41fcfc3fb25b077bc4 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdaa4e5f85f47ce2c6e52982a52b8cfd3995fb675c97c8f4432cc521cce40abb +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..728ed8adbd160450886fae660c19cf353e0bb23c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfe13fdee25a3a67a1cac31908ed58dfcad589ee4645d001ddfa7880d45f417 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..dd2791869210a89c2dba2cb29469d9c06c383eb4 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8aacb14ddcdcfae10b2d8b2f3b6697ce3343382d578f4f5cef364f027d8514 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d0ecc6ceb0f8a09c80ace979e7d59b8ddd34681b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a08b85f0220ac0b0bf40c7bda2ba5d904cef9be538baa7d082287dbe1b4da2 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..48f584a726157b9a5f630dee00235722203e8456 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ec08a548277e343a21efcbe186d0085dcd125c3919c1ac8ef666a5faea942c +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b202eaf6835205b78e99d0614a88b9435bc4581a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c8403d90ae54df423c0c37a7b9ceaaa08b75f43058495017d6c58babd2a608 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..8bff510c5a3afa6b7ebefd60e60c78f136255100 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54deb306f9469e5ecee5543fc82ae794612038560f919127da41654f082b1e2 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..b524a90f61ce08c3227b0db5925c376c92e5426b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ab209098917e1a4ed50bcb69cf46fdb5337fadadbc3436b4adbae17a0b6b49 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..bc78f77aa2302affe9cac7ad0d3dc4dd18fbac37 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7af8bbc2902f62e1123b868b5721b62e0b9d1c6c2fb9252b608a70e8acc5053 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..02e5dc817fc18ea0344cc1a21abd6c4e44eed8b7 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ede24e535acdab759401262225bd6e4b52e388bb2c882d3d0438f67863deb7d +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c7fd87d6153103cc4ee081e4f7a3caf508dee80a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed790accf248e23a73faf2cadc51f06544f5206fc8754accb00f7cd7c9d9099 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..f59b0297d90bc18a1f3da5fbd2b6d8edcba94699 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4993b03e2a80f84c7db42ca47bb7b10f89be361436e5c71bcede0e778548136b +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..bb5c0ddcdaece0e465d31a63c62b1d3590d4f252 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bcaa7dd9197a546b50a6a25d08905481f3070642747c57c4e3ce1795dc06513 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..9b17a1d94e80147bd7fcfa1043a00b5ac1a51574 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02d5356559452935ebeeff439381f86a4ecdb91152520e2c88b5ff8a34ac596e +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b6b859bf0cadda35705b7d6bced9072c5c99094d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1ac21a2615d83dc7482846aaa9d9041b55c2cb91c03361865e144dd84a98fe +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..f978df22fd1925a974fa060416dc281f3e288e44 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1a1fad4f6041bc8adc2e4f7e441b15ac34c3aae208fd06e5abeaf492e26daf8 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..cce46ea735428e07ae50ddc7d0047b13de76fc92 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78763f82c91aa7213014cbceea733ae0bf462ff097fd6a11ebd0445be1643a90 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..71b58826bfa318c42e856c362340937f6272eafe --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcca44dcc788eac13bc76b9685fe7d542cdd03ac9006f569b834fdaef8c4b79e +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a63a91ab04ff8330c9b7176aa101516c5026f160 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07865368c75ff5099167c1a5e46d466fe89f4576a80382bdfb77cd71c7d141e +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..afc9e00c222ea2d0f40cd865dc69e80023871b07 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58da55ddd2a8ea498da8491d0d64a8fea9e42f81ce80b64b75325a5b2572f169 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..af10bdcb7afd18d31b5c6ed9a4883e8c51859465 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0550b1c58a752944680e2bcfa150eb34eb27ae25d555fee3f72523c3d2a83ce8 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..c2d9e2c54f7af55478299bc96908ce7a45cff932 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac622886aefc197ef679d53a6d1d6bb98535080ba88f3a1cb01b81a5a506ecc3 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..a187b30612b226072472289f0bcbc81ffd8ad5e5 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34dee96e1454345d5d1675d68143a17eb89a0c9d662e655191fad458682def41 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..1ec6db1f2986c026a2e2cbae49ad7844517b6f06 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a788d210ecf3fd3478735e4592463a8514a24933f3ee7aa786720af7e0b6ce8 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..119dd024af65459204e2bc03cd9afbaaa29553be --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63bb7b4b21f29843d1dc59336ad4b78caef7d5d7b317559d3a60161f2b1f167e +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..47144a78c2ae16e6ea6e5569fe4cd052091f1e71 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061589f4d8c559da4e0f433c8ed5d619212e65887c8457f8f8de137b122805ab +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..64df5b6e402057824f71af95140634ae0d183ac1 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc985e81de3c1895e158ad38c28c8e5e6cf2440b5b4104c2850e290b23092854 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..e1764ff029abe3e297d2db8654b3a2b379a8ddcc --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd88ca64208bb3b71db0007ea879405669c64363548f5068388ece19b2563f8a +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..6ead1498dd0f6bc64a7f3345b120f68737783b93 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_34/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1dbd79f948dba5b539571f38778759a3a74387aa193005b564570faec297b94 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..173d38ad848b0de2d94ababb96e211716d8165be --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3170d8a83e0eb75d9920653ab48942474256480dcac617d1dbed86240fca83b7 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..aa6fd92b8f631025165a854efcb655b77e05470e --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1365f95c25a072ff49606429131ec35dddca1a790aa8653ae5a90a7af714c7c0 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..ae97fd8b9b4b0415c8e0ac7d6cc125f77c86de3c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_36/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7179249fe335d1f35cdf616272ebae8dd0b72491e7e9bafe95830a8513e4c1f +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..c68b0e31352490b8964ca19aecac9d3e1fbd0f9b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b40103f922bb651d89cab1144c60a3ab9f69c50062ab7c72e55dcdcadaa9a8c +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..088a5d5073bf0f67170180798e6ee34a4297da01 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef667e3d72ad4d6f73274a8c892904f5f66a54c76c004bcf9957356490fa6f4 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..859dcf8b039de2b0c8389f50343a9ad0859b9333 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_38/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4cb2e7cc4a78bef499f1e2144cb35f849eadc0630672a372f0fd78eaf15d56 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b6e22aac1c89d135637551e4ac9b81d00fb4a6e9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9fe738ca02fe95f1bd1a0414080e3d73f6cebbd25d0f4bf8ee45a999adeb4e +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..bb608f255353fffc400f89bfd9684241aca8f17f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d6d42d879c79042ce5658d3e1ad6904296fed746426a9ec65ec372f3d944d2 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..d5db553293b07ffc9bc4ca9357a60730ac472ebe --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_4/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c562a4de64d7515589c041b3ff555973c340770f37c32fd96171c8f39ea7f49 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..109fb4e9304a096f2432e977deff525f8a7153be --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263ab80d4e1f778af0f9c25093358b464f23950209020ea771092640b841eaa8 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..95704c4a44445becb146e5d8a65bcdcee7f9c50d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ac9a2edf1eb82d1bfc3c56738d65a572b329e1bbf466f8d2fe0c6a7d4c6ade +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..fbf5f9b75b85ccf1ba1265ccc06245d631d16061 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_40/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0ab00196b14dde7c889b91e376b1ccd3d9fea4727c76a15d723ad94b971f0f +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..3dbd1e98d7bad73642fcc26076ea623a5c468314 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3e5a93f84f4e15a5c1eab236ae436bf43c1fa74ca1ae0e0746d6532c6997f8 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..7cc2dffa320ccbc2e035aa261688dbca61071b5b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7351cdd79e8646d557aa5e073abc9507054a12385d9529a14fb053ba03204c65 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..ff51706524a681f055902c0c6a0bd864cc6777b5 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_42/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fbdc3f27f6ea6202ec5d8ca6a5a2295b38626d32ebfbfbd7d142ed2b10bfbbe +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2d410b176f34fae442c236f72333ec66cf0274ca --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5b676f22d666f8b65a43e397f773d43b84da44549fd441b9eac557049ff816 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6275c44a5e334b91597a82f9ee1c52715ece53b9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c44792885954322527aaa762e4d599c046e51ef7c6aa6fcd1567ce77931ce5 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..d1953f80f9132d7165b7b5a00f615b170df96145 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_44/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42c568766d8677688f8708e847e39c9293d2eadd840cd7177cce8502373baa4 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..2fb63498917dbce80e6cec495a3003840d85098a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea7a8a78512b7560d746336423b24377dfc1acca32c52e5e24e46972ff5d901 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..af43c8597bcc045e618ae72664f93638fe7b26b6 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06942497417000f627c1b7fd54144a432f44472645da6a6e5acaf240faa412e7 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..7ba069bcb4c961302f2e53edf1664cffff0abc1c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_46/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035c656c9a2f7d2debf69d6bf1df10303d02e5aee6d7923e8488659029e25ef7 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e7f02a699a7b55c16737abe236c435f1edbe1f9d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c4e74c0d8773d09b8adab66c7263d1486bc3f9dc78e3e17eb55eefe40d4d23 +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..67e9ca23a694870d7efe4dfe05dd18a83ebfeeb8 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:496a2ecf5ec9e969484169e4ec8ad240f71717be44ff13ffeff6aa1f8bb85d55 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..97f1f9656ffa5fd663d0135b21f192edc07e43d1 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_48/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1cabe4ed10e8434b1cf98776b802c86fd7227b448d37ab13a06f180b62f3b2e +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b4fbb0bf13777d2e6f3634d78f97e559f2cbb12b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7848c4f5fbcb0dc60d441b9258f5da98e72b3bf429f9e3f33f0a4d2aa22b06fd +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..12f0c3f25818b0c89257e39a2b1e26f7cd184431 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f942bdbde4f6d1cc3cd197170f4d3f087a1248560238ffd78c6742d1d0e5dae0 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..753bcaf71aaf77925a7032eac8b3574a08be3c3a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_50/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c395384190d8d300aac0c8657004ccebcba59ca1d8a4e0f4a2b3d4143652f48c +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..5f8b28f1fa990f14d6ba4e555a7b64581f553f44 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0117071150c7d9e6d358d722b85f90cb06bda15ddc99a9129c69d3d766286c7c +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..484a054e19c064cafaa833cea1052125aa6fc639 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ec70b2346f14680e89a88177429a87dc83bccea26a19633ebaf7d1e567a5f3 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..260615e57f9bc4311c11853029b38dd446c8e0d3 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_6/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8080d0c8f56c679eecc4a201dfb1570676067b42c1f2308545673c4c534d1c41 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4f484045cce001e159d8e8448cd2633a073fbae --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5892d4b915b35e1e90aa0b955f1f2d463dccbced67ad3a6fe0771eff5bec126b +size 245760128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/model.pth b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..fe1e33c212962dd48d3bbb96b0fb28750255183a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2f1d9cd76fddc2aa3cad1c722eb090dd6baee665a53d716d18e951fd1dce29 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..258f59485ba45d6bae3116a4ff590c3dbfa9134c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/epoch_8/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5104096500796eaaebb880597a3b0b486591449ee1156b8e4665a2336cee86c5 +size 2400128 diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/layer_info.json b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/layer_info.json new file mode 100644 index 0000000000000000000000000000000000000000..a306f53dd92050a380739012255d7ffe43385c93 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/layer_info.json @@ -0,0 +1 @@ +{"layer_id": "avg_pool", "dim": 1024} \ No newline at end of file diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/train.log b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/train.log new file mode 100644 index 0000000000000000000000000000000000000000..f8124d7a020ea3cc53ac5350dad09631fa4d0d22 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/epochs/train.log @@ -0,0 +1,53 @@ +2025-04-27 21:48:53,370 - train - INFO - 开始训练 ShuffleNetV2_noisy +2025-04-27 21:48:53,370 - train - INFO - 总轮数: 50, 学习率: 0.1, 设备: cuda:5 +2025-04-27 21:49:15,413 - train - INFO - Epoch: 1 | Train Loss: 1.689 | Train Acc: 39.18% | Test Loss: 1.401 | Test Acc: 49.88% +2025-04-27 21:49:46,250 - train - INFO - Epoch: 2 | Train Loss: 1.163 | Train Acc: 58.18% | Test Loss: 1.093 | Test Acc: 61.22% +2025-04-27 21:50:14,684 - train - INFO - Epoch: 3 | Train Loss: 0.975 | Train Acc: 65.24% | Test Loss: 1.224 | Test Acc: 58.13% +2025-04-27 21:50:36,507 - train - INFO - Epoch: 4 | Train Loss: 0.865 | Train Acc: 69.42% | Test Loss: 1.130 | Test Acc: 61.99% +2025-04-27 21:51:05,694 - train - INFO - Epoch: 5 | Train Loss: 0.794 | Train Acc: 71.88% | Test Loss: 1.060 | Test Acc: 65.42% +2025-04-27 21:51:28,102 - train - INFO - Epoch: 6 | Train Loss: 0.750 | Train Acc: 73.58% | Test Loss: 0.884 | Test Acc: 69.86% +2025-04-27 21:52:25,960 - train - INFO - Epoch: 7 | Train Loss: 0.722 | Train Acc: 74.54% | Test Loss: 0.859 | Test Acc: 69.98% +2025-04-27 21:53:23,534 - train - INFO - Epoch: 8 | Train Loss: 0.706 | Train Acc: 75.15% | Test Loss: 0.833 | Test Acc: 71.53% +2025-04-27 21:54:22,737 - train - INFO - Epoch: 9 | Train Loss: 0.687 | Train Acc: 75.90% | Test Loss: 0.808 | Test Acc: 72.06% +2025-04-27 21:55:20,974 - train - INFO - Epoch: 10 | Train Loss: 0.678 | Train Acc: 76.08% | Test Loss: 0.950 | Test Acc: 68.03% +2025-04-27 21:56:20,064 - train - INFO - Epoch: 11 | Train Loss: 0.668 | Train Acc: 76.35% | Test Loss: 0.830 | Test Acc: 70.80% +2025-04-27 21:57:17,578 - train - INFO - Epoch: 12 | Train Loss: 0.656 | Train Acc: 77.12% | Test Loss: 0.873 | Test Acc: 70.71% +2025-04-27 21:58:16,997 - train - INFO - Epoch: 13 | Train Loss: 0.640 | Train Acc: 77.37% | Test Loss: 0.810 | Test Acc: 72.55% +2025-04-27 21:59:16,032 - train - INFO - Epoch: 14 | Train Loss: 0.627 | Train Acc: 78.00% | Test Loss: 0.793 | Test Acc: 73.34% +2025-04-27 21:59:44,353 - train - INFO - Epoch: 15 | Train Loss: 0.620 | Train Acc: 78.32% | Test Loss: 0.793 | Test Acc: 74.11% +2025-04-27 22:00:37,841 - train - INFO - Epoch: 16 | Train Loss: 0.610 | Train Acc: 78.65% | Test Loss: 0.758 | Test Acc: 74.26% +2025-04-27 22:01:37,197 - train - INFO - Epoch: 17 | Train Loss: 0.594 | Train Acc: 79.21% | Test Loss: 0.765 | Test Acc: 75.29% +2025-04-27 22:02:33,723 - train - INFO - Epoch: 18 | Train Loss: 0.583 | Train Acc: 79.65% | Test Loss: 0.862 | Test Acc: 71.82% +2025-04-27 22:03:32,338 - train - INFO - Epoch: 19 | Train Loss: 0.577 | Train Acc: 79.85% | Test Loss: 0.870 | Test Acc: 71.45% +2025-04-27 22:04:30,681 - train - INFO - Epoch: 20 | Train Loss: 0.561 | Train Acc: 80.43% | Test Loss: 0.767 | Test Acc: 75.12% +2025-04-27 22:05:30,059 - train - INFO - Epoch: 21 | Train Loss: 0.548 | Train Acc: 80.78% | Test Loss: 0.854 | Test Acc: 73.17% +2025-04-27 22:06:26,874 - train - INFO - Epoch: 22 | Train Loss: 0.534 | Train Acc: 81.50% | Test Loss: 0.741 | Test Acc: 75.56% +2025-04-27 22:07:27,130 - train - INFO - Epoch: 23 | Train Loss: 0.523 | Train Acc: 81.95% | Test Loss: 0.697 | Test Acc: 76.75% +2025-04-27 22:08:24,662 - train - INFO - Epoch: 24 | Train Loss: 0.513 | Train Acc: 82.06% | Test Loss: 0.778 | Test Acc: 74.23% +2025-04-27 22:09:24,516 - train - INFO - Epoch: 25 | Train Loss: 0.494 | Train Acc: 82.66% | Test Loss: 0.691 | Test Acc: 77.27% +2025-04-27 22:10:22,479 - train - INFO - Epoch: 26 | Train Loss: 0.475 | Train Acc: 83.43% | Test Loss: 0.790 | Test Acc: 75.03% +2025-04-27 22:11:22,230 - train - INFO - Epoch: 27 | Train Loss: 0.463 | Train Acc: 83.75% | Test Loss: 0.709 | Test Acc: 76.92% +2025-04-27 22:12:19,920 - train - INFO - Epoch: 28 | Train Loss: 0.449 | Train Acc: 84.42% | Test Loss: 0.708 | Test Acc: 76.79% +2025-04-27 22:13:19,645 - train - INFO - Epoch: 29 | Train Loss: 0.430 | Train Acc: 84.99% | Test Loss: 0.671 | Test Acc: 78.20% +2025-04-27 22:14:17,305 - train - INFO - Epoch: 30 | Train Loss: 0.419 | Train Acc: 85.25% | Test Loss: 0.705 | Test Acc: 77.51% +2025-04-27 22:15:16,857 - train - INFO - Epoch: 31 | Train Loss: 0.397 | Train Acc: 86.16% | Test Loss: 0.693 | Test Acc: 77.88% +2025-04-27 22:15:49,449 - train - INFO - Epoch: 32 | Train Loss: 0.380 | Train Acc: 86.82% | Test Loss: 0.681 | Test Acc: 77.80% +2025-04-27 22:16:17,110 - train - INFO - Epoch: 33 | Train Loss: 0.358 | Train Acc: 87.51% | Test Loss: 0.677 | Test Acc: 78.57% +2025-04-27 22:16:38,210 - train - INFO - Epoch: 34 | Train Loss: 0.337 | Train Acc: 88.33% | Test Loss: 0.641 | Test Acc: 79.69% +2025-04-27 22:17:05,688 - train - INFO - Epoch: 35 | Train Loss: 0.317 | Train Acc: 88.73% | Test Loss: 0.686 | Test Acc: 78.56% +2025-04-27 22:17:27,868 - train - INFO - Epoch: 36 | Train Loss: 0.289 | Train Acc: 89.82% | Test Loss: 0.685 | Test Acc: 78.63% +2025-04-27 22:17:56,579 - train - INFO - Epoch: 37 | Train Loss: 0.267 | Train Acc: 90.80% | Test Loss: 0.673 | Test Acc: 79.30% +2025-04-27 22:18:18,702 - train - INFO - Epoch: 38 | Train Loss: 0.235 | Train Acc: 91.76% | Test Loss: 0.695 | Test Acc: 79.83% +2025-04-27 22:18:46,901 - train - INFO - Epoch: 39 | Train Loss: 0.206 | Train Acc: 92.88% | Test Loss: 0.731 | Test Acc: 79.44% +2025-04-27 22:19:09,709 - train - INFO - Epoch: 40 | Train Loss: 0.178 | Train Acc: 93.97% | Test Loss: 0.705 | Test Acc: 80.59% +2025-04-27 22:19:38,441 - train - INFO - Epoch: 41 | Train Loss: 0.147 | Train Acc: 95.21% | Test Loss: 0.719 | Test Acc: 80.39% +2025-04-27 22:20:01,048 - train - INFO - Epoch: 42 | Train Loss: 0.114 | Train Acc: 96.48% | Test Loss: 0.740 | Test Acc: 81.16% +2025-04-27 22:20:28,966 - train - INFO - Epoch: 43 | Train Loss: 0.083 | Train Acc: 97.75% | Test Loss: 0.749 | Test Acc: 81.50% +2025-04-27 22:20:51,470 - train - INFO - Epoch: 44 | Train Loss: 0.054 | Train Acc: 98.88% | Test Loss: 0.778 | Test Acc: 81.37% +2025-04-27 22:21:19,645 - train - INFO - Epoch: 45 | Train Loss: 0.035 | Train Acc: 99.59% | Test Loss: 0.795 | Test Acc: 81.57% +2025-04-27 22:21:42,418 - train - INFO - Epoch: 46 | Train Loss: 0.023 | Train Acc: 99.87% | Test Loss: 0.810 | Test Acc: 81.61% +2025-04-27 22:22:10,870 - train - INFO - Epoch: 47 | Train Loss: 0.017 | Train Acc: 99.97% | Test Loss: 0.816 | Test Acc: 81.61% +2025-04-27 22:22:33,452 - train - INFO - Epoch: 48 | Train Loss: 0.014 | Train Acc: 99.98% | Test Loss: 0.817 | Test Acc: 81.78% +2025-04-27 22:23:01,910 - train - INFO - Epoch: 49 | Train Loss: 0.012 | Train Acc: 99.99% | Test Loss: 0.818 | Test Acc: 81.81% +2025-04-27 22:23:23,874 - train - INFO - Epoch: 50 | Train Loss: 0.012 | Train Acc: 99.99% | Test Loss: 0.818 | Test Acc: 81.80% +2025-04-27 22:23:29,595 - train - INFO - 训练完成! diff --git a/ShuffleNetV2-CIFAR10/Classification-noisy/scripts/get_representation.py b/ShuffleNetV2-CIFAR10/Classification-noisy/scripts/get_representation.py index 8abd44a73bab66b15ea35db96c5d40a34198759d..e87766dc95e13cd9a702638034bab0fc60d48ca8 100644 --- a/ShuffleNetV2-CIFAR10/Classification-noisy/scripts/get_representation.py +++ b/ShuffleNetV2-CIFAR10/Classification-noisy/scripts/get_representation.py @@ -52,7 +52,14 @@ class time_travel_saver: def get_activation(name): def hook(model, input, output): - activation[name] = output.detach() + # 只在需要时保存激活值,避免内存浪费 + if name not in activation or activation[name] is None: + # 处理元组类型的输出 + if isinstance(output, tuple): + # 对于元组,我们只保存第一个元素或者创建一个新的列表 + activation[name] = output[0].detach() if len(output) > 0 else None + else: + activation[name] = output.detach() return hook # 注册钩子到所有层 @@ -112,7 +119,12 @@ class time_travel_saver: def hook(model, input, output): # 只在需要时保存激活值,避免内存浪费 if name not in activation or activation[name] is None: - activation[name] = output.detach() + # 处理元组类型的输出 + if isinstance(output, tuple): + # 对于元组,我们只保存第一个元素或者创建一个新的列表 + activation[name] = output[0].detach() if len(output) > 0 else None + else: + activation[name] = output.detach() return hook # 根据层的名称或维度来选择层 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/dataset/index.json b/ShuffleNetV2-CIFAR10/Classification-normal/dataset/index.json index 18effc538161722b86c88b06392a77db3bb6a92d..4787cf6e039f8159f38952a979d98761ef29729e 100644 --- a/ShuffleNetV2-CIFAR10/Classification-normal/dataset/index.json +++ b/ShuffleNetV2-CIFAR10/Classification-normal/dataset/index.json @@ -50001,6 +50001,10007 @@ 49998, 49999 ], - "test": [], + "test": [ + 50000, + 50001, + 50002, + 50003, + 50004, + 50005, + 50006, + 50007, + 50008, + 50009, + 50010, + 50011, + 50012, + 50013, + 50014, + 50015, + 50016, + 50017, + 50018, + 50019, + 50020, + 50021, + 50022, + 50023, + 50024, + 50025, + 50026, + 50027, + 50028, + 50029, + 50030, + 50031, + 50032, + 50033, + 50034, + 50035, + 50036, + 50037, + 50038, + 50039, + 50040, + 50041, + 50042, + 50043, + 50044, + 50045, + 50046, + 50047, + 50048, + 50049, + 50050, + 50051, + 50052, + 50053, + 50054, + 50055, + 50056, + 50057, + 50058, + 50059, + 50060, + 50061, + 50062, + 50063, + 50064, + 50065, + 50066, + 50067, + 50068, + 50069, + 50070, + 50071, + 50072, + 50073, + 50074, + 50075, + 50076, + 50077, + 50078, + 50079, + 50080, + 50081, + 50082, + 50083, + 50084, + 50085, + 50086, + 50087, + 50088, + 50089, + 50090, + 50091, + 50092, + 50093, + 50094, + 50095, + 50096, + 50097, + 50098, + 50099, + 50100, + 50101, + 50102, + 50103, + 50104, + 50105, + 50106, + 50107, + 50108, + 50109, + 50110, + 50111, + 50112, + 50113, + 50114, + 50115, + 50116, + 50117, + 50118, + 50119, + 50120, + 50121, + 50122, + 50123, + 50124, + 50125, + 50126, + 50127, + 50128, + 50129, + 50130, + 50131, + 50132, + 50133, + 50134, + 50135, + 50136, + 50137, + 50138, + 50139, + 50140, + 50141, + 50142, + 50143, + 50144, + 50145, + 50146, + 50147, + 50148, + 50149, + 50150, + 50151, + 50152, + 50153, + 50154, + 50155, + 50156, + 50157, + 50158, + 50159, + 50160, + 50161, + 50162, + 50163, + 50164, + 50165, + 50166, + 50167, + 50168, + 50169, + 50170, + 50171, + 50172, + 50173, + 50174, + 50175, + 50176, + 50177, + 50178, + 50179, + 50180, + 50181, + 50182, + 50183, + 50184, + 50185, + 50186, + 50187, + 50188, + 50189, + 50190, + 50191, + 50192, + 50193, + 50194, + 50195, + 50196, + 50197, + 50198, + 50199, + 50200, + 50201, + 50202, + 50203, + 50204, + 50205, + 50206, + 50207, + 50208, + 50209, + 50210, + 50211, + 50212, + 50213, + 50214, + 50215, + 50216, + 50217, + 50218, + 50219, + 50220, + 50221, + 50222, + 50223, + 50224, + 50225, + 50226, + 50227, + 50228, + 50229, + 50230, + 50231, + 50232, + 50233, + 50234, + 50235, + 50236, + 50237, + 50238, + 50239, + 50240, + 50241, + 50242, + 50243, + 50244, + 50245, + 50246, + 50247, + 50248, + 50249, + 50250, + 50251, + 50252, + 50253, + 50254, + 50255, + 50256, + 50257, + 50258, + 50259, + 50260, + 50261, + 50262, + 50263, + 50264, + 50265, + 50266, + 50267, + 50268, + 50269, + 50270, + 50271, + 50272, + 50273, + 50274, + 50275, + 50276, + 50277, + 50278, + 50279, + 50280, + 50281, + 50282, + 50283, + 50284, + 50285, + 50286, + 50287, + 50288, + 50289, + 50290, + 50291, + 50292, + 50293, + 50294, + 50295, + 50296, + 50297, + 50298, + 50299, + 50300, + 50301, + 50302, + 50303, + 50304, + 50305, + 50306, + 50307, + 50308, + 50309, + 50310, + 50311, + 50312, + 50313, + 50314, + 50315, + 50316, + 50317, + 50318, + 50319, + 50320, + 50321, + 50322, + 50323, + 50324, + 50325, + 50326, + 50327, + 50328, + 50329, + 50330, + 50331, + 50332, + 50333, + 50334, + 50335, + 50336, + 50337, + 50338, + 50339, + 50340, + 50341, + 50342, + 50343, + 50344, + 50345, + 50346, + 50347, + 50348, + 50349, + 50350, + 50351, + 50352, + 50353, + 50354, + 50355, + 50356, + 50357, + 50358, + 50359, + 50360, + 50361, + 50362, + 50363, + 50364, + 50365, + 50366, + 50367, + 50368, + 50369, + 50370, + 50371, + 50372, + 50373, + 50374, + 50375, + 50376, + 50377, + 50378, + 50379, + 50380, + 50381, + 50382, + 50383, + 50384, + 50385, + 50386, + 50387, + 50388, + 50389, + 50390, + 50391, + 50392, + 50393, + 50394, + 50395, + 50396, + 50397, + 50398, + 50399, + 50400, + 50401, + 50402, + 50403, + 50404, + 50405, + 50406, + 50407, + 50408, + 50409, + 50410, + 50411, + 50412, + 50413, + 50414, + 50415, + 50416, + 50417, + 50418, + 50419, + 50420, + 50421, + 50422, + 50423, + 50424, + 50425, + 50426, + 50427, + 50428, + 50429, + 50430, + 50431, + 50432, + 50433, + 50434, + 50435, + 50436, + 50437, + 50438, + 50439, + 50440, + 50441, + 50442, + 50443, + 50444, + 50445, + 50446, + 50447, + 50448, + 50449, + 50450, + 50451, + 50452, + 50453, + 50454, + 50455, + 50456, + 50457, + 50458, + 50459, + 50460, + 50461, + 50462, + 50463, + 50464, + 50465, + 50466, + 50467, + 50468, + 50469, + 50470, + 50471, + 50472, + 50473, + 50474, + 50475, + 50476, + 50477, + 50478, + 50479, + 50480, + 50481, + 50482, + 50483, + 50484, + 50485, + 50486, + 50487, + 50488, + 50489, + 50490, + 50491, + 50492, + 50493, + 50494, + 50495, + 50496, + 50497, + 50498, + 50499, + 50500, + 50501, + 50502, + 50503, + 50504, + 50505, + 50506, + 50507, + 50508, + 50509, + 50510, + 50511, + 50512, + 50513, + 50514, + 50515, + 50516, + 50517, + 50518, + 50519, + 50520, + 50521, + 50522, + 50523, + 50524, + 50525, + 50526, + 50527, + 50528, + 50529, + 50530, + 50531, + 50532, + 50533, + 50534, + 50535, + 50536, + 50537, + 50538, + 50539, + 50540, + 50541, + 50542, + 50543, + 50544, + 50545, + 50546, + 50547, + 50548, + 50549, + 50550, + 50551, + 50552, + 50553, + 50554, + 50555, + 50556, + 50557, + 50558, + 50559, + 50560, + 50561, + 50562, + 50563, + 50564, + 50565, + 50566, + 50567, + 50568, + 50569, + 50570, + 50571, + 50572, + 50573, + 50574, + 50575, + 50576, + 50577, + 50578, + 50579, + 50580, + 50581, + 50582, + 50583, + 50584, + 50585, + 50586, + 50587, + 50588, + 50589, + 50590, + 50591, + 50592, + 50593, + 50594, + 50595, + 50596, + 50597, + 50598, + 50599, + 50600, + 50601, + 50602, + 50603, + 50604, + 50605, + 50606, + 50607, + 50608, + 50609, + 50610, + 50611, + 50612, + 50613, + 50614, + 50615, + 50616, + 50617, + 50618, + 50619, + 50620, + 50621, + 50622, + 50623, + 50624, + 50625, + 50626, + 50627, + 50628, + 50629, + 50630, + 50631, + 50632, + 50633, + 50634, + 50635, + 50636, + 50637, + 50638, + 50639, + 50640, + 50641, + 50642, + 50643, + 50644, + 50645, + 50646, + 50647, + 50648, + 50649, + 50650, + 50651, + 50652, + 50653, + 50654, + 50655, + 50656, + 50657, + 50658, + 50659, + 50660, + 50661, + 50662, + 50663, + 50664, + 50665, + 50666, + 50667, + 50668, + 50669, + 50670, + 50671, + 50672, + 50673, + 50674, + 50675, + 50676, + 50677, + 50678, + 50679, + 50680, + 50681, + 50682, + 50683, + 50684, + 50685, + 50686, + 50687, + 50688, + 50689, + 50690, + 50691, + 50692, + 50693, + 50694, + 50695, + 50696, + 50697, + 50698, + 50699, + 50700, + 50701, + 50702, + 50703, + 50704, + 50705, + 50706, + 50707, + 50708, + 50709, + 50710, + 50711, + 50712, + 50713, + 50714, + 50715, + 50716, + 50717, + 50718, + 50719, + 50720, + 50721, + 50722, + 50723, + 50724, + 50725, + 50726, + 50727, + 50728, + 50729, + 50730, + 50731, + 50732, + 50733, + 50734, + 50735, + 50736, + 50737, + 50738, + 50739, + 50740, + 50741, + 50742, + 50743, + 50744, + 50745, + 50746, + 50747, + 50748, + 50749, + 50750, + 50751, + 50752, + 50753, + 50754, + 50755, + 50756, + 50757, + 50758, + 50759, + 50760, + 50761, + 50762, + 50763, + 50764, + 50765, + 50766, + 50767, + 50768, + 50769, + 50770, + 50771, + 50772, + 50773, + 50774, + 50775, + 50776, + 50777, + 50778, + 50779, + 50780, + 50781, + 50782, + 50783, + 50784, + 50785, + 50786, + 50787, + 50788, + 50789, + 50790, + 50791, + 50792, + 50793, + 50794, + 50795, + 50796, + 50797, + 50798, + 50799, + 50800, + 50801, + 50802, + 50803, + 50804, + 50805, + 50806, + 50807, + 50808, + 50809, + 50810, + 50811, + 50812, + 50813, + 50814, + 50815, + 50816, + 50817, + 50818, + 50819, + 50820, + 50821, + 50822, + 50823, + 50824, + 50825, + 50826, + 50827, + 50828, + 50829, + 50830, + 50831, + 50832, + 50833, + 50834, + 50835, + 50836, + 50837, + 50838, + 50839, + 50840, + 50841, + 50842, + 50843, + 50844, + 50845, + 50846, + 50847, + 50848, + 50849, + 50850, + 50851, + 50852, + 50853, + 50854, + 50855, + 50856, + 50857, + 50858, + 50859, + 50860, + 50861, + 50862, + 50863, + 50864, + 50865, + 50866, + 50867, + 50868, + 50869, + 50870, + 50871, + 50872, + 50873, + 50874, + 50875, + 50876, + 50877, + 50878, + 50879, + 50880, + 50881, + 50882, + 50883, + 50884, + 50885, + 50886, + 50887, + 50888, + 50889, + 50890, + 50891, + 50892, + 50893, + 50894, + 50895, + 50896, + 50897, + 50898, + 50899, + 50900, + 50901, + 50902, + 50903, + 50904, + 50905, + 50906, + 50907, + 50908, + 50909, + 50910, + 50911, + 50912, + 50913, + 50914, + 50915, + 50916, + 50917, + 50918, + 50919, + 50920, + 50921, + 50922, + 50923, + 50924, + 50925, + 50926, + 50927, + 50928, + 50929, + 50930, + 50931, + 50932, + 50933, + 50934, + 50935, + 50936, + 50937, + 50938, + 50939, + 50940, + 50941, + 50942, + 50943, + 50944, + 50945, + 50946, + 50947, + 50948, + 50949, + 50950, + 50951, + 50952, + 50953, + 50954, + 50955, + 50956, + 50957, + 50958, + 50959, + 50960, + 50961, + 50962, + 50963, + 50964, + 50965, + 50966, + 50967, + 50968, + 50969, + 50970, + 50971, + 50972, + 50973, + 50974, + 50975, + 50976, + 50977, + 50978, + 50979, + 50980, + 50981, + 50982, + 50983, + 50984, + 50985, + 50986, + 50987, + 50988, + 50989, + 50990, + 50991, + 50992, + 50993, + 50994, + 50995, + 50996, + 50997, + 50998, + 50999, + 51000, + 51001, + 51002, + 51003, + 51004, + 51005, + 51006, + 51007, + 51008, + 51009, + 51010, + 51011, + 51012, + 51013, + 51014, + 51015, + 51016, + 51017, + 51018, + 51019, + 51020, + 51021, + 51022, + 51023, + 51024, + 51025, + 51026, + 51027, + 51028, + 51029, + 51030, + 51031, + 51032, + 51033, + 51034, + 51035, + 51036, + 51037, + 51038, + 51039, + 51040, + 51041, + 51042, + 51043, + 51044, + 51045, + 51046, + 51047, + 51048, + 51049, + 51050, + 51051, + 51052, + 51053, + 51054, + 51055, + 51056, + 51057, + 51058, + 51059, + 51060, + 51061, + 51062, + 51063, + 51064, + 51065, + 51066, + 51067, + 51068, + 51069, + 51070, + 51071, + 51072, + 51073, + 51074, + 51075, + 51076, + 51077, + 51078, + 51079, + 51080, + 51081, + 51082, + 51083, + 51084, + 51085, + 51086, + 51087, + 51088, + 51089, + 51090, + 51091, + 51092, + 51093, + 51094, + 51095, + 51096, + 51097, + 51098, + 51099, + 51100, + 51101, + 51102, + 51103, + 51104, + 51105, + 51106, + 51107, + 51108, + 51109, + 51110, + 51111, + 51112, + 51113, + 51114, + 51115, + 51116, + 51117, + 51118, + 51119, + 51120, + 51121, + 51122, + 51123, + 51124, + 51125, + 51126, + 51127, + 51128, + 51129, + 51130, + 51131, + 51132, + 51133, + 51134, + 51135, + 51136, + 51137, + 51138, + 51139, + 51140, + 51141, + 51142, + 51143, + 51144, + 51145, + 51146, + 51147, + 51148, + 51149, + 51150, + 51151, + 51152, + 51153, + 51154, + 51155, + 51156, + 51157, + 51158, + 51159, + 51160, + 51161, + 51162, + 51163, + 51164, + 51165, + 51166, + 51167, + 51168, + 51169, + 51170, + 51171, + 51172, + 51173, + 51174, + 51175, + 51176, + 51177, + 51178, + 51179, + 51180, + 51181, + 51182, + 51183, + 51184, + 51185, + 51186, + 51187, + 51188, + 51189, + 51190, + 51191, + 51192, + 51193, + 51194, + 51195, + 51196, + 51197, + 51198, + 51199, + 51200, + 51201, + 51202, + 51203, + 51204, + 51205, + 51206, + 51207, + 51208, + 51209, + 51210, + 51211, + 51212, + 51213, + 51214, + 51215, + 51216, + 51217, + 51218, + 51219, + 51220, + 51221, + 51222, + 51223, + 51224, + 51225, + 51226, + 51227, + 51228, + 51229, + 51230, + 51231, + 51232, + 51233, + 51234, + 51235, + 51236, + 51237, + 51238, + 51239, + 51240, + 51241, + 51242, + 51243, + 51244, + 51245, + 51246, + 51247, + 51248, + 51249, + 51250, + 51251, + 51252, + 51253, + 51254, + 51255, + 51256, + 51257, + 51258, + 51259, + 51260, + 51261, + 51262, + 51263, + 51264, + 51265, + 51266, + 51267, + 51268, + 51269, + 51270, + 51271, + 51272, + 51273, + 51274, + 51275, + 51276, + 51277, + 51278, + 51279, + 51280, + 51281, + 51282, + 51283, + 51284, + 51285, + 51286, + 51287, + 51288, + 51289, + 51290, + 51291, + 51292, + 51293, + 51294, + 51295, + 51296, + 51297, + 51298, + 51299, + 51300, + 51301, + 51302, + 51303, + 51304, + 51305, + 51306, + 51307, + 51308, + 51309, + 51310, + 51311, + 51312, + 51313, + 51314, + 51315, + 51316, + 51317, + 51318, + 51319, + 51320, + 51321, + 51322, + 51323, + 51324, + 51325, + 51326, + 51327, + 51328, + 51329, + 51330, + 51331, + 51332, + 51333, + 51334, + 51335, + 51336, + 51337, + 51338, + 51339, + 51340, + 51341, + 51342, + 51343, + 51344, + 51345, + 51346, + 51347, + 51348, + 51349, + 51350, + 51351, + 51352, + 51353, + 51354, + 51355, + 51356, + 51357, + 51358, + 51359, + 51360, + 51361, + 51362, + 51363, + 51364, + 51365, + 51366, + 51367, + 51368, + 51369, + 51370, + 51371, + 51372, + 51373, + 51374, + 51375, + 51376, + 51377, + 51378, + 51379, + 51380, + 51381, + 51382, + 51383, + 51384, + 51385, + 51386, + 51387, + 51388, + 51389, + 51390, + 51391, + 51392, + 51393, + 51394, + 51395, + 51396, + 51397, + 51398, + 51399, + 51400, + 51401, + 51402, + 51403, + 51404, + 51405, + 51406, + 51407, + 51408, + 51409, + 51410, + 51411, + 51412, + 51413, + 51414, + 51415, + 51416, + 51417, + 51418, + 51419, + 51420, + 51421, + 51422, + 51423, + 51424, + 51425, + 51426, + 51427, + 51428, + 51429, + 51430, + 51431, + 51432, + 51433, + 51434, + 51435, + 51436, + 51437, + 51438, + 51439, + 51440, + 51441, + 51442, + 51443, + 51444, + 51445, + 51446, + 51447, + 51448, + 51449, + 51450, + 51451, + 51452, + 51453, + 51454, + 51455, + 51456, + 51457, + 51458, + 51459, + 51460, + 51461, + 51462, + 51463, + 51464, + 51465, + 51466, + 51467, + 51468, + 51469, + 51470, + 51471, + 51472, + 51473, + 51474, + 51475, + 51476, + 51477, + 51478, + 51479, + 51480, + 51481, + 51482, + 51483, + 51484, + 51485, + 51486, + 51487, + 51488, + 51489, + 51490, + 51491, + 51492, + 51493, + 51494, + 51495, + 51496, + 51497, + 51498, + 51499, + 51500, + 51501, + 51502, + 51503, + 51504, + 51505, + 51506, + 51507, + 51508, + 51509, + 51510, + 51511, + 51512, + 51513, + 51514, + 51515, + 51516, + 51517, + 51518, + 51519, + 51520, + 51521, + 51522, + 51523, + 51524, + 51525, + 51526, + 51527, + 51528, + 51529, + 51530, + 51531, + 51532, + 51533, + 51534, + 51535, + 51536, + 51537, + 51538, + 51539, + 51540, + 51541, + 51542, + 51543, + 51544, + 51545, + 51546, + 51547, + 51548, + 51549, + 51550, + 51551, + 51552, + 51553, + 51554, + 51555, + 51556, + 51557, + 51558, + 51559, + 51560, + 51561, + 51562, + 51563, + 51564, + 51565, + 51566, + 51567, + 51568, + 51569, + 51570, + 51571, + 51572, + 51573, + 51574, + 51575, + 51576, + 51577, + 51578, + 51579, + 51580, + 51581, + 51582, + 51583, + 51584, + 51585, + 51586, + 51587, + 51588, + 51589, + 51590, + 51591, + 51592, + 51593, + 51594, + 51595, + 51596, + 51597, + 51598, + 51599, + 51600, + 51601, + 51602, + 51603, + 51604, + 51605, + 51606, + 51607, + 51608, + 51609, + 51610, + 51611, + 51612, + 51613, + 51614, + 51615, + 51616, + 51617, + 51618, + 51619, + 51620, + 51621, + 51622, + 51623, + 51624, + 51625, + 51626, + 51627, + 51628, + 51629, + 51630, + 51631, + 51632, + 51633, + 51634, + 51635, + 51636, + 51637, + 51638, + 51639, + 51640, + 51641, + 51642, + 51643, + 51644, + 51645, + 51646, + 51647, + 51648, + 51649, + 51650, + 51651, + 51652, + 51653, + 51654, + 51655, + 51656, + 51657, + 51658, + 51659, + 51660, + 51661, + 51662, + 51663, + 51664, + 51665, + 51666, + 51667, + 51668, + 51669, + 51670, + 51671, + 51672, + 51673, + 51674, + 51675, + 51676, + 51677, + 51678, + 51679, + 51680, + 51681, + 51682, + 51683, + 51684, + 51685, + 51686, + 51687, + 51688, + 51689, + 51690, + 51691, + 51692, + 51693, + 51694, + 51695, + 51696, + 51697, + 51698, + 51699, + 51700, + 51701, + 51702, + 51703, + 51704, + 51705, + 51706, + 51707, + 51708, + 51709, + 51710, + 51711, + 51712, + 51713, + 51714, + 51715, + 51716, + 51717, + 51718, + 51719, + 51720, + 51721, + 51722, + 51723, + 51724, + 51725, + 51726, + 51727, + 51728, + 51729, + 51730, + 51731, + 51732, + 51733, + 51734, + 51735, + 51736, + 51737, + 51738, + 51739, + 51740, + 51741, + 51742, + 51743, + 51744, + 51745, + 51746, + 51747, + 51748, + 51749, + 51750, + 51751, + 51752, + 51753, + 51754, + 51755, + 51756, + 51757, + 51758, + 51759, + 51760, + 51761, + 51762, + 51763, + 51764, + 51765, + 51766, + 51767, + 51768, + 51769, + 51770, + 51771, + 51772, + 51773, + 51774, + 51775, + 51776, + 51777, + 51778, + 51779, + 51780, + 51781, + 51782, + 51783, + 51784, + 51785, + 51786, + 51787, + 51788, + 51789, + 51790, + 51791, + 51792, + 51793, + 51794, + 51795, + 51796, + 51797, + 51798, + 51799, + 51800, + 51801, + 51802, + 51803, + 51804, + 51805, + 51806, + 51807, + 51808, + 51809, + 51810, + 51811, + 51812, + 51813, + 51814, + 51815, + 51816, + 51817, + 51818, + 51819, + 51820, + 51821, + 51822, + 51823, + 51824, + 51825, + 51826, + 51827, + 51828, + 51829, + 51830, + 51831, + 51832, + 51833, + 51834, + 51835, + 51836, + 51837, + 51838, + 51839, + 51840, + 51841, + 51842, + 51843, + 51844, + 51845, + 51846, + 51847, + 51848, + 51849, + 51850, + 51851, + 51852, + 51853, + 51854, + 51855, + 51856, + 51857, + 51858, + 51859, + 51860, + 51861, + 51862, + 51863, + 51864, + 51865, + 51866, + 51867, + 51868, + 51869, + 51870, + 51871, + 51872, + 51873, + 51874, + 51875, + 51876, + 51877, + 51878, + 51879, + 51880, + 51881, + 51882, + 51883, + 51884, + 51885, + 51886, + 51887, + 51888, + 51889, + 51890, + 51891, + 51892, + 51893, + 51894, + 51895, + 51896, + 51897, + 51898, + 51899, + 51900, + 51901, + 51902, + 51903, + 51904, + 51905, + 51906, + 51907, + 51908, + 51909, + 51910, + 51911, + 51912, + 51913, + 51914, + 51915, + 51916, + 51917, + 51918, + 51919, + 51920, + 51921, + 51922, + 51923, + 51924, + 51925, + 51926, + 51927, + 51928, + 51929, + 51930, + 51931, + 51932, + 51933, + 51934, + 51935, + 51936, + 51937, + 51938, + 51939, + 51940, + 51941, + 51942, + 51943, + 51944, + 51945, + 51946, + 51947, + 51948, + 51949, + 51950, + 51951, + 51952, + 51953, + 51954, + 51955, + 51956, + 51957, + 51958, + 51959, + 51960, + 51961, + 51962, + 51963, + 51964, + 51965, + 51966, + 51967, + 51968, + 51969, + 51970, + 51971, + 51972, + 51973, + 51974, + 51975, + 51976, + 51977, + 51978, + 51979, + 51980, + 51981, + 51982, + 51983, + 51984, + 51985, + 51986, + 51987, + 51988, + 51989, + 51990, + 51991, + 51992, + 51993, + 51994, + 51995, + 51996, + 51997, + 51998, + 51999, + 52000, + 52001, + 52002, + 52003, + 52004, + 52005, + 52006, + 52007, + 52008, + 52009, + 52010, + 52011, + 52012, + 52013, + 52014, + 52015, + 52016, + 52017, + 52018, + 52019, + 52020, + 52021, + 52022, + 52023, + 52024, + 52025, + 52026, + 52027, + 52028, + 52029, + 52030, + 52031, + 52032, + 52033, + 52034, + 52035, + 52036, + 52037, + 52038, + 52039, + 52040, + 52041, + 52042, + 52043, + 52044, + 52045, + 52046, + 52047, + 52048, + 52049, + 52050, + 52051, + 52052, + 52053, + 52054, + 52055, + 52056, + 52057, + 52058, + 52059, + 52060, + 52061, + 52062, + 52063, + 52064, + 52065, + 52066, + 52067, + 52068, + 52069, + 52070, + 52071, + 52072, + 52073, + 52074, + 52075, + 52076, + 52077, + 52078, + 52079, + 52080, + 52081, + 52082, + 52083, + 52084, + 52085, + 52086, + 52087, + 52088, + 52089, + 52090, + 52091, + 52092, + 52093, + 52094, + 52095, + 52096, + 52097, + 52098, + 52099, + 52100, + 52101, + 52102, + 52103, + 52104, + 52105, + 52106, + 52107, + 52108, + 52109, + 52110, + 52111, + 52112, + 52113, + 52114, + 52115, + 52116, + 52117, + 52118, + 52119, + 52120, + 52121, + 52122, + 52123, + 52124, + 52125, + 52126, + 52127, + 52128, + 52129, + 52130, + 52131, + 52132, + 52133, + 52134, + 52135, + 52136, + 52137, + 52138, + 52139, + 52140, + 52141, + 52142, + 52143, + 52144, + 52145, + 52146, + 52147, + 52148, + 52149, + 52150, + 52151, + 52152, + 52153, + 52154, + 52155, + 52156, + 52157, + 52158, + 52159, + 52160, + 52161, + 52162, + 52163, + 52164, + 52165, + 52166, + 52167, + 52168, + 52169, + 52170, + 52171, + 52172, + 52173, + 52174, + 52175, + 52176, + 52177, + 52178, + 52179, + 52180, + 52181, + 52182, + 52183, + 52184, + 52185, + 52186, + 52187, + 52188, + 52189, + 52190, + 52191, + 52192, + 52193, + 52194, + 52195, + 52196, + 52197, + 52198, + 52199, + 52200, + 52201, + 52202, + 52203, + 52204, + 52205, + 52206, + 52207, + 52208, + 52209, + 52210, + 52211, + 52212, + 52213, + 52214, + 52215, + 52216, + 52217, + 52218, + 52219, + 52220, + 52221, + 52222, + 52223, + 52224, + 52225, + 52226, + 52227, + 52228, + 52229, + 52230, + 52231, + 52232, + 52233, + 52234, + 52235, + 52236, + 52237, + 52238, + 52239, + 52240, + 52241, + 52242, + 52243, + 52244, + 52245, + 52246, + 52247, + 52248, + 52249, + 52250, + 52251, + 52252, + 52253, + 52254, + 52255, + 52256, + 52257, + 52258, + 52259, + 52260, + 52261, + 52262, + 52263, + 52264, + 52265, + 52266, + 52267, + 52268, + 52269, + 52270, + 52271, + 52272, + 52273, + 52274, + 52275, + 52276, + 52277, + 52278, + 52279, + 52280, + 52281, + 52282, + 52283, + 52284, + 52285, + 52286, + 52287, + 52288, + 52289, + 52290, + 52291, + 52292, + 52293, + 52294, + 52295, + 52296, + 52297, + 52298, + 52299, + 52300, + 52301, + 52302, + 52303, + 52304, + 52305, + 52306, + 52307, + 52308, + 52309, + 52310, + 52311, + 52312, + 52313, + 52314, + 52315, + 52316, + 52317, + 52318, + 52319, + 52320, + 52321, + 52322, + 52323, + 52324, + 52325, + 52326, + 52327, + 52328, + 52329, + 52330, + 52331, + 52332, + 52333, + 52334, + 52335, + 52336, + 52337, + 52338, + 52339, + 52340, + 52341, + 52342, + 52343, + 52344, + 52345, + 52346, + 52347, + 52348, + 52349, + 52350, + 52351, + 52352, + 52353, + 52354, + 52355, + 52356, + 52357, + 52358, + 52359, + 52360, + 52361, + 52362, + 52363, + 52364, + 52365, + 52366, + 52367, + 52368, + 52369, + 52370, + 52371, + 52372, + 52373, + 52374, + 52375, + 52376, + 52377, + 52378, + 52379, + 52380, + 52381, + 52382, + 52383, + 52384, + 52385, + 52386, + 52387, + 52388, + 52389, + 52390, + 52391, + 52392, + 52393, + 52394, + 52395, + 52396, + 52397, + 52398, + 52399, + 52400, + 52401, + 52402, + 52403, + 52404, + 52405, + 52406, + 52407, + 52408, + 52409, + 52410, + 52411, + 52412, + 52413, + 52414, + 52415, + 52416, + 52417, + 52418, + 52419, + 52420, + 52421, + 52422, + 52423, + 52424, + 52425, + 52426, + 52427, + 52428, + 52429, + 52430, + 52431, + 52432, + 52433, + 52434, + 52435, + 52436, + 52437, + 52438, + 52439, + 52440, + 52441, + 52442, + 52443, + 52444, + 52445, + 52446, + 52447, + 52448, + 52449, + 52450, + 52451, + 52452, + 52453, + 52454, + 52455, + 52456, + 52457, + 52458, + 52459, + 52460, + 52461, + 52462, + 52463, + 52464, + 52465, + 52466, + 52467, + 52468, + 52469, + 52470, + 52471, + 52472, + 52473, + 52474, + 52475, + 52476, + 52477, + 52478, + 52479, + 52480, + 52481, + 52482, + 52483, + 52484, + 52485, + 52486, + 52487, + 52488, + 52489, + 52490, + 52491, + 52492, + 52493, + 52494, + 52495, + 52496, + 52497, + 52498, + 52499, + 52500, + 52501, + 52502, + 52503, + 52504, + 52505, + 52506, + 52507, + 52508, + 52509, + 52510, + 52511, + 52512, + 52513, + 52514, + 52515, + 52516, + 52517, + 52518, + 52519, + 52520, + 52521, + 52522, + 52523, + 52524, + 52525, + 52526, + 52527, + 52528, + 52529, + 52530, + 52531, + 52532, + 52533, + 52534, + 52535, + 52536, + 52537, + 52538, + 52539, + 52540, + 52541, + 52542, + 52543, + 52544, + 52545, + 52546, + 52547, + 52548, + 52549, + 52550, + 52551, + 52552, + 52553, + 52554, + 52555, + 52556, + 52557, + 52558, + 52559, + 52560, + 52561, + 52562, + 52563, + 52564, + 52565, + 52566, + 52567, + 52568, + 52569, + 52570, + 52571, + 52572, + 52573, + 52574, + 52575, + 52576, + 52577, + 52578, + 52579, + 52580, + 52581, + 52582, + 52583, + 52584, + 52585, + 52586, + 52587, + 52588, + 52589, + 52590, + 52591, + 52592, + 52593, + 52594, + 52595, + 52596, + 52597, + 52598, + 52599, + 52600, + 52601, + 52602, + 52603, + 52604, + 52605, + 52606, + 52607, + 52608, + 52609, + 52610, + 52611, + 52612, + 52613, + 52614, + 52615, + 52616, + 52617, + 52618, + 52619, + 52620, + 52621, + 52622, + 52623, + 52624, + 52625, + 52626, + 52627, + 52628, + 52629, + 52630, + 52631, + 52632, + 52633, + 52634, + 52635, + 52636, + 52637, + 52638, + 52639, + 52640, + 52641, + 52642, + 52643, + 52644, + 52645, + 52646, + 52647, + 52648, + 52649, + 52650, + 52651, + 52652, + 52653, + 52654, + 52655, + 52656, + 52657, + 52658, + 52659, + 52660, + 52661, + 52662, + 52663, + 52664, + 52665, + 52666, + 52667, + 52668, + 52669, + 52670, + 52671, + 52672, + 52673, + 52674, + 52675, + 52676, + 52677, + 52678, + 52679, + 52680, + 52681, + 52682, + 52683, + 52684, + 52685, + 52686, + 52687, + 52688, + 52689, + 52690, + 52691, + 52692, + 52693, + 52694, + 52695, + 52696, + 52697, + 52698, + 52699, + 52700, + 52701, + 52702, + 52703, + 52704, + 52705, + 52706, + 52707, + 52708, + 52709, + 52710, + 52711, + 52712, + 52713, + 52714, + 52715, + 52716, + 52717, + 52718, + 52719, + 52720, + 52721, + 52722, + 52723, + 52724, + 52725, + 52726, + 52727, + 52728, + 52729, + 52730, + 52731, + 52732, + 52733, + 52734, + 52735, + 52736, + 52737, + 52738, + 52739, + 52740, + 52741, + 52742, + 52743, + 52744, + 52745, + 52746, + 52747, + 52748, + 52749, + 52750, + 52751, + 52752, + 52753, + 52754, + 52755, + 52756, + 52757, + 52758, + 52759, + 52760, + 52761, + 52762, + 52763, + 52764, + 52765, + 52766, + 52767, + 52768, + 52769, + 52770, + 52771, + 52772, + 52773, + 52774, + 52775, + 52776, + 52777, + 52778, + 52779, + 52780, + 52781, + 52782, + 52783, + 52784, + 52785, + 52786, + 52787, + 52788, + 52789, + 52790, + 52791, + 52792, + 52793, + 52794, + 52795, + 52796, + 52797, + 52798, + 52799, + 52800, + 52801, + 52802, + 52803, + 52804, + 52805, + 52806, + 52807, + 52808, + 52809, + 52810, + 52811, + 52812, + 52813, + 52814, + 52815, + 52816, + 52817, + 52818, + 52819, + 52820, + 52821, + 52822, + 52823, + 52824, + 52825, + 52826, + 52827, + 52828, + 52829, + 52830, + 52831, + 52832, + 52833, + 52834, + 52835, + 52836, + 52837, + 52838, + 52839, + 52840, + 52841, + 52842, + 52843, + 52844, + 52845, + 52846, + 52847, + 52848, + 52849, + 52850, + 52851, + 52852, + 52853, + 52854, + 52855, + 52856, + 52857, + 52858, + 52859, + 52860, + 52861, + 52862, + 52863, + 52864, + 52865, + 52866, + 52867, + 52868, + 52869, + 52870, + 52871, + 52872, + 52873, + 52874, + 52875, + 52876, + 52877, + 52878, + 52879, + 52880, + 52881, + 52882, + 52883, + 52884, + 52885, + 52886, + 52887, + 52888, + 52889, + 52890, + 52891, + 52892, + 52893, + 52894, + 52895, + 52896, + 52897, + 52898, + 52899, + 52900, + 52901, + 52902, + 52903, + 52904, + 52905, + 52906, + 52907, + 52908, + 52909, + 52910, + 52911, + 52912, + 52913, + 52914, + 52915, + 52916, + 52917, + 52918, + 52919, + 52920, + 52921, + 52922, + 52923, + 52924, + 52925, + 52926, + 52927, + 52928, + 52929, + 52930, + 52931, + 52932, + 52933, + 52934, + 52935, + 52936, + 52937, + 52938, + 52939, + 52940, + 52941, + 52942, + 52943, + 52944, + 52945, + 52946, + 52947, + 52948, + 52949, + 52950, + 52951, + 52952, + 52953, + 52954, + 52955, + 52956, + 52957, + 52958, + 52959, + 52960, + 52961, + 52962, + 52963, + 52964, + 52965, + 52966, + 52967, + 52968, + 52969, + 52970, + 52971, + 52972, + 52973, + 52974, + 52975, + 52976, + 52977, + 52978, + 52979, + 52980, + 52981, + 52982, + 52983, + 52984, + 52985, + 52986, + 52987, + 52988, + 52989, + 52990, + 52991, + 52992, + 52993, + 52994, + 52995, + 52996, + 52997, + 52998, + 52999, + 53000, + 53001, + 53002, + 53003, + 53004, + 53005, + 53006, + 53007, + 53008, + 53009, + 53010, + 53011, + 53012, + 53013, + 53014, + 53015, + 53016, + 53017, + 53018, + 53019, + 53020, + 53021, + 53022, + 53023, + 53024, + 53025, + 53026, + 53027, + 53028, + 53029, + 53030, + 53031, + 53032, + 53033, + 53034, + 53035, + 53036, + 53037, + 53038, + 53039, + 53040, + 53041, + 53042, + 53043, + 53044, + 53045, + 53046, + 53047, + 53048, + 53049, + 53050, + 53051, + 53052, + 53053, + 53054, + 53055, + 53056, + 53057, + 53058, + 53059, + 53060, + 53061, + 53062, + 53063, + 53064, + 53065, + 53066, + 53067, + 53068, + 53069, + 53070, + 53071, + 53072, + 53073, + 53074, + 53075, + 53076, + 53077, + 53078, + 53079, + 53080, + 53081, + 53082, + 53083, + 53084, + 53085, + 53086, + 53087, + 53088, + 53089, + 53090, + 53091, + 53092, + 53093, + 53094, + 53095, + 53096, + 53097, + 53098, + 53099, + 53100, + 53101, + 53102, + 53103, + 53104, + 53105, + 53106, + 53107, + 53108, + 53109, + 53110, + 53111, + 53112, + 53113, + 53114, + 53115, + 53116, + 53117, + 53118, + 53119, + 53120, + 53121, + 53122, + 53123, + 53124, + 53125, + 53126, + 53127, + 53128, + 53129, + 53130, + 53131, + 53132, + 53133, + 53134, + 53135, + 53136, + 53137, + 53138, + 53139, + 53140, + 53141, + 53142, + 53143, + 53144, + 53145, + 53146, + 53147, + 53148, + 53149, + 53150, + 53151, + 53152, + 53153, + 53154, + 53155, + 53156, + 53157, + 53158, + 53159, + 53160, + 53161, + 53162, + 53163, + 53164, + 53165, + 53166, + 53167, + 53168, + 53169, + 53170, + 53171, + 53172, + 53173, + 53174, + 53175, + 53176, + 53177, + 53178, + 53179, + 53180, + 53181, + 53182, + 53183, + 53184, + 53185, + 53186, + 53187, + 53188, + 53189, + 53190, + 53191, + 53192, + 53193, + 53194, + 53195, + 53196, + 53197, + 53198, + 53199, + 53200, + 53201, + 53202, + 53203, + 53204, + 53205, + 53206, + 53207, + 53208, + 53209, + 53210, + 53211, + 53212, + 53213, + 53214, + 53215, + 53216, + 53217, + 53218, + 53219, + 53220, + 53221, + 53222, + 53223, + 53224, + 53225, + 53226, + 53227, + 53228, + 53229, + 53230, + 53231, + 53232, + 53233, + 53234, + 53235, + 53236, + 53237, + 53238, + 53239, + 53240, + 53241, + 53242, + 53243, + 53244, + 53245, + 53246, + 53247, + 53248, + 53249, + 53250, + 53251, + 53252, + 53253, + 53254, + 53255, + 53256, + 53257, + 53258, + 53259, + 53260, + 53261, + 53262, + 53263, + 53264, + 53265, + 53266, + 53267, + 53268, + 53269, + 53270, + 53271, + 53272, + 53273, + 53274, + 53275, + 53276, + 53277, + 53278, + 53279, + 53280, + 53281, + 53282, + 53283, + 53284, + 53285, + 53286, + 53287, + 53288, + 53289, + 53290, + 53291, + 53292, + 53293, + 53294, + 53295, + 53296, + 53297, + 53298, + 53299, + 53300, + 53301, + 53302, + 53303, + 53304, + 53305, + 53306, + 53307, + 53308, + 53309, + 53310, + 53311, + 53312, + 53313, + 53314, + 53315, + 53316, + 53317, + 53318, + 53319, + 53320, + 53321, + 53322, + 53323, + 53324, + 53325, + 53326, + 53327, + 53328, + 53329, + 53330, + 53331, + 53332, + 53333, + 53334, + 53335, + 53336, + 53337, + 53338, + 53339, + 53340, + 53341, + 53342, + 53343, + 53344, + 53345, + 53346, + 53347, + 53348, + 53349, + 53350, + 53351, + 53352, + 53353, + 53354, + 53355, + 53356, + 53357, + 53358, + 53359, + 53360, + 53361, + 53362, + 53363, + 53364, + 53365, + 53366, + 53367, + 53368, + 53369, + 53370, + 53371, + 53372, + 53373, + 53374, + 53375, + 53376, + 53377, + 53378, + 53379, + 53380, + 53381, + 53382, + 53383, + 53384, + 53385, + 53386, + 53387, + 53388, + 53389, + 53390, + 53391, + 53392, + 53393, + 53394, + 53395, + 53396, + 53397, + 53398, + 53399, + 53400, + 53401, + 53402, + 53403, + 53404, + 53405, + 53406, + 53407, + 53408, + 53409, + 53410, + 53411, + 53412, + 53413, + 53414, + 53415, + 53416, + 53417, + 53418, + 53419, + 53420, + 53421, + 53422, + 53423, + 53424, + 53425, + 53426, + 53427, + 53428, + 53429, + 53430, + 53431, + 53432, + 53433, + 53434, + 53435, + 53436, + 53437, + 53438, + 53439, + 53440, + 53441, + 53442, + 53443, + 53444, + 53445, + 53446, + 53447, + 53448, + 53449, + 53450, + 53451, + 53452, + 53453, + 53454, + 53455, + 53456, + 53457, + 53458, + 53459, + 53460, + 53461, + 53462, + 53463, + 53464, + 53465, + 53466, + 53467, + 53468, + 53469, + 53470, + 53471, + 53472, + 53473, + 53474, + 53475, + 53476, + 53477, + 53478, + 53479, + 53480, + 53481, + 53482, + 53483, + 53484, + 53485, + 53486, + 53487, + 53488, + 53489, + 53490, + 53491, + 53492, + 53493, + 53494, + 53495, + 53496, + 53497, + 53498, + 53499, + 53500, + 53501, + 53502, + 53503, + 53504, + 53505, + 53506, + 53507, + 53508, + 53509, + 53510, + 53511, + 53512, + 53513, + 53514, + 53515, + 53516, + 53517, + 53518, + 53519, + 53520, + 53521, + 53522, + 53523, + 53524, + 53525, + 53526, + 53527, + 53528, + 53529, + 53530, + 53531, + 53532, + 53533, + 53534, + 53535, + 53536, + 53537, + 53538, + 53539, + 53540, + 53541, + 53542, + 53543, + 53544, + 53545, + 53546, + 53547, + 53548, + 53549, + 53550, + 53551, + 53552, + 53553, + 53554, + 53555, + 53556, + 53557, + 53558, + 53559, + 53560, + 53561, + 53562, + 53563, + 53564, + 53565, + 53566, + 53567, + 53568, + 53569, + 53570, + 53571, + 53572, + 53573, + 53574, + 53575, + 53576, + 53577, + 53578, + 53579, + 53580, + 53581, + 53582, + 53583, + 53584, + 53585, + 53586, + 53587, + 53588, + 53589, + 53590, + 53591, + 53592, + 53593, + 53594, + 53595, + 53596, + 53597, + 53598, + 53599, + 53600, + 53601, + 53602, + 53603, + 53604, + 53605, + 53606, + 53607, + 53608, + 53609, + 53610, + 53611, + 53612, + 53613, + 53614, + 53615, + 53616, + 53617, + 53618, + 53619, + 53620, + 53621, + 53622, + 53623, + 53624, + 53625, + 53626, + 53627, + 53628, + 53629, + 53630, + 53631, + 53632, + 53633, + 53634, + 53635, + 53636, + 53637, + 53638, + 53639, + 53640, + 53641, + 53642, + 53643, + 53644, + 53645, + 53646, + 53647, + 53648, + 53649, + 53650, + 53651, + 53652, + 53653, + 53654, + 53655, + 53656, + 53657, + 53658, + 53659, + 53660, + 53661, + 53662, + 53663, + 53664, + 53665, + 53666, + 53667, + 53668, + 53669, + 53670, + 53671, + 53672, + 53673, + 53674, + 53675, + 53676, + 53677, + 53678, + 53679, + 53680, + 53681, + 53682, + 53683, + 53684, + 53685, + 53686, + 53687, + 53688, + 53689, + 53690, + 53691, + 53692, + 53693, + 53694, + 53695, + 53696, + 53697, + 53698, + 53699, + 53700, + 53701, + 53702, + 53703, + 53704, + 53705, + 53706, + 53707, + 53708, + 53709, + 53710, + 53711, + 53712, + 53713, + 53714, + 53715, + 53716, + 53717, + 53718, + 53719, + 53720, + 53721, + 53722, + 53723, + 53724, + 53725, + 53726, + 53727, + 53728, + 53729, + 53730, + 53731, + 53732, + 53733, + 53734, + 53735, + 53736, + 53737, + 53738, + 53739, + 53740, + 53741, + 53742, + 53743, + 53744, + 53745, + 53746, + 53747, + 53748, + 53749, + 53750, + 53751, + 53752, + 53753, + 53754, + 53755, + 53756, + 53757, + 53758, + 53759, + 53760, + 53761, + 53762, + 53763, + 53764, + 53765, + 53766, + 53767, + 53768, + 53769, + 53770, + 53771, + 53772, + 53773, + 53774, + 53775, + 53776, + 53777, + 53778, + 53779, + 53780, + 53781, + 53782, + 53783, + 53784, + 53785, + 53786, + 53787, + 53788, + 53789, + 53790, + 53791, + 53792, + 53793, + 53794, + 53795, + 53796, + 53797, + 53798, + 53799, + 53800, + 53801, + 53802, + 53803, + 53804, + 53805, + 53806, + 53807, + 53808, + 53809, + 53810, + 53811, + 53812, + 53813, + 53814, + 53815, + 53816, + 53817, + 53818, + 53819, + 53820, + 53821, + 53822, + 53823, + 53824, + 53825, + 53826, + 53827, + 53828, + 53829, + 53830, + 53831, + 53832, + 53833, + 53834, + 53835, + 53836, + 53837, + 53838, + 53839, + 53840, + 53841, + 53842, + 53843, + 53844, + 53845, + 53846, + 53847, + 53848, + 53849, + 53850, + 53851, + 53852, + 53853, + 53854, + 53855, + 53856, + 53857, + 53858, + 53859, + 53860, + 53861, + 53862, + 53863, + 53864, + 53865, + 53866, + 53867, + 53868, + 53869, + 53870, + 53871, + 53872, + 53873, + 53874, + 53875, + 53876, + 53877, + 53878, + 53879, + 53880, + 53881, + 53882, + 53883, + 53884, + 53885, + 53886, + 53887, + 53888, + 53889, + 53890, + 53891, + 53892, + 53893, + 53894, + 53895, + 53896, + 53897, + 53898, + 53899, + 53900, + 53901, + 53902, + 53903, + 53904, + 53905, + 53906, + 53907, + 53908, + 53909, + 53910, + 53911, + 53912, + 53913, + 53914, + 53915, + 53916, + 53917, + 53918, + 53919, + 53920, + 53921, + 53922, + 53923, + 53924, + 53925, + 53926, + 53927, + 53928, + 53929, + 53930, + 53931, + 53932, + 53933, + 53934, + 53935, + 53936, + 53937, + 53938, + 53939, + 53940, + 53941, + 53942, + 53943, + 53944, + 53945, + 53946, + 53947, + 53948, + 53949, + 53950, + 53951, + 53952, + 53953, + 53954, + 53955, + 53956, + 53957, + 53958, + 53959, + 53960, + 53961, + 53962, + 53963, + 53964, + 53965, + 53966, + 53967, + 53968, + 53969, + 53970, + 53971, + 53972, + 53973, + 53974, + 53975, + 53976, + 53977, + 53978, + 53979, + 53980, + 53981, + 53982, + 53983, + 53984, + 53985, + 53986, + 53987, + 53988, + 53989, + 53990, + 53991, + 53992, + 53993, + 53994, + 53995, + 53996, + 53997, + 53998, + 53999, + 54000, + 54001, + 54002, + 54003, + 54004, + 54005, + 54006, + 54007, + 54008, + 54009, + 54010, + 54011, + 54012, + 54013, + 54014, + 54015, + 54016, + 54017, + 54018, + 54019, + 54020, + 54021, + 54022, + 54023, + 54024, + 54025, + 54026, + 54027, + 54028, + 54029, + 54030, + 54031, + 54032, + 54033, + 54034, + 54035, + 54036, + 54037, + 54038, + 54039, + 54040, + 54041, + 54042, + 54043, + 54044, + 54045, + 54046, + 54047, + 54048, + 54049, + 54050, + 54051, + 54052, + 54053, + 54054, + 54055, + 54056, + 54057, + 54058, + 54059, + 54060, + 54061, + 54062, + 54063, + 54064, + 54065, + 54066, + 54067, + 54068, + 54069, + 54070, + 54071, + 54072, + 54073, + 54074, + 54075, + 54076, + 54077, + 54078, + 54079, + 54080, + 54081, + 54082, + 54083, + 54084, + 54085, + 54086, + 54087, + 54088, + 54089, + 54090, + 54091, + 54092, + 54093, + 54094, + 54095, + 54096, + 54097, + 54098, + 54099, + 54100, + 54101, + 54102, + 54103, + 54104, + 54105, + 54106, + 54107, + 54108, + 54109, + 54110, + 54111, + 54112, + 54113, + 54114, + 54115, + 54116, + 54117, + 54118, + 54119, + 54120, + 54121, + 54122, + 54123, + 54124, + 54125, + 54126, + 54127, + 54128, + 54129, + 54130, + 54131, + 54132, + 54133, + 54134, + 54135, + 54136, + 54137, + 54138, + 54139, + 54140, + 54141, + 54142, + 54143, + 54144, + 54145, + 54146, + 54147, + 54148, + 54149, + 54150, + 54151, + 54152, + 54153, + 54154, + 54155, + 54156, + 54157, + 54158, + 54159, + 54160, + 54161, + 54162, + 54163, + 54164, + 54165, + 54166, + 54167, + 54168, + 54169, + 54170, + 54171, + 54172, + 54173, + 54174, + 54175, + 54176, + 54177, + 54178, + 54179, + 54180, + 54181, + 54182, + 54183, + 54184, + 54185, + 54186, + 54187, + 54188, + 54189, + 54190, + 54191, + 54192, + 54193, + 54194, + 54195, + 54196, + 54197, + 54198, + 54199, + 54200, + 54201, + 54202, + 54203, + 54204, + 54205, + 54206, + 54207, + 54208, + 54209, + 54210, + 54211, + 54212, + 54213, + 54214, + 54215, + 54216, + 54217, + 54218, + 54219, + 54220, + 54221, + 54222, + 54223, + 54224, + 54225, + 54226, + 54227, + 54228, + 54229, + 54230, + 54231, + 54232, + 54233, + 54234, + 54235, + 54236, + 54237, + 54238, + 54239, + 54240, + 54241, + 54242, + 54243, + 54244, + 54245, + 54246, + 54247, + 54248, + 54249, + 54250, + 54251, + 54252, + 54253, + 54254, + 54255, + 54256, + 54257, + 54258, + 54259, + 54260, + 54261, + 54262, + 54263, + 54264, + 54265, + 54266, + 54267, + 54268, + 54269, + 54270, + 54271, + 54272, + 54273, + 54274, + 54275, + 54276, + 54277, + 54278, + 54279, + 54280, + 54281, + 54282, + 54283, + 54284, + 54285, + 54286, + 54287, + 54288, + 54289, + 54290, + 54291, + 54292, + 54293, + 54294, + 54295, + 54296, + 54297, + 54298, + 54299, + 54300, + 54301, + 54302, + 54303, + 54304, + 54305, + 54306, + 54307, + 54308, + 54309, + 54310, + 54311, + 54312, + 54313, + 54314, + 54315, + 54316, + 54317, + 54318, + 54319, + 54320, + 54321, + 54322, + 54323, + 54324, + 54325, + 54326, + 54327, + 54328, + 54329, + 54330, + 54331, + 54332, + 54333, + 54334, + 54335, + 54336, + 54337, + 54338, + 54339, + 54340, + 54341, + 54342, + 54343, + 54344, + 54345, + 54346, + 54347, + 54348, + 54349, + 54350, + 54351, + 54352, + 54353, + 54354, + 54355, + 54356, + 54357, + 54358, + 54359, + 54360, + 54361, + 54362, + 54363, + 54364, + 54365, + 54366, + 54367, + 54368, + 54369, + 54370, + 54371, + 54372, + 54373, + 54374, + 54375, + 54376, + 54377, + 54378, + 54379, + 54380, + 54381, + 54382, + 54383, + 54384, + 54385, + 54386, + 54387, + 54388, + 54389, + 54390, + 54391, + 54392, + 54393, + 54394, + 54395, + 54396, + 54397, + 54398, + 54399, + 54400, + 54401, + 54402, + 54403, + 54404, + 54405, + 54406, + 54407, + 54408, + 54409, + 54410, + 54411, + 54412, + 54413, + 54414, + 54415, + 54416, + 54417, + 54418, + 54419, + 54420, + 54421, + 54422, + 54423, + 54424, + 54425, + 54426, + 54427, + 54428, + 54429, + 54430, + 54431, + 54432, + 54433, + 54434, + 54435, + 54436, + 54437, + 54438, + 54439, + 54440, + 54441, + 54442, + 54443, + 54444, + 54445, + 54446, + 54447, + 54448, + 54449, + 54450, + 54451, + 54452, + 54453, + 54454, + 54455, + 54456, + 54457, + 54458, + 54459, + 54460, + 54461, + 54462, + 54463, + 54464, + 54465, + 54466, + 54467, + 54468, + 54469, + 54470, + 54471, + 54472, + 54473, + 54474, + 54475, + 54476, + 54477, + 54478, + 54479, + 54480, + 54481, + 54482, + 54483, + 54484, + 54485, + 54486, + 54487, + 54488, + 54489, + 54490, + 54491, + 54492, + 54493, + 54494, + 54495, + 54496, + 54497, + 54498, + 54499, + 54500, + 54501, + 54502, + 54503, + 54504, + 54505, + 54506, + 54507, + 54508, + 54509, + 54510, + 54511, + 54512, + 54513, + 54514, + 54515, + 54516, + 54517, + 54518, + 54519, + 54520, + 54521, + 54522, + 54523, + 54524, + 54525, + 54526, + 54527, + 54528, + 54529, + 54530, + 54531, + 54532, + 54533, + 54534, + 54535, + 54536, + 54537, + 54538, + 54539, + 54540, + 54541, + 54542, + 54543, + 54544, + 54545, + 54546, + 54547, + 54548, + 54549, + 54550, + 54551, + 54552, + 54553, + 54554, + 54555, + 54556, + 54557, + 54558, + 54559, + 54560, + 54561, + 54562, + 54563, + 54564, + 54565, + 54566, + 54567, + 54568, + 54569, + 54570, + 54571, + 54572, + 54573, + 54574, + 54575, + 54576, + 54577, + 54578, + 54579, + 54580, + 54581, + 54582, + 54583, + 54584, + 54585, + 54586, + 54587, + 54588, + 54589, + 54590, + 54591, + 54592, + 54593, + 54594, + 54595, + 54596, + 54597, + 54598, + 54599, + 54600, + 54601, + 54602, + 54603, + 54604, + 54605, + 54606, + 54607, + 54608, + 54609, + 54610, + 54611, + 54612, + 54613, + 54614, + 54615, + 54616, + 54617, + 54618, + 54619, + 54620, + 54621, + 54622, + 54623, + 54624, + 54625, + 54626, + 54627, + 54628, + 54629, + 54630, + 54631, + 54632, + 54633, + 54634, + 54635, + 54636, + 54637, + 54638, + 54639, + 54640, + 54641, + 54642, + 54643, + 54644, + 54645, + 54646, + 54647, + 54648, + 54649, + 54650, + 54651, + 54652, + 54653, + 54654, + 54655, + 54656, + 54657, + 54658, + 54659, + 54660, + 54661, + 54662, + 54663, + 54664, + 54665, + 54666, + 54667, + 54668, + 54669, + 54670, + 54671, + 54672, + 54673, + 54674, + 54675, + 54676, + 54677, + 54678, + 54679, + 54680, + 54681, + 54682, + 54683, + 54684, + 54685, + 54686, + 54687, + 54688, + 54689, + 54690, + 54691, + 54692, + 54693, + 54694, + 54695, + 54696, + 54697, + 54698, + 54699, + 54700, + 54701, + 54702, + 54703, + 54704, + 54705, + 54706, + 54707, + 54708, + 54709, + 54710, + 54711, + 54712, + 54713, + 54714, + 54715, + 54716, + 54717, + 54718, + 54719, + 54720, + 54721, + 54722, + 54723, + 54724, + 54725, + 54726, + 54727, + 54728, + 54729, + 54730, + 54731, + 54732, + 54733, + 54734, + 54735, + 54736, + 54737, + 54738, + 54739, + 54740, + 54741, + 54742, + 54743, + 54744, + 54745, + 54746, + 54747, + 54748, + 54749, + 54750, + 54751, + 54752, + 54753, + 54754, + 54755, + 54756, + 54757, + 54758, + 54759, + 54760, + 54761, + 54762, + 54763, + 54764, + 54765, + 54766, + 54767, + 54768, + 54769, + 54770, + 54771, + 54772, + 54773, + 54774, + 54775, + 54776, + 54777, + 54778, + 54779, + 54780, + 54781, + 54782, + 54783, + 54784, + 54785, + 54786, + 54787, + 54788, + 54789, + 54790, + 54791, + 54792, + 54793, + 54794, + 54795, + 54796, + 54797, + 54798, + 54799, + 54800, + 54801, + 54802, + 54803, + 54804, + 54805, + 54806, + 54807, + 54808, + 54809, + 54810, + 54811, + 54812, + 54813, + 54814, + 54815, + 54816, + 54817, + 54818, + 54819, + 54820, + 54821, + 54822, + 54823, + 54824, + 54825, + 54826, + 54827, + 54828, + 54829, + 54830, + 54831, + 54832, + 54833, + 54834, + 54835, + 54836, + 54837, + 54838, + 54839, + 54840, + 54841, + 54842, + 54843, + 54844, + 54845, + 54846, + 54847, + 54848, + 54849, + 54850, + 54851, + 54852, + 54853, + 54854, + 54855, + 54856, + 54857, + 54858, + 54859, + 54860, + 54861, + 54862, + 54863, + 54864, + 54865, + 54866, + 54867, + 54868, + 54869, + 54870, + 54871, + 54872, + 54873, + 54874, + 54875, + 54876, + 54877, + 54878, + 54879, + 54880, + 54881, + 54882, + 54883, + 54884, + 54885, + 54886, + 54887, + 54888, + 54889, + 54890, + 54891, + 54892, + 54893, + 54894, + 54895, + 54896, + 54897, + 54898, + 54899, + 54900, + 54901, + 54902, + 54903, + 54904, + 54905, + 54906, + 54907, + 54908, + 54909, + 54910, + 54911, + 54912, + 54913, + 54914, + 54915, + 54916, + 54917, + 54918, + 54919, + 54920, + 54921, + 54922, + 54923, + 54924, + 54925, + 54926, + 54927, + 54928, + 54929, + 54930, + 54931, + 54932, + 54933, + 54934, + 54935, + 54936, + 54937, + 54938, + 54939, + 54940, + 54941, + 54942, + 54943, + 54944, + 54945, + 54946, + 54947, + 54948, + 54949, + 54950, + 54951, + 54952, + 54953, + 54954, + 54955, + 54956, + 54957, + 54958, + 54959, + 54960, + 54961, + 54962, + 54963, + 54964, + 54965, + 54966, + 54967, + 54968, + 54969, + 54970, + 54971, + 54972, + 54973, + 54974, + 54975, + 54976, + 54977, + 54978, + 54979, + 54980, + 54981, + 54982, + 54983, + 54984, + 54985, + 54986, + 54987, + 54988, + 54989, + 54990, + 54991, + 54992, + 54993, + 54994, + 54995, + 54996, + 54997, + 54998, + 54999, + 55000, + 55001, + 55002, + 55003, + 55004, + 55005, + 55006, + 55007, + 55008, + 55009, + 55010, + 55011, + 55012, + 55013, + 55014, + 55015, + 55016, + 55017, + 55018, + 55019, + 55020, + 55021, + 55022, + 55023, + 55024, + 55025, + 55026, + 55027, + 55028, + 55029, + 55030, + 55031, + 55032, + 55033, + 55034, + 55035, + 55036, + 55037, + 55038, + 55039, + 55040, + 55041, + 55042, + 55043, + 55044, + 55045, + 55046, + 55047, + 55048, + 55049, + 55050, + 55051, + 55052, + 55053, + 55054, + 55055, + 55056, + 55057, + 55058, + 55059, + 55060, + 55061, + 55062, + 55063, + 55064, + 55065, + 55066, + 55067, + 55068, + 55069, + 55070, + 55071, + 55072, + 55073, + 55074, + 55075, + 55076, + 55077, + 55078, + 55079, + 55080, + 55081, + 55082, + 55083, + 55084, + 55085, + 55086, + 55087, + 55088, + 55089, + 55090, + 55091, + 55092, + 55093, + 55094, + 55095, + 55096, + 55097, + 55098, + 55099, + 55100, + 55101, + 55102, + 55103, + 55104, + 55105, + 55106, + 55107, + 55108, + 55109, + 55110, + 55111, + 55112, + 55113, + 55114, + 55115, + 55116, + 55117, + 55118, + 55119, + 55120, + 55121, + 55122, + 55123, + 55124, + 55125, + 55126, + 55127, + 55128, + 55129, + 55130, + 55131, + 55132, + 55133, + 55134, + 55135, + 55136, + 55137, + 55138, + 55139, + 55140, + 55141, + 55142, + 55143, + 55144, + 55145, + 55146, + 55147, + 55148, + 55149, + 55150, + 55151, + 55152, + 55153, + 55154, + 55155, + 55156, + 55157, + 55158, + 55159, + 55160, + 55161, + 55162, + 55163, + 55164, + 55165, + 55166, + 55167, + 55168, + 55169, + 55170, + 55171, + 55172, + 55173, + 55174, + 55175, + 55176, + 55177, + 55178, + 55179, + 55180, + 55181, + 55182, + 55183, + 55184, + 55185, + 55186, + 55187, + 55188, + 55189, + 55190, + 55191, + 55192, + 55193, + 55194, + 55195, + 55196, + 55197, + 55198, + 55199, + 55200, + 55201, + 55202, + 55203, + 55204, + 55205, + 55206, + 55207, + 55208, + 55209, + 55210, + 55211, + 55212, + 55213, + 55214, + 55215, + 55216, + 55217, + 55218, + 55219, + 55220, + 55221, + 55222, + 55223, + 55224, + 55225, + 55226, + 55227, + 55228, + 55229, + 55230, + 55231, + 55232, + 55233, + 55234, + 55235, + 55236, + 55237, + 55238, + 55239, + 55240, + 55241, + 55242, + 55243, + 55244, + 55245, + 55246, + 55247, + 55248, + 55249, + 55250, + 55251, + 55252, + 55253, + 55254, + 55255, + 55256, + 55257, + 55258, + 55259, + 55260, + 55261, + 55262, + 55263, + 55264, + 55265, + 55266, + 55267, + 55268, + 55269, + 55270, + 55271, + 55272, + 55273, + 55274, + 55275, + 55276, + 55277, + 55278, + 55279, + 55280, + 55281, + 55282, + 55283, + 55284, + 55285, + 55286, + 55287, + 55288, + 55289, + 55290, + 55291, + 55292, + 55293, + 55294, + 55295, + 55296, + 55297, + 55298, + 55299, + 55300, + 55301, + 55302, + 55303, + 55304, + 55305, + 55306, + 55307, + 55308, + 55309, + 55310, + 55311, + 55312, + 55313, + 55314, + 55315, + 55316, + 55317, + 55318, + 55319, + 55320, + 55321, + 55322, + 55323, + 55324, + 55325, + 55326, + 55327, + 55328, + 55329, + 55330, + 55331, + 55332, + 55333, + 55334, + 55335, + 55336, + 55337, + 55338, + 55339, + 55340, + 55341, + 55342, + 55343, + 55344, + 55345, + 55346, + 55347, + 55348, + 55349, + 55350, + 55351, + 55352, + 55353, + 55354, + 55355, + 55356, + 55357, + 55358, + 55359, + 55360, + 55361, + 55362, + 55363, + 55364, + 55365, + 55366, + 55367, + 55368, + 55369, + 55370, + 55371, + 55372, + 55373, + 55374, + 55375, + 55376, + 55377, + 55378, + 55379, + 55380, + 55381, + 55382, + 55383, + 55384, + 55385, + 55386, + 55387, + 55388, + 55389, + 55390, + 55391, + 55392, + 55393, + 55394, + 55395, + 55396, + 55397, + 55398, + 55399, + 55400, + 55401, + 55402, + 55403, + 55404, + 55405, + 55406, + 55407, + 55408, + 55409, + 55410, + 55411, + 55412, + 55413, + 55414, + 55415, + 55416, + 55417, + 55418, + 55419, + 55420, + 55421, + 55422, + 55423, + 55424, + 55425, + 55426, + 55427, + 55428, + 55429, + 55430, + 55431, + 55432, + 55433, + 55434, + 55435, + 55436, + 55437, + 55438, + 55439, + 55440, + 55441, + 55442, + 55443, + 55444, + 55445, + 55446, + 55447, + 55448, + 55449, + 55450, + 55451, + 55452, + 55453, + 55454, + 55455, + 55456, + 55457, + 55458, + 55459, + 55460, + 55461, + 55462, + 55463, + 55464, + 55465, + 55466, + 55467, + 55468, + 55469, + 55470, + 55471, + 55472, + 55473, + 55474, + 55475, + 55476, + 55477, + 55478, + 55479, + 55480, + 55481, + 55482, + 55483, + 55484, + 55485, + 55486, + 55487, + 55488, + 55489, + 55490, + 55491, + 55492, + 55493, + 55494, + 55495, + 55496, + 55497, + 55498, + 55499, + 55500, + 55501, + 55502, + 55503, + 55504, + 55505, + 55506, + 55507, + 55508, + 55509, + 55510, + 55511, + 55512, + 55513, + 55514, + 55515, + 55516, + 55517, + 55518, + 55519, + 55520, + 55521, + 55522, + 55523, + 55524, + 55525, + 55526, + 55527, + 55528, + 55529, + 55530, + 55531, + 55532, + 55533, + 55534, + 55535, + 55536, + 55537, + 55538, + 55539, + 55540, + 55541, + 55542, + 55543, + 55544, + 55545, + 55546, + 55547, + 55548, + 55549, + 55550, + 55551, + 55552, + 55553, + 55554, + 55555, + 55556, + 55557, + 55558, + 55559, + 55560, + 55561, + 55562, + 55563, + 55564, + 55565, + 55566, + 55567, + 55568, + 55569, + 55570, + 55571, + 55572, + 55573, + 55574, + 55575, + 55576, + 55577, + 55578, + 55579, + 55580, + 55581, + 55582, + 55583, + 55584, + 55585, + 55586, + 55587, + 55588, + 55589, + 55590, + 55591, + 55592, + 55593, + 55594, + 55595, + 55596, + 55597, + 55598, + 55599, + 55600, + 55601, + 55602, + 55603, + 55604, + 55605, + 55606, + 55607, + 55608, + 55609, + 55610, + 55611, + 55612, + 55613, + 55614, + 55615, + 55616, + 55617, + 55618, + 55619, + 55620, + 55621, + 55622, + 55623, + 55624, + 55625, + 55626, + 55627, + 55628, + 55629, + 55630, + 55631, + 55632, + 55633, + 55634, + 55635, + 55636, + 55637, + 55638, + 55639, + 55640, + 55641, + 55642, + 55643, + 55644, + 55645, + 55646, + 55647, + 55648, + 55649, + 55650, + 55651, + 55652, + 55653, + 55654, + 55655, + 55656, + 55657, + 55658, + 55659, + 55660, + 55661, + 55662, + 55663, + 55664, + 55665, + 55666, + 55667, + 55668, + 55669, + 55670, + 55671, + 55672, + 55673, + 55674, + 55675, + 55676, + 55677, + 55678, + 55679, + 55680, + 55681, + 55682, + 55683, + 55684, + 55685, + 55686, + 55687, + 55688, + 55689, + 55690, + 55691, + 55692, + 55693, + 55694, + 55695, + 55696, + 55697, + 55698, + 55699, + 55700, + 55701, + 55702, + 55703, + 55704, + 55705, + 55706, + 55707, + 55708, + 55709, + 55710, + 55711, + 55712, + 55713, + 55714, + 55715, + 55716, + 55717, + 55718, + 55719, + 55720, + 55721, + 55722, + 55723, + 55724, + 55725, + 55726, + 55727, + 55728, + 55729, + 55730, + 55731, + 55732, + 55733, + 55734, + 55735, + 55736, + 55737, + 55738, + 55739, + 55740, + 55741, + 55742, + 55743, + 55744, + 55745, + 55746, + 55747, + 55748, + 55749, + 55750, + 55751, + 55752, + 55753, + 55754, + 55755, + 55756, + 55757, + 55758, + 55759, + 55760, + 55761, + 55762, + 55763, + 55764, + 55765, + 55766, + 55767, + 55768, + 55769, + 55770, + 55771, + 55772, + 55773, + 55774, + 55775, + 55776, + 55777, + 55778, + 55779, + 55780, + 55781, + 55782, + 55783, + 55784, + 55785, + 55786, + 55787, + 55788, + 55789, + 55790, + 55791, + 55792, + 55793, + 55794, + 55795, + 55796, + 55797, + 55798, + 55799, + 55800, + 55801, + 55802, + 55803, + 55804, + 55805, + 55806, + 55807, + 55808, + 55809, + 55810, + 55811, + 55812, + 55813, + 55814, + 55815, + 55816, + 55817, + 55818, + 55819, + 55820, + 55821, + 55822, + 55823, + 55824, + 55825, + 55826, + 55827, + 55828, + 55829, + 55830, + 55831, + 55832, + 55833, + 55834, + 55835, + 55836, + 55837, + 55838, + 55839, + 55840, + 55841, + 55842, + 55843, + 55844, + 55845, + 55846, + 55847, + 55848, + 55849, + 55850, + 55851, + 55852, + 55853, + 55854, + 55855, + 55856, + 55857, + 55858, + 55859, + 55860, + 55861, + 55862, + 55863, + 55864, + 55865, + 55866, + 55867, + 55868, + 55869, + 55870, + 55871, + 55872, + 55873, + 55874, + 55875, + 55876, + 55877, + 55878, + 55879, + 55880, + 55881, + 55882, + 55883, + 55884, + 55885, + 55886, + 55887, + 55888, + 55889, + 55890, + 55891, + 55892, + 55893, + 55894, + 55895, + 55896, + 55897, + 55898, + 55899, + 55900, + 55901, + 55902, + 55903, + 55904, + 55905, + 55906, + 55907, + 55908, + 55909, + 55910, + 55911, + 55912, + 55913, + 55914, + 55915, + 55916, + 55917, + 55918, + 55919, + 55920, + 55921, + 55922, + 55923, + 55924, + 55925, + 55926, + 55927, + 55928, + 55929, + 55930, + 55931, + 55932, + 55933, + 55934, + 55935, + 55936, + 55937, + 55938, + 55939, + 55940, + 55941, + 55942, + 55943, + 55944, + 55945, + 55946, + 55947, + 55948, + 55949, + 55950, + 55951, + 55952, + 55953, + 55954, + 55955, + 55956, + 55957, + 55958, + 55959, + 55960, + 55961, + 55962, + 55963, + 55964, + 55965, + 55966, + 55967, + 55968, + 55969, + 55970, + 55971, + 55972, + 55973, + 55974, + 55975, + 55976, + 55977, + 55978, + 55979, + 55980, + 55981, + 55982, + 55983, + 55984, + 55985, + 55986, + 55987, + 55988, + 55989, + 55990, + 55991, + 55992, + 55993, + 55994, + 55995, + 55996, + 55997, + 55998, + 55999, + 56000, + 56001, + 56002, + 56003, + 56004, + 56005, + 56006, + 56007, + 56008, + 56009, + 56010, + 56011, + 56012, + 56013, + 56014, + 56015, + 56016, + 56017, + 56018, + 56019, + 56020, + 56021, + 56022, + 56023, + 56024, + 56025, + 56026, + 56027, + 56028, + 56029, + 56030, + 56031, + 56032, + 56033, + 56034, + 56035, + 56036, + 56037, + 56038, + 56039, + 56040, + 56041, + 56042, + 56043, + 56044, + 56045, + 56046, + 56047, + 56048, + 56049, + 56050, + 56051, + 56052, + 56053, + 56054, + 56055, + 56056, + 56057, + 56058, + 56059, + 56060, + 56061, + 56062, + 56063, + 56064, + 56065, + 56066, + 56067, + 56068, + 56069, + 56070, + 56071, + 56072, + 56073, + 56074, + 56075, + 56076, + 56077, + 56078, + 56079, + 56080, + 56081, + 56082, + 56083, + 56084, + 56085, + 56086, + 56087, + 56088, + 56089, + 56090, + 56091, + 56092, + 56093, + 56094, + 56095, + 56096, + 56097, + 56098, + 56099, + 56100, + 56101, + 56102, + 56103, + 56104, + 56105, + 56106, + 56107, + 56108, + 56109, + 56110, + 56111, + 56112, + 56113, + 56114, + 56115, + 56116, + 56117, + 56118, + 56119, + 56120, + 56121, + 56122, + 56123, + 56124, + 56125, + 56126, + 56127, + 56128, + 56129, + 56130, + 56131, + 56132, + 56133, + 56134, + 56135, + 56136, + 56137, + 56138, + 56139, + 56140, + 56141, + 56142, + 56143, + 56144, + 56145, + 56146, + 56147, + 56148, + 56149, + 56150, + 56151, + 56152, + 56153, + 56154, + 56155, + 56156, + 56157, + 56158, + 56159, + 56160, + 56161, + 56162, + 56163, + 56164, + 56165, + 56166, + 56167, + 56168, + 56169, + 56170, + 56171, + 56172, + 56173, + 56174, + 56175, + 56176, + 56177, + 56178, + 56179, + 56180, + 56181, + 56182, + 56183, + 56184, + 56185, + 56186, + 56187, + 56188, + 56189, + 56190, + 56191, + 56192, + 56193, + 56194, + 56195, + 56196, + 56197, + 56198, + 56199, + 56200, + 56201, + 56202, + 56203, + 56204, + 56205, + 56206, + 56207, + 56208, + 56209, + 56210, + 56211, + 56212, + 56213, + 56214, + 56215, + 56216, + 56217, + 56218, + 56219, + 56220, + 56221, + 56222, + 56223, + 56224, + 56225, + 56226, + 56227, + 56228, + 56229, + 56230, + 56231, + 56232, + 56233, + 56234, + 56235, + 56236, + 56237, + 56238, + 56239, + 56240, + 56241, + 56242, + 56243, + 56244, + 56245, + 56246, + 56247, + 56248, + 56249, + 56250, + 56251, + 56252, + 56253, + 56254, + 56255, + 56256, + 56257, + 56258, + 56259, + 56260, + 56261, + 56262, + 56263, + 56264, + 56265, + 56266, + 56267, + 56268, + 56269, + 56270, + 56271, + 56272, + 56273, + 56274, + 56275, + 56276, + 56277, + 56278, + 56279, + 56280, + 56281, + 56282, + 56283, + 56284, + 56285, + 56286, + 56287, + 56288, + 56289, + 56290, + 56291, + 56292, + 56293, + 56294, + 56295, + 56296, + 56297, + 56298, + 56299, + 56300, + 56301, + 56302, + 56303, + 56304, + 56305, + 56306, + 56307, + 56308, + 56309, + 56310, + 56311, + 56312, + 56313, + 56314, + 56315, + 56316, + 56317, + 56318, + 56319, + 56320, + 56321, + 56322, + 56323, + 56324, + 56325, + 56326, + 56327, + 56328, + 56329, + 56330, + 56331, + 56332, + 56333, + 56334, + 56335, + 56336, + 56337, + 56338, + 56339, + 56340, + 56341, + 56342, + 56343, + 56344, + 56345, + 56346, + 56347, + 56348, + 56349, + 56350, + 56351, + 56352, + 56353, + 56354, + 56355, + 56356, + 56357, + 56358, + 56359, + 56360, + 56361, + 56362, + 56363, + 56364, + 56365, + 56366, + 56367, + 56368, + 56369, + 56370, + 56371, + 56372, + 56373, + 56374, + 56375, + 56376, + 56377, + 56378, + 56379, + 56380, + 56381, + 56382, + 56383, + 56384, + 56385, + 56386, + 56387, + 56388, + 56389, + 56390, + 56391, + 56392, + 56393, + 56394, + 56395, + 56396, + 56397, + 56398, + 56399, + 56400, + 56401, + 56402, + 56403, + 56404, + 56405, + 56406, + 56407, + 56408, + 56409, + 56410, + 56411, + 56412, + 56413, + 56414, + 56415, + 56416, + 56417, + 56418, + 56419, + 56420, + 56421, + 56422, + 56423, + 56424, + 56425, + 56426, + 56427, + 56428, + 56429, + 56430, + 56431, + 56432, + 56433, + 56434, + 56435, + 56436, + 56437, + 56438, + 56439, + 56440, + 56441, + 56442, + 56443, + 56444, + 56445, + 56446, + 56447, + 56448, + 56449, + 56450, + 56451, + 56452, + 56453, + 56454, + 56455, + 56456, + 56457, + 56458, + 56459, + 56460, + 56461, + 56462, + 56463, + 56464, + 56465, + 56466, + 56467, + 56468, + 56469, + 56470, + 56471, + 56472, + 56473, + 56474, + 56475, + 56476, + 56477, + 56478, + 56479, + 56480, + 56481, + 56482, + 56483, + 56484, + 56485, + 56486, + 56487, + 56488, + 56489, + 56490, + 56491, + 56492, + 56493, + 56494, + 56495, + 56496, + 56497, + 56498, + 56499, + 56500, + 56501, + 56502, + 56503, + 56504, + 56505, + 56506, + 56507, + 56508, + 56509, + 56510, + 56511, + 56512, + 56513, + 56514, + 56515, + 56516, + 56517, + 56518, + 56519, + 56520, + 56521, + 56522, + 56523, + 56524, + 56525, + 56526, + 56527, + 56528, + 56529, + 56530, + 56531, + 56532, + 56533, + 56534, + 56535, + 56536, + 56537, + 56538, + 56539, + 56540, + 56541, + 56542, + 56543, + 56544, + 56545, + 56546, + 56547, + 56548, + 56549, + 56550, + 56551, + 56552, + 56553, + 56554, + 56555, + 56556, + 56557, + 56558, + 56559, + 56560, + 56561, + 56562, + 56563, + 56564, + 56565, + 56566, + 56567, + 56568, + 56569, + 56570, + 56571, + 56572, + 56573, + 56574, + 56575, + 56576, + 56577, + 56578, + 56579, + 56580, + 56581, + 56582, + 56583, + 56584, + 56585, + 56586, + 56587, + 56588, + 56589, + 56590, + 56591, + 56592, + 56593, + 56594, + 56595, + 56596, + 56597, + 56598, + 56599, + 56600, + 56601, + 56602, + 56603, + 56604, + 56605, + 56606, + 56607, + 56608, + 56609, + 56610, + 56611, + 56612, + 56613, + 56614, + 56615, + 56616, + 56617, + 56618, + 56619, + 56620, + 56621, + 56622, + 56623, + 56624, + 56625, + 56626, + 56627, + 56628, + 56629, + 56630, + 56631, + 56632, + 56633, + 56634, + 56635, + 56636, + 56637, + 56638, + 56639, + 56640, + 56641, + 56642, + 56643, + 56644, + 56645, + 56646, + 56647, + 56648, + 56649, + 56650, + 56651, + 56652, + 56653, + 56654, + 56655, + 56656, + 56657, + 56658, + 56659, + 56660, + 56661, + 56662, + 56663, + 56664, + 56665, + 56666, + 56667, + 56668, + 56669, + 56670, + 56671, + 56672, + 56673, + 56674, + 56675, + 56676, + 56677, + 56678, + 56679, + 56680, + 56681, + 56682, + 56683, + 56684, + 56685, + 56686, + 56687, + 56688, + 56689, + 56690, + 56691, + 56692, + 56693, + 56694, + 56695, + 56696, + 56697, + 56698, + 56699, + 56700, + 56701, + 56702, + 56703, + 56704, + 56705, + 56706, + 56707, + 56708, + 56709, + 56710, + 56711, + 56712, + 56713, + 56714, + 56715, + 56716, + 56717, + 56718, + 56719, + 56720, + 56721, + 56722, + 56723, + 56724, + 56725, + 56726, + 56727, + 56728, + 56729, + 56730, + 56731, + 56732, + 56733, + 56734, + 56735, + 56736, + 56737, + 56738, + 56739, + 56740, + 56741, + 56742, + 56743, + 56744, + 56745, + 56746, + 56747, + 56748, + 56749, + 56750, + 56751, + 56752, + 56753, + 56754, + 56755, + 56756, + 56757, + 56758, + 56759, + 56760, + 56761, + 56762, + 56763, + 56764, + 56765, + 56766, + 56767, + 56768, + 56769, + 56770, + 56771, + 56772, + 56773, + 56774, + 56775, + 56776, + 56777, + 56778, + 56779, + 56780, + 56781, + 56782, + 56783, + 56784, + 56785, + 56786, + 56787, + 56788, + 56789, + 56790, + 56791, + 56792, + 56793, + 56794, + 56795, + 56796, + 56797, + 56798, + 56799, + 56800, + 56801, + 56802, + 56803, + 56804, + 56805, + 56806, + 56807, + 56808, + 56809, + 56810, + 56811, + 56812, + 56813, + 56814, + 56815, + 56816, + 56817, + 56818, + 56819, + 56820, + 56821, + 56822, + 56823, + 56824, + 56825, + 56826, + 56827, + 56828, + 56829, + 56830, + 56831, + 56832, + 56833, + 56834, + 56835, + 56836, + 56837, + 56838, + 56839, + 56840, + 56841, + 56842, + 56843, + 56844, + 56845, + 56846, + 56847, + 56848, + 56849, + 56850, + 56851, + 56852, + 56853, + 56854, + 56855, + 56856, + 56857, + 56858, + 56859, + 56860, + 56861, + 56862, + 56863, + 56864, + 56865, + 56866, + 56867, + 56868, + 56869, + 56870, + 56871, + 56872, + 56873, + 56874, + 56875, + 56876, + 56877, + 56878, + 56879, + 56880, + 56881, + 56882, + 56883, + 56884, + 56885, + 56886, + 56887, + 56888, + 56889, + 56890, + 56891, + 56892, + 56893, + 56894, + 56895, + 56896, + 56897, + 56898, + 56899, + 56900, + 56901, + 56902, + 56903, + 56904, + 56905, + 56906, + 56907, + 56908, + 56909, + 56910, + 56911, + 56912, + 56913, + 56914, + 56915, + 56916, + 56917, + 56918, + 56919, + 56920, + 56921, + 56922, + 56923, + 56924, + 56925, + 56926, + 56927, + 56928, + 56929, + 56930, + 56931, + 56932, + 56933, + 56934, + 56935, + 56936, + 56937, + 56938, + 56939, + 56940, + 56941, + 56942, + 56943, + 56944, + 56945, + 56946, + 56947, + 56948, + 56949, + 56950, + 56951, + 56952, + 56953, + 56954, + 56955, + 56956, + 56957, + 56958, + 56959, + 56960, + 56961, + 56962, + 56963, + 56964, + 56965, + 56966, + 56967, + 56968, + 56969, + 56970, + 56971, + 56972, + 56973, + 56974, + 56975, + 56976, + 56977, + 56978, + 56979, + 56980, + 56981, + 56982, + 56983, + 56984, + 56985, + 56986, + 56987, + 56988, + 56989, + 56990, + 56991, + 56992, + 56993, + 56994, + 56995, + 56996, + 56997, + 56998, + 56999, + 57000, + 57001, + 57002, + 57003, + 57004, + 57005, + 57006, + 57007, + 57008, + 57009, + 57010, + 57011, + 57012, + 57013, + 57014, + 57015, + 57016, + 57017, + 57018, + 57019, + 57020, + 57021, + 57022, + 57023, + 57024, + 57025, + 57026, + 57027, + 57028, + 57029, + 57030, + 57031, + 57032, + 57033, + 57034, + 57035, + 57036, + 57037, + 57038, + 57039, + 57040, + 57041, + 57042, + 57043, + 57044, + 57045, + 57046, + 57047, + 57048, + 57049, + 57050, + 57051, + 57052, + 57053, + 57054, + 57055, + 57056, + 57057, + 57058, + 57059, + 57060, + 57061, + 57062, + 57063, + 57064, + 57065, + 57066, + 57067, + 57068, + 57069, + 57070, + 57071, + 57072, + 57073, + 57074, + 57075, + 57076, + 57077, + 57078, + 57079, + 57080, + 57081, + 57082, + 57083, + 57084, + 57085, + 57086, + 57087, + 57088, + 57089, + 57090, + 57091, + 57092, + 57093, + 57094, + 57095, + 57096, + 57097, + 57098, + 57099, + 57100, + 57101, + 57102, + 57103, + 57104, + 57105, + 57106, + 57107, + 57108, + 57109, + 57110, + 57111, + 57112, + 57113, + 57114, + 57115, + 57116, + 57117, + 57118, + 57119, + 57120, + 57121, + 57122, + 57123, + 57124, + 57125, + 57126, + 57127, + 57128, + 57129, + 57130, + 57131, + 57132, + 57133, + 57134, + 57135, + 57136, + 57137, + 57138, + 57139, + 57140, + 57141, + 57142, + 57143, + 57144, + 57145, + 57146, + 57147, + 57148, + 57149, + 57150, + 57151, + 57152, + 57153, + 57154, + 57155, + 57156, + 57157, + 57158, + 57159, + 57160, + 57161, + 57162, + 57163, + 57164, + 57165, + 57166, + 57167, + 57168, + 57169, + 57170, + 57171, + 57172, + 57173, + 57174, + 57175, + 57176, + 57177, + 57178, + 57179, + 57180, + 57181, + 57182, + 57183, + 57184, + 57185, + 57186, + 57187, + 57188, + 57189, + 57190, + 57191, + 57192, + 57193, + 57194, + 57195, + 57196, + 57197, + 57198, + 57199, + 57200, + 57201, + 57202, + 57203, + 57204, + 57205, + 57206, + 57207, + 57208, + 57209, + 57210, + 57211, + 57212, + 57213, + 57214, + 57215, + 57216, + 57217, + 57218, + 57219, + 57220, + 57221, + 57222, + 57223, + 57224, + 57225, + 57226, + 57227, + 57228, + 57229, + 57230, + 57231, + 57232, + 57233, + 57234, + 57235, + 57236, + 57237, + 57238, + 57239, + 57240, + 57241, + 57242, + 57243, + 57244, + 57245, + 57246, + 57247, + 57248, + 57249, + 57250, + 57251, + 57252, + 57253, + 57254, + 57255, + 57256, + 57257, + 57258, + 57259, + 57260, + 57261, + 57262, + 57263, + 57264, + 57265, + 57266, + 57267, + 57268, + 57269, + 57270, + 57271, + 57272, + 57273, + 57274, + 57275, + 57276, + 57277, + 57278, + 57279, + 57280, + 57281, + 57282, + 57283, + 57284, + 57285, + 57286, + 57287, + 57288, + 57289, + 57290, + 57291, + 57292, + 57293, + 57294, + 57295, + 57296, + 57297, + 57298, + 57299, + 57300, + 57301, + 57302, + 57303, + 57304, + 57305, + 57306, + 57307, + 57308, + 57309, + 57310, + 57311, + 57312, + 57313, + 57314, + 57315, + 57316, + 57317, + 57318, + 57319, + 57320, + 57321, + 57322, + 57323, + 57324, + 57325, + 57326, + 57327, + 57328, + 57329, + 57330, + 57331, + 57332, + 57333, + 57334, + 57335, + 57336, + 57337, + 57338, + 57339, + 57340, + 57341, + 57342, + 57343, + 57344, + 57345, + 57346, + 57347, + 57348, + 57349, + 57350, + 57351, + 57352, + 57353, + 57354, + 57355, + 57356, + 57357, + 57358, + 57359, + 57360, + 57361, + 57362, + 57363, + 57364, + 57365, + 57366, + 57367, + 57368, + 57369, + 57370, + 57371, + 57372, + 57373, + 57374, + 57375, + 57376, + 57377, + 57378, + 57379, + 57380, + 57381, + 57382, + 57383, + 57384, + 57385, + 57386, + 57387, + 57388, + 57389, + 57390, + 57391, + 57392, + 57393, + 57394, + 57395, + 57396, + 57397, + 57398, + 57399, + 57400, + 57401, + 57402, + 57403, + 57404, + 57405, + 57406, + 57407, + 57408, + 57409, + 57410, + 57411, + 57412, + 57413, + 57414, + 57415, + 57416, + 57417, + 57418, + 57419, + 57420, + 57421, + 57422, + 57423, + 57424, + 57425, + 57426, + 57427, + 57428, + 57429, + 57430, + 57431, + 57432, + 57433, + 57434, + 57435, + 57436, + 57437, + 57438, + 57439, + 57440, + 57441, + 57442, + 57443, + 57444, + 57445, + 57446, + 57447, + 57448, + 57449, + 57450, + 57451, + 57452, + 57453, + 57454, + 57455, + 57456, + 57457, + 57458, + 57459, + 57460, + 57461, + 57462, + 57463, + 57464, + 57465, + 57466, + 57467, + 57468, + 57469, + 57470, + 57471, + 57472, + 57473, + 57474, + 57475, + 57476, + 57477, + 57478, + 57479, + 57480, + 57481, + 57482, + 57483, + 57484, + 57485, + 57486, + 57487, + 57488, + 57489, + 57490, + 57491, + 57492, + 57493, + 57494, + 57495, + 57496, + 57497, + 57498, + 57499, + 57500, + 57501, + 57502, + 57503, + 57504, + 57505, + 57506, + 57507, + 57508, + 57509, + 57510, + 57511, + 57512, + 57513, + 57514, + 57515, + 57516, + 57517, + 57518, + 57519, + 57520, + 57521, + 57522, + 57523, + 57524, + 57525, + 57526, + 57527, + 57528, + 57529, + 57530, + 57531, + 57532, + 57533, + 57534, + 57535, + 57536, + 57537, + 57538, + 57539, + 57540, + 57541, + 57542, + 57543, + 57544, + 57545, + 57546, + 57547, + 57548, + 57549, + 57550, + 57551, + 57552, + 57553, + 57554, + 57555, + 57556, + 57557, + 57558, + 57559, + 57560, + 57561, + 57562, + 57563, + 57564, + 57565, + 57566, + 57567, + 57568, + 57569, + 57570, + 57571, + 57572, + 57573, + 57574, + 57575, + 57576, + 57577, + 57578, + 57579, + 57580, + 57581, + 57582, + 57583, + 57584, + 57585, + 57586, + 57587, + 57588, + 57589, + 57590, + 57591, + 57592, + 57593, + 57594, + 57595, + 57596, + 57597, + 57598, + 57599, + 57600, + 57601, + 57602, + 57603, + 57604, + 57605, + 57606, + 57607, + 57608, + 57609, + 57610, + 57611, + 57612, + 57613, + 57614, + 57615, + 57616, + 57617, + 57618, + 57619, + 57620, + 57621, + 57622, + 57623, + 57624, + 57625, + 57626, + 57627, + 57628, + 57629, + 57630, + 57631, + 57632, + 57633, + 57634, + 57635, + 57636, + 57637, + 57638, + 57639, + 57640, + 57641, + 57642, + 57643, + 57644, + 57645, + 57646, + 57647, + 57648, + 57649, + 57650, + 57651, + 57652, + 57653, + 57654, + 57655, + 57656, + 57657, + 57658, + 57659, + 57660, + 57661, + 57662, + 57663, + 57664, + 57665, + 57666, + 57667, + 57668, + 57669, + 57670, + 57671, + 57672, + 57673, + 57674, + 57675, + 57676, + 57677, + 57678, + 57679, + 57680, + 57681, + 57682, + 57683, + 57684, + 57685, + 57686, + 57687, + 57688, + 57689, + 57690, + 57691, + 57692, + 57693, + 57694, + 57695, + 57696, + 57697, + 57698, + 57699, + 57700, + 57701, + 57702, + 57703, + 57704, + 57705, + 57706, + 57707, + 57708, + 57709, + 57710, + 57711, + 57712, + 57713, + 57714, + 57715, + 57716, + 57717, + 57718, + 57719, + 57720, + 57721, + 57722, + 57723, + 57724, + 57725, + 57726, + 57727, + 57728, + 57729, + 57730, + 57731, + 57732, + 57733, + 57734, + 57735, + 57736, + 57737, + 57738, + 57739, + 57740, + 57741, + 57742, + 57743, + 57744, + 57745, + 57746, + 57747, + 57748, + 57749, + 57750, + 57751, + 57752, + 57753, + 57754, + 57755, + 57756, + 57757, + 57758, + 57759, + 57760, + 57761, + 57762, + 57763, + 57764, + 57765, + 57766, + 57767, + 57768, + 57769, + 57770, + 57771, + 57772, + 57773, + 57774, + 57775, + 57776, + 57777, + 57778, + 57779, + 57780, + 57781, + 57782, + 57783, + 57784, + 57785, + 57786, + 57787, + 57788, + 57789, + 57790, + 57791, + 57792, + 57793, + 57794, + 57795, + 57796, + 57797, + 57798, + 57799, + 57800, + 57801, + 57802, + 57803, + 57804, + 57805, + 57806, + 57807, + 57808, + 57809, + 57810, + 57811, + 57812, + 57813, + 57814, + 57815, + 57816, + 57817, + 57818, + 57819, + 57820, + 57821, + 57822, + 57823, + 57824, + 57825, + 57826, + 57827, + 57828, + 57829, + 57830, + 57831, + 57832, + 57833, + 57834, + 57835, + 57836, + 57837, + 57838, + 57839, + 57840, + 57841, + 57842, + 57843, + 57844, + 57845, + 57846, + 57847, + 57848, + 57849, + 57850, + 57851, + 57852, + 57853, + 57854, + 57855, + 57856, + 57857, + 57858, + 57859, + 57860, + 57861, + 57862, + 57863, + 57864, + 57865, + 57866, + 57867, + 57868, + 57869, + 57870, + 57871, + 57872, + 57873, + 57874, + 57875, + 57876, + 57877, + 57878, + 57879, + 57880, + 57881, + 57882, + 57883, + 57884, + 57885, + 57886, + 57887, + 57888, + 57889, + 57890, + 57891, + 57892, + 57893, + 57894, + 57895, + 57896, + 57897, + 57898, + 57899, + 57900, + 57901, + 57902, + 57903, + 57904, + 57905, + 57906, + 57907, + 57908, + 57909, + 57910, + 57911, + 57912, + 57913, + 57914, + 57915, + 57916, + 57917, + 57918, + 57919, + 57920, + 57921, + 57922, + 57923, + 57924, + 57925, + 57926, + 57927, + 57928, + 57929, + 57930, + 57931, + 57932, + 57933, + 57934, + 57935, + 57936, + 57937, + 57938, + 57939, + 57940, + 57941, + 57942, + 57943, + 57944, + 57945, + 57946, + 57947, + 57948, + 57949, + 57950, + 57951, + 57952, + 57953, + 57954, + 57955, + 57956, + 57957, + 57958, + 57959, + 57960, + 57961, + 57962, + 57963, + 57964, + 57965, + 57966, + 57967, + 57968, + 57969, + 57970, + 57971, + 57972, + 57973, + 57974, + 57975, + 57976, + 57977, + 57978, + 57979, + 57980, + 57981, + 57982, + 57983, + 57984, + 57985, + 57986, + 57987, + 57988, + 57989, + 57990, + 57991, + 57992, + 57993, + 57994, + 57995, + 57996, + 57997, + 57998, + 57999, + 58000, + 58001, + 58002, + 58003, + 58004, + 58005, + 58006, + 58007, + 58008, + 58009, + 58010, + 58011, + 58012, + 58013, + 58014, + 58015, + 58016, + 58017, + 58018, + 58019, + 58020, + 58021, + 58022, + 58023, + 58024, + 58025, + 58026, + 58027, + 58028, + 58029, + 58030, + 58031, + 58032, + 58033, + 58034, + 58035, + 58036, + 58037, + 58038, + 58039, + 58040, + 58041, + 58042, + 58043, + 58044, + 58045, + 58046, + 58047, + 58048, + 58049, + 58050, + 58051, + 58052, + 58053, + 58054, + 58055, + 58056, + 58057, + 58058, + 58059, + 58060, + 58061, + 58062, + 58063, + 58064, + 58065, + 58066, + 58067, + 58068, + 58069, + 58070, + 58071, + 58072, + 58073, + 58074, + 58075, + 58076, + 58077, + 58078, + 58079, + 58080, + 58081, + 58082, + 58083, + 58084, + 58085, + 58086, + 58087, + 58088, + 58089, + 58090, + 58091, + 58092, + 58093, + 58094, + 58095, + 58096, + 58097, + 58098, + 58099, + 58100, + 58101, + 58102, + 58103, + 58104, + 58105, + 58106, + 58107, + 58108, + 58109, + 58110, + 58111, + 58112, + 58113, + 58114, + 58115, + 58116, + 58117, + 58118, + 58119, + 58120, + 58121, + 58122, + 58123, + 58124, + 58125, + 58126, + 58127, + 58128, + 58129, + 58130, + 58131, + 58132, + 58133, + 58134, + 58135, + 58136, + 58137, + 58138, + 58139, + 58140, + 58141, + 58142, + 58143, + 58144, + 58145, + 58146, + 58147, + 58148, + 58149, + 58150, + 58151, + 58152, + 58153, + 58154, + 58155, + 58156, + 58157, + 58158, + 58159, + 58160, + 58161, + 58162, + 58163, + 58164, + 58165, + 58166, + 58167, + 58168, + 58169, + 58170, + 58171, + 58172, + 58173, + 58174, + 58175, + 58176, + 58177, + 58178, + 58179, + 58180, + 58181, + 58182, + 58183, + 58184, + 58185, + 58186, + 58187, + 58188, + 58189, + 58190, + 58191, + 58192, + 58193, + 58194, + 58195, + 58196, + 58197, + 58198, + 58199, + 58200, + 58201, + 58202, + 58203, + 58204, + 58205, + 58206, + 58207, + 58208, + 58209, + 58210, + 58211, + 58212, + 58213, + 58214, + 58215, + 58216, + 58217, + 58218, + 58219, + 58220, + 58221, + 58222, + 58223, + 58224, + 58225, + 58226, + 58227, + 58228, + 58229, + 58230, + 58231, + 58232, + 58233, + 58234, + 58235, + 58236, + 58237, + 58238, + 58239, + 58240, + 58241, + 58242, + 58243, + 58244, + 58245, + 58246, + 58247, + 58248, + 58249, + 58250, + 58251, + 58252, + 58253, + 58254, + 58255, + 58256, + 58257, + 58258, + 58259, + 58260, + 58261, + 58262, + 58263, + 58264, + 58265, + 58266, + 58267, + 58268, + 58269, + 58270, + 58271, + 58272, + 58273, + 58274, + 58275, + 58276, + 58277, + 58278, + 58279, + 58280, + 58281, + 58282, + 58283, + 58284, + 58285, + 58286, + 58287, + 58288, + 58289, + 58290, + 58291, + 58292, + 58293, + 58294, + 58295, + 58296, + 58297, + 58298, + 58299, + 58300, + 58301, + 58302, + 58303, + 58304, + 58305, + 58306, + 58307, + 58308, + 58309, + 58310, + 58311, + 58312, + 58313, + 58314, + 58315, + 58316, + 58317, + 58318, + 58319, + 58320, + 58321, + 58322, + 58323, + 58324, + 58325, + 58326, + 58327, + 58328, + 58329, + 58330, + 58331, + 58332, + 58333, + 58334, + 58335, + 58336, + 58337, + 58338, + 58339, + 58340, + 58341, + 58342, + 58343, + 58344, + 58345, + 58346, + 58347, + 58348, + 58349, + 58350, + 58351, + 58352, + 58353, + 58354, + 58355, + 58356, + 58357, + 58358, + 58359, + 58360, + 58361, + 58362, + 58363, + 58364, + 58365, + 58366, + 58367, + 58368, + 58369, + 58370, + 58371, + 58372, + 58373, + 58374, + 58375, + 58376, + 58377, + 58378, + 58379, + 58380, + 58381, + 58382, + 58383, + 58384, + 58385, + 58386, + 58387, + 58388, + 58389, + 58390, + 58391, + 58392, + 58393, + 58394, + 58395, + 58396, + 58397, + 58398, + 58399, + 58400, + 58401, + 58402, + 58403, + 58404, + 58405, + 58406, + 58407, + 58408, + 58409, + 58410, + 58411, + 58412, + 58413, + 58414, + 58415, + 58416, + 58417, + 58418, + 58419, + 58420, + 58421, + 58422, + 58423, + 58424, + 58425, + 58426, + 58427, + 58428, + 58429, + 58430, + 58431, + 58432, + 58433, + 58434, + 58435, + 58436, + 58437, + 58438, + 58439, + 58440, + 58441, + 58442, + 58443, + 58444, + 58445, + 58446, + 58447, + 58448, + 58449, + 58450, + 58451, + 58452, + 58453, + 58454, + 58455, + 58456, + 58457, + 58458, + 58459, + 58460, + 58461, + 58462, + 58463, + 58464, + 58465, + 58466, + 58467, + 58468, + 58469, + 58470, + 58471, + 58472, + 58473, + 58474, + 58475, + 58476, + 58477, + 58478, + 58479, + 58480, + 58481, + 58482, + 58483, + 58484, + 58485, + 58486, + 58487, + 58488, + 58489, + 58490, + 58491, + 58492, + 58493, + 58494, + 58495, + 58496, + 58497, + 58498, + 58499, + 58500, + 58501, + 58502, + 58503, + 58504, + 58505, + 58506, + 58507, + 58508, + 58509, + 58510, + 58511, + 58512, + 58513, + 58514, + 58515, + 58516, + 58517, + 58518, + 58519, + 58520, + 58521, + 58522, + 58523, + 58524, + 58525, + 58526, + 58527, + 58528, + 58529, + 58530, + 58531, + 58532, + 58533, + 58534, + 58535, + 58536, + 58537, + 58538, + 58539, + 58540, + 58541, + 58542, + 58543, + 58544, + 58545, + 58546, + 58547, + 58548, + 58549, + 58550, + 58551, + 58552, + 58553, + 58554, + 58555, + 58556, + 58557, + 58558, + 58559, + 58560, + 58561, + 58562, + 58563, + 58564, + 58565, + 58566, + 58567, + 58568, + 58569, + 58570, + 58571, + 58572, + 58573, + 58574, + 58575, + 58576, + 58577, + 58578, + 58579, + 58580, + 58581, + 58582, + 58583, + 58584, + 58585, + 58586, + 58587, + 58588, + 58589, + 58590, + 58591, + 58592, + 58593, + 58594, + 58595, + 58596, + 58597, + 58598, + 58599, + 58600, + 58601, + 58602, + 58603, + 58604, + 58605, + 58606, + 58607, + 58608, + 58609, + 58610, + 58611, + 58612, + 58613, + 58614, + 58615, + 58616, + 58617, + 58618, + 58619, + 58620, + 58621, + 58622, + 58623, + 58624, + 58625, + 58626, + 58627, + 58628, + 58629, + 58630, + 58631, + 58632, + 58633, + 58634, + 58635, + 58636, + 58637, + 58638, + 58639, + 58640, + 58641, + 58642, + 58643, + 58644, + 58645, + 58646, + 58647, + 58648, + 58649, + 58650, + 58651, + 58652, + 58653, + 58654, + 58655, + 58656, + 58657, + 58658, + 58659, + 58660, + 58661, + 58662, + 58663, + 58664, + 58665, + 58666, + 58667, + 58668, + 58669, + 58670, + 58671, + 58672, + 58673, + 58674, + 58675, + 58676, + 58677, + 58678, + 58679, + 58680, + 58681, + 58682, + 58683, + 58684, + 58685, + 58686, + 58687, + 58688, + 58689, + 58690, + 58691, + 58692, + 58693, + 58694, + 58695, + 58696, + 58697, + 58698, + 58699, + 58700, + 58701, + 58702, + 58703, + 58704, + 58705, + 58706, + 58707, + 58708, + 58709, + 58710, + 58711, + 58712, + 58713, + 58714, + 58715, + 58716, + 58717, + 58718, + 58719, + 58720, + 58721, + 58722, + 58723, + 58724, + 58725, + 58726, + 58727, + 58728, + 58729, + 58730, + 58731, + 58732, + 58733, + 58734, + 58735, + 58736, + 58737, + 58738, + 58739, + 58740, + 58741, + 58742, + 58743, + 58744, + 58745, + 58746, + 58747, + 58748, + 58749, + 58750, + 58751, + 58752, + 58753, + 58754, + 58755, + 58756, + 58757, + 58758, + 58759, + 58760, + 58761, + 58762, + 58763, + 58764, + 58765, + 58766, + 58767, + 58768, + 58769, + 58770, + 58771, + 58772, + 58773, + 58774, + 58775, + 58776, + 58777, + 58778, + 58779, + 58780, + 58781, + 58782, + 58783, + 58784, + 58785, + 58786, + 58787, + 58788, + 58789, + 58790, + 58791, + 58792, + 58793, + 58794, + 58795, + 58796, + 58797, + 58798, + 58799, + 58800, + 58801, + 58802, + 58803, + 58804, + 58805, + 58806, + 58807, + 58808, + 58809, + 58810, + 58811, + 58812, + 58813, + 58814, + 58815, + 58816, + 58817, + 58818, + 58819, + 58820, + 58821, + 58822, + 58823, + 58824, + 58825, + 58826, + 58827, + 58828, + 58829, + 58830, + 58831, + 58832, + 58833, + 58834, + 58835, + 58836, + 58837, + 58838, + 58839, + 58840, + 58841, + 58842, + 58843, + 58844, + 58845, + 58846, + 58847, + 58848, + 58849, + 58850, + 58851, + 58852, + 58853, + 58854, + 58855, + 58856, + 58857, + 58858, + 58859, + 58860, + 58861, + 58862, + 58863, + 58864, + 58865, + 58866, + 58867, + 58868, + 58869, + 58870, + 58871, + 58872, + 58873, + 58874, + 58875, + 58876, + 58877, + 58878, + 58879, + 58880, + 58881, + 58882, + 58883, + 58884, + 58885, + 58886, + 58887, + 58888, + 58889, + 58890, + 58891, + 58892, + 58893, + 58894, + 58895, + 58896, + 58897, + 58898, + 58899, + 58900, + 58901, + 58902, + 58903, + 58904, + 58905, + 58906, + 58907, + 58908, + 58909, + 58910, + 58911, + 58912, + 58913, + 58914, + 58915, + 58916, + 58917, + 58918, + 58919, + 58920, + 58921, + 58922, + 58923, + 58924, + 58925, + 58926, + 58927, + 58928, + 58929, + 58930, + 58931, + 58932, + 58933, + 58934, + 58935, + 58936, + 58937, + 58938, + 58939, + 58940, + 58941, + 58942, + 58943, + 58944, + 58945, + 58946, + 58947, + 58948, + 58949, + 58950, + 58951, + 58952, + 58953, + 58954, + 58955, + 58956, + 58957, + 58958, + 58959, + 58960, + 58961, + 58962, + 58963, + 58964, + 58965, + 58966, + 58967, + 58968, + 58969, + 58970, + 58971, + 58972, + 58973, + 58974, + 58975, + 58976, + 58977, + 58978, + 58979, + 58980, + 58981, + 58982, + 58983, + 58984, + 58985, + 58986, + 58987, + 58988, + 58989, + 58990, + 58991, + 58992, + 58993, + 58994, + 58995, + 58996, + 58997, + 58998, + 58999, + 59000, + 59001, + 59002, + 59003, + 59004, + 59005, + 59006, + 59007, + 59008, + 59009, + 59010, + 59011, + 59012, + 59013, + 59014, + 59015, + 59016, + 59017, + 59018, + 59019, + 59020, + 59021, + 59022, + 59023, + 59024, + 59025, + 59026, + 59027, + 59028, + 59029, + 59030, + 59031, + 59032, + 59033, + 59034, + 59035, + 59036, + 59037, + 59038, + 59039, + 59040, + 59041, + 59042, + 59043, + 59044, + 59045, + 59046, + 59047, + 59048, + 59049, + 59050, + 59051, + 59052, + 59053, + 59054, + 59055, + 59056, + 59057, + 59058, + 59059, + 59060, + 59061, + 59062, + 59063, + 59064, + 59065, + 59066, + 59067, + 59068, + 59069, + 59070, + 59071, + 59072, + 59073, + 59074, + 59075, + 59076, + 59077, + 59078, + 59079, + 59080, + 59081, + 59082, + 59083, + 59084, + 59085, + 59086, + 59087, + 59088, + 59089, + 59090, + 59091, + 59092, + 59093, + 59094, + 59095, + 59096, + 59097, + 59098, + 59099, + 59100, + 59101, + 59102, + 59103, + 59104, + 59105, + 59106, + 59107, + 59108, + 59109, + 59110, + 59111, + 59112, + 59113, + 59114, + 59115, + 59116, + 59117, + 59118, + 59119, + 59120, + 59121, + 59122, + 59123, + 59124, + 59125, + 59126, + 59127, + 59128, + 59129, + 59130, + 59131, + 59132, + 59133, + 59134, + 59135, + 59136, + 59137, + 59138, + 59139, + 59140, + 59141, + 59142, + 59143, + 59144, + 59145, + 59146, + 59147, + 59148, + 59149, + 59150, + 59151, + 59152, + 59153, + 59154, + 59155, + 59156, + 59157, + 59158, + 59159, + 59160, + 59161, + 59162, + 59163, + 59164, + 59165, + 59166, + 59167, + 59168, + 59169, + 59170, + 59171, + 59172, + 59173, + 59174, + 59175, + 59176, + 59177, + 59178, + 59179, + 59180, + 59181, + 59182, + 59183, + 59184, + 59185, + 59186, + 59187, + 59188, + 59189, + 59190, + 59191, + 59192, + 59193, + 59194, + 59195, + 59196, + 59197, + 59198, + 59199, + 59200, + 59201, + 59202, + 59203, + 59204, + 59205, + 59206, + 59207, + 59208, + 59209, + 59210, + 59211, + 59212, + 59213, + 59214, + 59215, + 59216, + 59217, + 59218, + 59219, + 59220, + 59221, + 59222, + 59223, + 59224, + 59225, + 59226, + 59227, + 59228, + 59229, + 59230, + 59231, + 59232, + 59233, + 59234, + 59235, + 59236, + 59237, + 59238, + 59239, + 59240, + 59241, + 59242, + 59243, + 59244, + 59245, + 59246, + 59247, + 59248, + 59249, + 59250, + 59251, + 59252, + 59253, + 59254, + 59255, + 59256, + 59257, + 59258, + 59259, + 59260, + 59261, + 59262, + 59263, + 59264, + 59265, + 59266, + 59267, + 59268, + 59269, + 59270, + 59271, + 59272, + 59273, + 59274, + 59275, + 59276, + 59277, + 59278, + 59279, + 59280, + 59281, + 59282, + 59283, + 59284, + 59285, + 59286, + 59287, + 59288, + 59289, + 59290, + 59291, + 59292, + 59293, + 59294, + 59295, + 59296, + 59297, + 59298, + 59299, + 59300, + 59301, + 59302, + 59303, + 59304, + 59305, + 59306, + 59307, + 59308, + 59309, + 59310, + 59311, + 59312, + 59313, + 59314, + 59315, + 59316, + 59317, + 59318, + 59319, + 59320, + 59321, + 59322, + 59323, + 59324, + 59325, + 59326, + 59327, + 59328, + 59329, + 59330, + 59331, + 59332, + 59333, + 59334, + 59335, + 59336, + 59337, + 59338, + 59339, + 59340, + 59341, + 59342, + 59343, + 59344, + 59345, + 59346, + 59347, + 59348, + 59349, + 59350, + 59351, + 59352, + 59353, + 59354, + 59355, + 59356, + 59357, + 59358, + 59359, + 59360, + 59361, + 59362, + 59363, + 59364, + 59365, + 59366, + 59367, + 59368, + 59369, + 59370, + 59371, + 59372, + 59373, + 59374, + 59375, + 59376, + 59377, + 59378, + 59379, + 59380, + 59381, + 59382, + 59383, + 59384, + 59385, + 59386, + 59387, + 59388, + 59389, + 59390, + 59391, + 59392, + 59393, + 59394, + 59395, + 59396, + 59397, + 59398, + 59399, + 59400, + 59401, + 59402, + 59403, + 59404, + 59405, + 59406, + 59407, + 59408, + 59409, + 59410, + 59411, + 59412, + 59413, + 59414, + 59415, + 59416, + 59417, + 59418, + 59419, + 59420, + 59421, + 59422, + 59423, + 59424, + 59425, + 59426, + 59427, + 59428, + 59429, + 59430, + 59431, + 59432, + 59433, + 59434, + 59435, + 59436, + 59437, + 59438, + 59439, + 59440, + 59441, + 59442, + 59443, + 59444, + 59445, + 59446, + 59447, + 59448, + 59449, + 59450, + 59451, + 59452, + 59453, + 59454, + 59455, + 59456, + 59457, + 59458, + 59459, + 59460, + 59461, + 59462, + 59463, + 59464, + 59465, + 59466, + 59467, + 59468, + 59469, + 59470, + 59471, + 59472, + 59473, + 59474, + 59475, + 59476, + 59477, + 59478, + 59479, + 59480, + 59481, + 59482, + 59483, + 59484, + 59485, + 59486, + 59487, + 59488, + 59489, + 59490, + 59491, + 59492, + 59493, + 59494, + 59495, + 59496, + 59497, + 59498, + 59499, + 59500, + 59501, + 59502, + 59503, + 59504, + 59505, + 59506, + 59507, + 59508, + 59509, + 59510, + 59511, + 59512, + 59513, + 59514, + 59515, + 59516, + 59517, + 59518, + 59519, + 59520, + 59521, + 59522, + 59523, + 59524, + 59525, + 59526, + 59527, + 59528, + 59529, + 59530, + 59531, + 59532, + 59533, + 59534, + 59535, + 59536, + 59537, + 59538, + 59539, + 59540, + 59541, + 59542, + 59543, + 59544, + 59545, + 59546, + 59547, + 59548, + 59549, + 59550, + 59551, + 59552, + 59553, + 59554, + 59555, + 59556, + 59557, + 59558, + 59559, + 59560, + 59561, + 59562, + 59563, + 59564, + 59565, + 59566, + 59567, + 59568, + 59569, + 59570, + 59571, + 59572, + 59573, + 59574, + 59575, + 59576, + 59577, + 59578, + 59579, + 59580, + 59581, + 59582, + 59583, + 59584, + 59585, + 59586, + 59587, + 59588, + 59589, + 59590, + 59591, + 59592, + 59593, + 59594, + 59595, + 59596, + 59597, + 59598, + 59599, + 59600, + 59601, + 59602, + 59603, + 59604, + 59605, + 59606, + 59607, + 59608, + 59609, + 59610, + 59611, + 59612, + 59613, + 59614, + 59615, + 59616, + 59617, + 59618, + 59619, + 59620, + 59621, + 59622, + 59623, + 59624, + 59625, + 59626, + 59627, + 59628, + 59629, + 59630, + 59631, + 59632, + 59633, + 59634, + 59635, + 59636, + 59637, + 59638, + 59639, + 59640, + 59641, + 59642, + 59643, + 59644, + 59645, + 59646, + 59647, + 59648, + 59649, + 59650, + 59651, + 59652, + 59653, + 59654, + 59655, + 59656, + 59657, + 59658, + 59659, + 59660, + 59661, + 59662, + 59663, + 59664, + 59665, + 59666, + 59667, + 59668, + 59669, + 59670, + 59671, + 59672, + 59673, + 59674, + 59675, + 59676, + 59677, + 59678, + 59679, + 59680, + 59681, + 59682, + 59683, + 59684, + 59685, + 59686, + 59687, + 59688, + 59689, + 59690, + 59691, + 59692, + 59693, + 59694, + 59695, + 59696, + 59697, + 59698, + 59699, + 59700, + 59701, + 59702, + 59703, + 59704, + 59705, + 59706, + 59707, + 59708, + 59709, + 59710, + 59711, + 59712, + 59713, + 59714, + 59715, + 59716, + 59717, + 59718, + 59719, + 59720, + 59721, + 59722, + 59723, + 59724, + 59725, + 59726, + 59727, + 59728, + 59729, + 59730, + 59731, + 59732, + 59733, + 59734, + 59735, + 59736, + 59737, + 59738, + 59739, + 59740, + 59741, + 59742, + 59743, + 59744, + 59745, + 59746, + 59747, + 59748, + 59749, + 59750, + 59751, + 59752, + 59753, + 59754, + 59755, + 59756, + 59757, + 59758, + 59759, + 59760, + 59761, + 59762, + 59763, + 59764, + 59765, + 59766, + 59767, + 59768, + 59769, + 59770, + 59771, + 59772, + 59773, + 59774, + 59775, + 59776, + 59777, + 59778, + 59779, + 59780, + 59781, + 59782, + 59783, + 59784, + 59785, + 59786, + 59787, + 59788, + 59789, + 59790, + 59791, + 59792, + 59793, + 59794, + 59795, + 59796, + 59797, + 59798, + 59799, + 59800, + 59801, + 59802, + 59803, + 59804, + 59805, + 59806, + 59807, + 59808, + 59809, + 59810, + 59811, + 59812, + 59813, + 59814, + 59815, + 59816, + 59817, + 59818, + 59819, + 59820, + 59821, + 59822, + 59823, + 59824, + 59825, + 59826, + 59827, + 59828, + 59829, + 59830, + 59831, + 59832, + 59833, + 59834, + 59835, + 59836, + 59837, + 59838, + 59839, + 59840, + 59841, + 59842, + 59843, + 59844, + 59845, + 59846, + 59847, + 59848, + 59849, + 59850, + 59851, + 59852, + 59853, + 59854, + 59855, + 59856, + 59857, + 59858, + 59859, + 59860, + 59861, + 59862, + 59863, + 59864, + 59865, + 59866, + 59867, + 59868, + 59869, + 59870, + 59871, + 59872, + 59873, + 59874, + 59875, + 59876, + 59877, + 59878, + 59879, + 59880, + 59881, + 59882, + 59883, + 59884, + 59885, + 59886, + 59887, + 59888, + 59889, + 59890, + 59891, + 59892, + 59893, + 59894, + 59895, + 59896, + 59897, + 59898, + 59899, + 59900, + 59901, + 59902, + 59903, + 59904, + 59905, + 59906, + 59907, + 59908, + 59909, + 59910, + 59911, + 59912, + 59913, + 59914, + 59915, + 59916, + 59917, + 59918, + 59919, + 59920, + 59921, + 59922, + 59923, + 59924, + 59925, + 59926, + 59927, + 59928, + 59929, + 59930, + 59931, + 59932, + 59933, + 59934, + 59935, + 59936, + 59937, + 59938, + 59939, + 59940, + 59941, + 59942, + 59943, + 59944, + 59945, + 59946, + 59947, + 59948, + 59949, + 59950, + 59951, + 59952, + 59953, + 59954, + 59955, + 59956, + 59957, + 59958, + 59959, + 59960, + 59961, + 59962, + 59963, + 59964, + 59965, + 59966, + 59967, + 59968, + 59969, + 59970, + 59971, + 59972, + 59973, + 59974, + 59975, + 59976, + 59977, + 59978, + 59979, + 59980, + 59981, + 59982, + 59983, + 59984, + 59985, + 59986, + 59987, + 59988, + 59989, + 59990, + 59991, + 59992, + 59993, + 59994, + 59995, + 59996, + 59997, + 59998, + 59999 + ], "validation": [] } \ No newline at end of file diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e833f577314f11a473d2c6eabbff1735feca5038 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e943c42ad6475d4145e7520c9b54e952f4b2c8995c27e4afc78d85de2fef08c +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..2dbf16c938d35c3c93fadaa5b7638516f9159765 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9d61c51f0e63e0c810d41d7371ecfbbc4e0987239a385f019ada9a138a4a20 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa72b3d9da0683518610314fc4c8dbc9a3fc5521 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_1/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f821e28c322492b8a0635e7debc183ce20a7b0c1b56d6d48b36de2126b8c47 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e85972193ef00ba56154b47fcdb6d58de267d24c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aaacadecaeb0a2dc25e00aabc86796a8972a2c3bf549ce47236851e672567bb +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..51ab5c93754f05695a2c2acf1014fb10b8088d65 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd233e3e778e367fe64b7d6ccee741e917105b63babfb8dafd54f99566a215f3 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..40f8a52a7ff15ebebe0a603b25c48230a3055816 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_10/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e0bb2c25ee4c0f2103cfd68360d923688c54f11f11fa18c1cb99deefd30938 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e643fca340dee54f7d836ff2ba7b21a5932e240d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:224ead65c2e3fa2e3d9a76491558417e7db8ab8b617e3d49bc223c5fe0924336 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..b0bf3a7dda4c3e6709b24ac11c6b3cec72c37954 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8244d0858a188e0cd03312a2d59ba885f6d4e3ca07dc7d3a9b62e4d31a97ec1 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..276c162e866d62addb04687941ce7af1510633cf --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_12/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672751d4ec17efbce4018456e1cfc9d6fe0fedf1c16dca938911d2991e258f73 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..dda792f18bd7164ef30ec3b9cb621c7b8996df5d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57efe3239d1866d9cd7d42ad40f643cf7e3d307ed7e1660e69fa016c88feaf95 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..3c2e817799f4237fa3fb63e48579741f12adbf9a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990df9f38711dadd54d7f4de21abb76781aae5b20a49e3d8885290000ef55049 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..d1b0a60ffb1c54a8970b769a1457c5f20e4bfb95 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_14/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc20deedd03383ec56a241eb3860f52924da2c4fa9fbd2fde1395464fccdbb3 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..7d4bacb4e85b2bf97d2d17c412e6977346280d92 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b589e571a7a332ea804e8a68bf17f3b506fc68c79c940e2e34d8f844c2b487 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9a7de9299ec995cb2eea665e5cdb8b9192907bf1 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b64540320a84f8a0fd5a4241bbdc7e36b68c123ef93d755d29058e71f37c1d +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..91904105ab50c8131ca40adb2e0ec1f20b7c93ec --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_16/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe19f10297c0c9047bf13d3d87c4d951620b0defa93540f06a27e5d51c275b19 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..9299fb51982e9448c3575e3023b4e326cfedd1fe --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abae7db3655161d0afc7230dcea860397af73fd43156fe56504d6a09b5b26262 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..f0c09127b05d594195a88cc31fdcf03b5c705acb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc15b46790a8e0fd234e9a9d4f812342b12cc3593d8f7cfd8d5cd0846a68bbb5 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..df4b82525d8c47a9ad1acf3a3fb84525d3d059e3 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_18/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c89e50cd0b84232bd3a00cb1f401bd275082c5847ef123509135d3e7e02bc5b4 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..919a30cf2bbd3839e9a56aa2373b93838e19391f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f1263e6fda0011229c8ace2091c2b8ba060a1b9019b125798c4a9f877823a2 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..63f5b4fe7cbf7b85ff321a58499d72ffe7ecec16 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c581c4e13ff914e54a690db497d91582d25faa70ee5177fb61da04f00133c71 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..fe674e68855873bb688b654f4209891042a93f2f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_2/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8ae315b00836b90fcc7fea00201302a100f7fbaff77fc56123eeb50ebd07fa +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..5b6ad68e21236aaa23535f0e26068b989b4cfb7a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb182df8bf331d4d440613a8578820fcf94e488dd6ef20ea7433864f39429c2 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..69157aa93610d1e6aef4d025f619e332d34a221b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967ec88f1e81265ce772f4783f25ce7acd612d355086af02aabe5da581914868 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..bdc968544fa885a275a0d64aa7fc66a6b5eed3db --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_20/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad2a609f72b8ad6f95ac697291251a642d3a1efcb01dd2a9bc20efc57a5ddddb +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..ae9e1ae923f38d8267a9cd8bb96c388ad8e0f71f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01988d02ce5f2f4087df1ac8f766a6a8615939a81f53a1ca911c32f5feacaf2e +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..f2e998378ce4db7c65dd71bba62def39565822f6 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788100ee58606679f0c22efed8590b6b21a1f521337c369432a753380d672e22 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..68c032756158434197dfb1f8d3839a7fe7b05173 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_22/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c3152a62d10fb180b6184a063b064e5609b42344e7c206d34f65a24f50c24f +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..596e6a53f41d3fe09277f0d414943e0689a964ac --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f97a4089a36728bf5e829a091e69521f3560cc6d47a6c87516a9aae1505a99 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..eefb435ba0f3117e7a154e22997f2921bcb8dea1 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b81a94cf29fc25c67acbe2ad0e679f40c8b0bd994f5f9c93df589ceeb32dac +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..c9f7899a159efcb597d493bdd782ea431889107b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_24/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5394ff3ee3b4676bf2629be1e7a5b19b17edb3bb594ed57f4d490ff05a01f8be +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..a35e60d85d1a44da1ecd2a1c8a7d7f6cc905ec24 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6fbcf10f48842866ea983b7e4c7e96b8b3abc23f9b377260eac889aea9e0f9 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..b0857b9657164d4fc7d2b5a98ce946049981326f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd49315398e3b852200142582d207f2275108a67a07d38abdacbb65faacad6bb +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..98794d63a71a74c565f5be7dd44c5aaa8213e14c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_26/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd09962b61ead446a6d9e18ba1356a25cbd859ddc4e7bf92dda37095c81c55e +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3564e4bbc79876f15bc94b6062c1614264f5a54 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d41ad0be809641835d767b4802f1d7d4f363334214ccad0f192326bb52222fb +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..620138cf050a3f2fc7166bbd9cc43a91ef330f9f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad0ed1555478b4e0daeaea9587e2a055bae77ee6923052b268388f19fc247c7 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..db8473237c065bcef5dac76df46e8079c4ecce95 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_28/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105408146d8382d40205c4d33af54d6e00305084077887d0c10805ef0fdeecb3 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..89b7ccbafebb63369d5268a804071d765b2c16ba --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52bd569e085593465be437d49d8bcf68982eebf4d7e2149843a80666c674412 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..4140f6c600dd006eca1cfffd2fdd8e067f46525d --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76a5e29a6a56e757eb9c26cdd5e905d4ee5530ce37ac295e3f5dcc126afff8a +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..1b628afb2ccf692fdb32688dd242ae6fe8118c5f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_30/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4433a693586ae3ba48d8d397e3a5b50238a7965bff688895d4a90927c5af7eb7 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..74e8d32fb9833b800f75c1ff62dc45b2447908ba --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4ecc6aad99befda840592f7f3a2b6da03d49773141d361dfe436a3af3db27b +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..ce595610a3c11d75e9634f6ded2f93b161293244 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fcbb7b614a8767dde009d6356ab178f20e3350911ef6f12c8723ed8bd2723e7 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..071316cd25708aa5019d37c1b68fff87ba8bcf7b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_32/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:041b22118da058b7fd49494e21f70a154708fe967975b9fb1fee0ca87c47c01f +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..19d832bbc92dc51d7b9fe6a13748e198f0adf49b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11124fea5f25dadcd62e69dd37c169b3148ee8be9b89cd1955f9dc7a3c6cc4f8 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..e0603ea4888ce4eb0194e92683d7f4b225cac67b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fae69b12c214ba16cef3e76081e3200aa6752deeabe4515d09620d01f5489b +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..789529ee766b6c0ea50985d3136a2a14f2087b00 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_34/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721cf5b2590026226c318a68fa26eb9e56d1a93382cb803447e92f3fa234af88 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..e8dc39f9f72d9184c11a7f5609b8b2d371bb58de --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f89fa7107d5373772184186c53b4258d77b5b6acdcefada4a791b549d9f766 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..88ed8873f98a56ce6d59e03509b7ae32ec6006b7 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba1429bae13893d74c77206bcabef13ec06b771e92aa6fa5dfd3dfd81d9b48a +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..1b0980c54b17d68ade747f14fc10e1592412daf6 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_36/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e505f691da14ebf450de7621c741bb724f31bd08afda0af1fda14d65cf5d75 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..10528f94f698f5adb3b260f37e9c0a40bf02902f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083c6aadfe61fc9df6b4c5a1f33a6b67e6d67af01f19857a5c6c48dd92bbab44 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..12b65ddf3f9b027f733cceefefde2ca30273629f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a2addfe208e714017f57fd43e18285997aa0202047c32416f9202dd2c8d25c +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..7e8f45843ef0d3693879c52865c07564009e66cb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_38/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ce15465084a41e00a3e4c0a01e150cb67e11ac5544304a0954413a962863d7 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..65bce5b3e02042cdb463ca51a9ace28e5e84751f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91abfbe2e987aba4b4aa3cb79da82fb74d96baa76e5c73eebccccc136c5c8c06 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9d88b7d114129f949497a7c62127958d2cc0dc67 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e156c81bdd688ccf3db4e7b48cdfb2c2c322ff51e305a40c9e8f58f192d481e9 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..f140f38d40e00610d9478c3b13a9c0cd65cd49e2 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_4/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c12a9d4b7b20307e5c11b5aab6c574f58b8a171547ce3abd800e837741b186e +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee0d210ca731bf92ab235a2ba790daf55b69dc10 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:904de1c0f9db8e3213ee1f0fdc691670085976cb3858169c1f6ebbf6834b6cd3 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..cef5675e75087eca4f8523930f8f75e8cd9d8264 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0484253cf465d9025b7f96c782cec17d8d12b49af16b38623e53342d23e377f9 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..a122e94f780d7913edfe60c35c8f61b9a36c298a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_40/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8639a99d20756d40a8c407083c86a4812c91adfbed5c68ccab62a78f4bd2dc3d +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..194d54e99fcb63c432630ba82eb8af42f18aab89 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611e17d8cc22d107517423d7260e3783b8e3406ed20b6d21173544c3cbe30801 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..40cadcf634558273e902fe85a25e78f3cb21217c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ba3355a1ab9b28a4852f67d94a0851f5d42e31ef570ad0ed7620d460affef0 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..3d7d32ce7fb0cdd9eabfd93db06a66bb1515823c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_42/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83279f84270b52d04b0db92af51608967c9f668919788faef2417e707049ac8b +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..4f3d25cd81a4e0c4710d7b0da1b8fc37ee478c1b --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f91fc95c31991ba21dd04b874b2c804a1cc8309e0a1ceb621f45773bfeb6f0 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..7880913afebf36754d8d2ed253a6e0a2ecb1a88f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e465929c3554b7917700ce614ed31af7ba41016fadcf869b07103296e17d01 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..323e9ef5dc4258d202e84f387c57fff0856646c2 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_44/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ef0bb8b38ba222f7b1fe74131b39f5a1faa82ac4c11a4151ac1ee3514588f4 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..c034070e5433a4d3c716d78e675ea4d14ccafe8a --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25911c024b1d2004833327ef8e8e67a15441f587623380b6cd33b836f97b0f87 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..be853f4f509896938306bdbc5ac28383d4963a8c --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f19bdacabeb8adfbc5f073fecfdc3b9c4f6691495c4e92a7c8121b092aa92c3 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..21f54cce41afd0d0f1135933bc66e47951a754d5 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_46/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b1139640562a3021dd1515f13fdc164a7679c8ad03e4a9b5b491b6af84023b +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..0d89bc902d22405c45c1edec18f3345bda3e8076 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0d1277ad3f19acc96b5e48f4a76b8677885341b6148105e93734291f615f91 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..79c5dd72caa0b2cbf1e6cbec1677986efd965ae7 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178d472895ccd970bff77a73fe322e5e15fa1b03ff5988271a8ca35aaae000f6 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..58faaed6ffa31a8000d2650dec591f839c859023 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_48/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd5ed33fbc2629c8a239207258c417c9a2d1dbed23dd7da3ab3ca0523fdfc023 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..da4eeba0111fed6b36ac316058b0f6034bb08ec1 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea54581749ee02e671a13d1625dad117188fa4512ce4c4425a3da85de8a6ed5 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..2314360f393b0927651779eb1bf86a86d00affee --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261674095fc69fc9ef1eb71efba67b95c16ba578e060d8c25b8528ffda4b3baf +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..6b8d3a58c8a15a93ce907a1fec0b5f218bc4043f --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_50/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f6b7d9114fb759961c77fae6e23885bfbffa7b0eb8fa0419c347a9df40248c +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..b2e7560874187b31a1e318131486a6f570da91e9 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91065cc896803db6d2da7ed286eff12df95b42fc6b0958b8b0aae2a51aab6b14 +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..be835362ee14a890cc904a5ecdc7a86d91d5b091 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cffabfe6b335b65c3b1288cad36d3c8df1c53742422949b9f028a1b35b5ba84 +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..d55bea29dbe76e4c0782db7843b338d2e1e948cb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_6/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7829f8434bdae95740bf82a4f944b6a5e1fee6aecf523b873ed3becdf34c70d +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/embeddings.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/embeddings.npy new file mode 100644 index 0000000000000000000000000000000000000000..4cd774c92801ff418f85235fafcc7b8af55577cb --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/embeddings.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a084f6a0739ba7a682c4447ec57a2c68d4ab4004a9fe5b22ef42f149508cb0e +size 204800128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/model.pth b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/model.pth new file mode 100644 index 0000000000000000000000000000000000000000..73193aaba049e69cc6aa1ee46df39f6c4a9d6bca --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96807c054d9c87591b6a547f535860cdb0e10465228f8fb002f9d43e1b0cc8c +size 1534626 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/predictions.npy b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/predictions.npy new file mode 100644 index 0000000000000000000000000000000000000000..52515e33845b2b70ba77f6fbcda1405081f36106 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/epoch_8/predictions.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd9fb27c30fb4d6f3d63634b3d9a5824dd8b17f45d13d5225465e25ce672e77 +size 2000128 diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/layer_info.json b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/layer_info.json new file mode 100644 index 0000000000000000000000000000000000000000..a306f53dd92050a380739012255d7ffe43385c93 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/layer_info.json @@ -0,0 +1 @@ +{"layer_id": "avg_pool", "dim": 1024} \ No newline at end of file diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/epochs/train.log b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/train.log new file mode 100644 index 0000000000000000000000000000000000000000..baf0aaecce190d4e6b11c1d66b5a9439078c7340 --- /dev/null +++ b/ShuffleNetV2-CIFAR10/Classification-normal/epochs/train.log @@ -0,0 +1,53 @@ +2025-04-27 21:48:34,123 - train - INFO - 开始训练 ShuffleNetV2 +2025-04-27 21:48:34,124 - train - INFO - 总轮数: 50, 学习率: 0.1, 设备: cuda:4 +2025-04-27 21:48:57,147 - train - INFO - Epoch: 1 | Train Loss: 1.750 | Train Acc: 36.67% | Test Loss: 1.334 | Test Acc: 51.14% +2025-04-27 21:49:29,438 - train - INFO - Epoch: 2 | Train Loss: 1.245 | Train Acc: 54.99% | Test Loss: 1.219 | Test Acc: 57.90% +2025-04-27 21:49:59,229 - train - INFO - Epoch: 3 | Train Loss: 1.044 | Train Acc: 62.94% | Test Loss: 1.183 | Test Acc: 60.26% +2025-04-27 21:50:22,482 - train - INFO - Epoch: 4 | Train Loss: 0.912 | Train Acc: 67.72% | Test Loss: 1.067 | Test Acc: 63.11% +2025-04-27 21:50:53,574 - train - INFO - Epoch: 5 | Train Loss: 0.831 | Train Acc: 70.86% | Test Loss: 0.889 | Test Acc: 69.46% +2025-04-27 21:51:16,604 - train - INFO - Epoch: 6 | Train Loss: 0.786 | Train Acc: 72.68% | Test Loss: 0.993 | Test Acc: 66.94% +2025-04-27 21:52:16,179 - train - INFO - Epoch: 7 | Train Loss: 0.756 | Train Acc: 73.51% | Test Loss: 0.866 | Test Acc: 71.14% +2025-04-27 21:52:39,049 - train - INFO - Epoch: 8 | Train Loss: 0.744 | Train Acc: 73.95% | Test Loss: 0.805 | Test Acc: 72.38% +2025-04-27 21:53:41,885 - train - INFO - Epoch: 9 | Train Loss: 0.727 | Train Acc: 74.61% | Test Loss: 0.896 | Test Acc: 69.35% +2025-04-27 21:54:35,839 - train - INFO - Epoch: 10 | Train Loss: 0.715 | Train Acc: 75.12% | Test Loss: 0.786 | Test Acc: 73.31% +2025-04-27 21:55:37,515 - train - INFO - Epoch: 11 | Train Loss: 0.703 | Train Acc: 75.45% | Test Loss: 1.241 | Test Acc: 60.57% +2025-04-27 21:56:33,708 - train - INFO - Epoch: 12 | Train Loss: 0.684 | Train Acc: 76.34% | Test Loss: 0.794 | Test Acc: 72.77% +2025-04-27 21:57:34,181 - train - INFO - Epoch: 13 | Train Loss: 0.676 | Train Acc: 76.50% | Test Loss: 0.748 | Test Acc: 74.38% +2025-04-27 21:58:32,732 - train - INFO - Epoch: 14 | Train Loss: 0.672 | Train Acc: 76.68% | Test Loss: 0.728 | Test Acc: 75.10% +2025-04-27 21:59:32,973 - train - INFO - Epoch: 15 | Train Loss: 0.655 | Train Acc: 77.36% | Test Loss: 0.782 | Test Acc: 72.96% +2025-04-27 22:00:31,502 - train - INFO - Epoch: 16 | Train Loss: 0.648 | Train Acc: 77.60% | Test Loss: 0.789 | Test Acc: 72.56% +2025-04-27 22:01:31,741 - train - INFO - Epoch: 17 | Train Loss: 0.635 | Train Acc: 77.97% | Test Loss: 0.749 | Test Acc: 74.50% +2025-04-27 22:02:29,326 - train - INFO - Epoch: 18 | Train Loss: 0.629 | Train Acc: 78.28% | Test Loss: 0.735 | Test Acc: 75.62% +2025-04-27 22:03:30,104 - train - INFO - Epoch: 19 | Train Loss: 0.618 | Train Acc: 78.62% | Test Loss: 0.704 | Test Acc: 76.90% +2025-04-27 22:04:28,392 - train - INFO - Epoch: 20 | Train Loss: 0.608 | Train Acc: 78.89% | Test Loss: 0.688 | Test Acc: 76.81% +2025-04-27 22:05:26,051 - train - INFO - Epoch: 21 | Train Loss: 0.597 | Train Acc: 79.47% | Test Loss: 0.691 | Test Acc: 76.24% +2025-04-27 22:06:25,928 - train - INFO - Epoch: 22 | Train Loss: 0.585 | Train Acc: 79.82% | Test Loss: 0.698 | Test Acc: 76.32% +2025-04-27 22:07:26,416 - train - INFO - Epoch: 23 | Train Loss: 0.577 | Train Acc: 80.19% | Test Loss: 0.634 | Test Acc: 78.30% +2025-04-27 22:08:23,803 - train - INFO - Epoch: 24 | Train Loss: 0.563 | Train Acc: 80.57% | Test Loss: 0.629 | Test Acc: 78.43% +2025-04-27 22:09:24,546 - train - INFO - Epoch: 25 | Train Loss: 0.555 | Train Acc: 80.70% | Test Loss: 0.594 | Test Acc: 79.46% +2025-04-27 22:10:22,691 - train - INFO - Epoch: 26 | Train Loss: 0.540 | Train Acc: 81.34% | Test Loss: 0.689 | Test Acc: 76.42% +2025-04-27 22:11:23,128 - train - INFO - Epoch: 27 | Train Loss: 0.530 | Train Acc: 81.87% | Test Loss: 0.684 | Test Acc: 77.55% +2025-04-27 22:12:21,227 - train - INFO - Epoch: 28 | Train Loss: 0.515 | Train Acc: 82.16% | Test Loss: 0.570 | Test Acc: 80.85% +2025-04-27 22:13:21,522 - train - INFO - Epoch: 29 | Train Loss: 0.502 | Train Acc: 82.38% | Test Loss: 0.622 | Test Acc: 78.76% +2025-04-27 22:14:19,359 - train - INFO - Epoch: 30 | Train Loss: 0.487 | Train Acc: 83.15% | Test Loss: 0.531 | Test Acc: 81.79% +2025-04-27 22:15:19,715 - train - INFO - Epoch: 31 | Train Loss: 0.473 | Train Acc: 83.66% | Test Loss: 0.513 | Test Acc: 82.67% +2025-04-27 22:15:50,404 - train - INFO - Epoch: 32 | Train Loss: 0.458 | Train Acc: 84.13% | Test Loss: 0.542 | Test Acc: 81.31% +2025-04-27 22:16:22,332 - train - INFO - Epoch: 33 | Train Loss: 0.448 | Train Acc: 84.68% | Test Loss: 0.480 | Test Acc: 83.89% +2025-04-27 22:16:45,095 - train - INFO - Epoch: 34 | Train Loss: 0.428 | Train Acc: 85.26% | Test Loss: 0.480 | Test Acc: 83.49% +2025-04-27 22:17:12,875 - train - INFO - Epoch: 35 | Train Loss: 0.415 | Train Acc: 85.71% | Test Loss: 0.481 | Test Acc: 83.75% +2025-04-27 22:17:34,767 - train - INFO - Epoch: 36 | Train Loss: 0.401 | Train Acc: 86.07% | Test Loss: 0.465 | Test Acc: 84.62% +2025-04-27 22:18:04,798 - train - INFO - Epoch: 37 | Train Loss: 0.379 | Train Acc: 86.98% | Test Loss: 0.432 | Test Acc: 85.45% +2025-04-27 22:18:27,022 - train - INFO - Epoch: 38 | Train Loss: 0.362 | Train Acc: 87.42% | Test Loss: 0.417 | Test Acc: 85.50% +2025-04-27 22:18:57,168 - train - INFO - Epoch: 39 | Train Loss: 0.346 | Train Acc: 87.94% | Test Loss: 0.443 | Test Acc: 85.16% +2025-04-27 22:19:19,033 - train - INFO - Epoch: 40 | Train Loss: 0.331 | Train Acc: 88.50% | Test Loss: 0.405 | Test Acc: 86.21% +2025-04-27 22:19:49,640 - train - INFO - Epoch: 41 | Train Loss: 0.313 | Train Acc: 89.15% | Test Loss: 0.391 | Test Acc: 86.79% +2025-04-27 22:20:10,777 - train - INFO - Epoch: 42 | Train Loss: 0.294 | Train Acc: 89.89% | Test Loss: 0.373 | Test Acc: 87.43% +2025-04-27 22:20:40,926 - train - INFO - Epoch: 43 | Train Loss: 0.280 | Train Acc: 90.33% | Test Loss: 0.372 | Test Acc: 87.43% +2025-04-27 22:21:02,994 - train - INFO - Epoch: 44 | Train Loss: 0.264 | Train Acc: 90.74% | Test Loss: 0.368 | Test Acc: 87.24% +2025-04-27 22:21:33,872 - train - INFO - Epoch: 45 | Train Loss: 0.249 | Train Acc: 91.34% | Test Loss: 0.356 | Test Acc: 87.97% +2025-04-27 22:21:53,655 - train - INFO - Epoch: 46 | Train Loss: 0.236 | Train Acc: 91.81% | Test Loss: 0.345 | Test Acc: 88.35% +2025-04-27 22:22:23,970 - train - INFO - Epoch: 47 | Train Loss: 0.226 | Train Acc: 92.28% | Test Loss: 0.342 | Test Acc: 88.45% +2025-04-27 22:22:45,527 - train - INFO - Epoch: 48 | Train Loss: 0.217 | Train Acc: 92.62% | Test Loss: 0.342 | Test Acc: 88.99% +2025-04-27 22:23:15,748 - train - INFO - Epoch: 49 | Train Loss: 0.210 | Train Acc: 92.88% | Test Loss: 0.340 | Test Acc: 88.74% +2025-04-27 22:23:36,757 - train - INFO - Epoch: 50 | Train Loss: 0.207 | Train Acc: 93.05% | Test Loss: 0.339 | Test Acc: 88.86% +2025-04-27 22:23:45,210 - train - INFO - 训练完成! diff --git a/ShuffleNetV2-CIFAR10/Classification-normal/scripts/get_representation.py b/ShuffleNetV2-CIFAR10/Classification-normal/scripts/get_representation.py index 76873d10a794e3d9eb315aad0a87b2a88a2f6b99..e87766dc95e13cd9a702638034bab0fc60d48ca8 100644 --- a/ShuffleNetV2-CIFAR10/Classification-normal/scripts/get_representation.py +++ b/ShuffleNetV2-CIFAR10/Classification-normal/scripts/get_representation.py @@ -52,7 +52,14 @@ class time_travel_saver: def get_activation(name): def hook(model, input, output): - activation[name] = output.detach() + # 只在需要时保存激活值,避免内存浪费 + if name not in activation or activation[name] is None: + # 处理元组类型的输出 + if isinstance(output, tuple): + # 对于元组,我们只保存第一个元素或者创建一个新的列表 + activation[name] = output[0].detach() if len(output) > 0 else None + else: + activation[name] = output.detach() return hook # 注册钩子到所有层 @@ -112,7 +119,12 @@ class time_travel_saver: def hook(model, input, output): # 只在需要时保存激活值,避免内存浪费 if name not in activation or activation[name] is None: - activation[name] = output.detach() + # 处理元组类型的输出 + if isinstance(output, tuple): + # 对于元组,我们只保存第一个元素或者创建一个新的列表 + activation[name] = output[0].detach() if len(output) > 0 else None + else: + activation[name] = output.detach() return hook # 根据层的名称或维度来选择层 @@ -235,8 +247,8 @@ class time_travel_saver: # 创建索引字典 index_dict = { - "train": indices, # 所有数据默认为训练集 - "test": [], # 初始为空 + "train": list(range(50000)), # 所有数据默认为训练集 + "test": list(range(50000, 60000)), # 测试集索引从50000到59999 "validation": [] # 初始为空 }