├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── mymstn.iml ├── vcs.xml └── workspace.xml ├── PretrainedAlexnet.py ├── README.md ├── data_list ├── amazon_list.txt ├── dslr_list.txt └── webcam_list.txt ├── dataset.py ├── model.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pth 3 | *.npy 4 | *.log 5 | *.pth -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/mymstn.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 82 | 83 | 84 | 85 | itertools 86 | Floss 87 | dreglos 88 | greglos 89 | n 90 | lr_mult_alex 91 | pred 92 | forward 93 | resume 94 | s_pred_label 95 | loss 96 | real 97 | sgd 98 | mse 99 | prealex 100 | bottle 101 | greg 102 | linearand 103 | data 104 | s_label 105 | v_label 106 | print 107 | optimizer 108 | mymodel 109 | vis 110 | conv 111 | args.name 112 | torchvision 113 | datasets 114 | n_class 115 | 116 | 117 | ../ 118 | ../../ 119 | self 120 | features 121 | 122 | 123 | 124 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 154 | 155 | 156 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 |