add:resnet-cifar10-classification-noisy
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- Image/ResNet/code/train.py +0 -59
- Image/ResNet/dataset/.gitkeep +0 -0
- Image/ResNet/model/.gitkeep +0 -0
- ResNet-CIFAR10/Classification-noisy/dataset/index.json +0 -0
- ResNet-CIFAR10/Classification-noisy/dataset/info.json +4 -0
- ResNet-CIFAR10/Classification-noisy/dataset/labels.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/dataset/noise_index.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy +3 -0
- ResNet-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy +3 -0
Image/ResNet/code/train.py
DELETED
@@ -1,59 +0,0 @@
|
|
1 |
-
import sys
|
2 |
-
import os
|
3 |
-
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
4 |
-
from utils.dataset_utils import get_cifar10_dataloaders
|
5 |
-
from utils.train_utils import train_model, train_model_data_augmentation, train_model_backdoor
|
6 |
-
from utils.parse_args import parse_args
|
7 |
-
from model import ResNet34
|
8 |
-
|
9 |
-
def main():
|
10 |
-
# 解析命令行参数
|
11 |
-
args = parse_args()
|
12 |
-
|
13 |
-
# 创建模型
|
14 |
-
model = ResNet34()
|
15 |
-
|
16 |
-
if args.train_type == '0':
|
17 |
-
# 获取数据加载器
|
18 |
-
trainloader, testloader = get_cifar10_dataloaders(batch_size=args.batch_size, local_dataset_path=args.dataset_path)
|
19 |
-
# 训练模型
|
20 |
-
train_model(
|
21 |
-
model=model,
|
22 |
-
trainloader=trainloader,
|
23 |
-
testloader=testloader,
|
24 |
-
epochs=args.epochs,
|
25 |
-
lr=args.lr,
|
26 |
-
device=f'cuda:{args.gpu}',
|
27 |
-
save_dir='../model',
|
28 |
-
model_name='resnet',
|
29 |
-
save_type='0'
|
30 |
-
)
|
31 |
-
elif args.train_type == '1':
|
32 |
-
train_model_data_augmentation(
|
33 |
-
model,
|
34 |
-
epochs=args.epochs,
|
35 |
-
lr=args.lr,
|
36 |
-
device=f'cuda:{args.gpu}',
|
37 |
-
save_dir='../model',
|
38 |
-
model_name='resnet',
|
39 |
-
batch_size=args.batch_size,
|
40 |
-
num_workers=args.num_workers,
|
41 |
-
local_dataset_path=args.dataset_path
|
42 |
-
)
|
43 |
-
elif args.train_type == '2':
|
44 |
-
train_model_backdoor(
|
45 |
-
model,
|
46 |
-
poison_ratio=args.poison_ratio,
|
47 |
-
target_label=args.target_label,
|
48 |
-
epochs=args.epochs,
|
49 |
-
lr=args.lr,
|
50 |
-
device=f'cuda:{args.gpu}',
|
51 |
-
save_dir='../model',
|
52 |
-
model_name='resnet',
|
53 |
-
batch_size=args.batch_size,
|
54 |
-
num_workers=args.num_workers,
|
55 |
-
local_dataset_path=args.dataset_path
|
56 |
-
)
|
57 |
-
|
58 |
-
if __name__ == '__main__':
|
59 |
-
main()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Image/ResNet/dataset/.gitkeep
DELETED
File without changes
|
Image/ResNet/model/.gitkeep
DELETED
File without changes
|
ResNet-CIFAR10/Classification-noisy/dataset/index.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
ResNet-CIFAR10/Classification-noisy/dataset/info.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model": "ResNet18",
|
3 |
+
"classes":["airplane", "automobile", "bird", "cat", "deer", "dog", "frog", "horse", "ship", "truck"]
|
4 |
+
}
|
ResNet-CIFAR10/Classification-noisy/dataset/labels.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d13128de212014e257f241a6f6ea7d97f157e02c814dc70456d692fd18a85d32
|
3 |
+
size 480128
|
ResNet-CIFAR10/Classification-noisy/dataset/noise_index.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:25eca69f129a03e55b371c2bf1c47848fb9f31ee73fcc1c82fd3fb4275141e35
|
3 |
+
size 48128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_1/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a678a7104b1020cb34207bb145ccbd02cd005db07bb1d6a2fe76da96db4ed3de
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_1/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e18114ea64b432a348c321292b0da3b75e22eafeb36ce2ee191864a8f2eca096
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_1/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80eaf5b95dc0bb133fbf0336dac6ac635143a86c90d872f9e53d82ca381ba3f1
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_10/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:71ffbbc58cc3af8f912e792ce6fa483cec03a5e1856923752106cecaf63f8d04
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_10/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa793a6c6efff48adf035c4830bb576cb8d6be6e3bcc284096b726f0937d88f8
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_10/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:292eb5ffed9c7723a88524e0dcd17402718560b40b75016c6503ab19eb5a83d8
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_12/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:977ef9dd31d4a78932a803f71c4088fd3a0bfa668232f8391cef20b16eb01d4a
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_12/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:430e798d2ae412f516ab0c407403b54f947097fc4413091455e8b0745caf340e
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_12/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38ac44d2d012fd25fce5e80d47cb7ab18d0db94147f6f7b5e5a9b4432ba26260
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_14/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f1c01a3f629940ab9fa99dc8bd2feabc1f2b5267ca59a564b007e7455d789e4c
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_14/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:49a089c1d18099627b736dc9ec8ef644ee51907277218ff30e47e7c23231e5a5
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_14/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f992ac1de5a315b0d6d969b2dfc8d663680ecf42faa9adeb478682bcf1047c53
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_16/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c2459eab6d514bd6a0541a5d3a2f3322a6f81dbc7c335cc26188fa64ccb8900
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_16/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ef6061ea1337419e4d757c3901b79f25f5945d7f2beb17dde2bc569e6d7c53b
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_16/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3424c8e55e7c30db0472027052727605fd1b1500b2ccb8a0c9c4335c24dc6eb
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_18/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:027994c84b1a730864817450555b858f19d117eb81f130de337532aa4aacbce1
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_18/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:516696f3e79936cef482c23100c6343534945b1e1d14c7684a50103abbfbceac
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_18/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad0fa6b977688d5a4b5e56b752c4b5b11e06fba178b0df3b530ed783c336f95e
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_2/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb3d39a2d0102c6b39b24a0d9c1e3c21edd7f4fa5390e02908d0e5b6c0bab9ef
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_2/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e27dc888bd0e516d47c5a99e610f4c1ad8509505671332f5605acc90ba70c627
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_2/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:03ed776637fd3afcda049b83c6e38899ff68a5f07634bc79a7dc8f3b2a13ad14
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_20/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5bf2d0cafc432ea79686ceda22b18bf213cea6573eafe9bf3e90c1224ab04663
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_20/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6f6bdbdab22f30699d92f2d167854035b4ed22580c3446201489763e1f361edf
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_20/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a81a2aef9496b75ef8444c44717e0e9154d4bbf8ce4954321195ff4d1e445e9e
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_22/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d41470c4d8b2061339ad4eb28973b136c58f925443436886a50af207c1fc5af3
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_22/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3e81191d1437114f3854aef08bca32d382af7de92f3720f636ce38ad0ae5eb9
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_22/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4c140aa0e9e6496896f28acbef0a39e0f3f7e008319f57f5270418bb3ec8ceb6
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_24/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7bdfcff4bda7807beaaf90546ff9d7cbf5ac359ad1c89732c6b3dc5c7b53b643
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_24/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b5e2f3d2ed5e2c1f05208fcb7ad404d4eaf812c31598ed6599bb75dd214d620
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_24/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8b1099fafdf18feb0e80504a160ef5ff8a4c2c09b6ea4fecb671425cf4e7b61
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_26/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d1e3bc814da0ce1754c78fd6b0acda9bf6b91b3b9bcf57673445f40f3d3ada2e
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_26/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4cc5b973b6607ef6fa6e95bc5b1b5c2471828affb7fb42778cf5dfd6bd5de276
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_26/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fa599d1f58539f343ac173a3c713be509a3033ae02783a480cb182f51be819a0
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_28/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:389fc5e076fc4ed065c63c6292e81dc08ce76c6854b06384bfb37c9ae4eb3108
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_28/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bd2874b80ad56e62f3573044bdd5626f5fd90996ce0ae1be0578c2e5732c2eaf
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_28/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59ba2c7d468ac9b61ace14196d6637af76c1669107d225f2d8a2cb86d418b3f0
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_30/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aeef79e9d0a3c4a1b160cac4ba3700d2f37ed089c2ba0a3b3eff0f11a18f1e53
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_30/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b66a87503baa01aeaeb4bff30b19f0c88536680bc6eaccca9ceabcbc10a5c34d
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_30/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3bcbbdcd2d88a41750c5f41433dc8fc390912c06453fe30ff5ded8f1705d367
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_32/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:795d4d0e4925570b6239acc3970600c689bb713d12c52ab8d5f0ce4d72afe96a
|
3 |
+
size 122880128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_32/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8e7cbe70511f56ceecf041cc030bb8d5dcf72a7de2a44dcf35caaa48f512669f
|
3 |
+
size 44769410
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_32/predictions.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:559c014870e002211ebdb7153bcd5bb1791dc096040195e0e222850fb4c48b15
|
3 |
+
size 2400128
|
ResNet-CIFAR10/Classification-noisy/epochs/epoch_34/embeddings.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3bf7eade355897d65bbeaa8dec4e4d5ab2b8dcc32540b4d0f8ce535733e4f091
|
3 |
+
size 122880128
|