├── .gitignore ├── .gitmodules ├── .idea ├── misc.xml ├── modules.xml ├── other.xml ├── pseudo-3d.iml ├── vcs.xml └── workspace.xml ├── Dataset.py ├── README.md ├── data ├── .DS_Store ├── breakfastTrainTestList │ ├── classInd.txt │ ├── fixclass.py │ ├── testlist01.txt │ ├── trainlist01.txt │ └── validationlist01.txt ├── extract.py ├── makeVideoFolder.py ├── merlTrainTestList │ ├── classInd.txt │ ├── merl.py │ ├── testlist01.txt │ ├── trainlist01.txt │ └── validationlist01.txt ├── movefile.py └── ucfTrainTestlist │ ├── .DS_Store │ ├── classInd.txt │ ├── testlist01.txt │ ├── testlist02.txt │ ├── testlist03.txt │ ├── trainlist01.txt │ ├── trainlist02.txt │ ├── trainlist03.txt │ ├── validationlist01.txt │ ├── validationlist02.txt │ └── validationlist03.txt ├── dog.0.jpg ├── logger.py ├── lr_scheduler.py ├── main.py ├── meter.py ├── models ├── C3D.py ├── i3d.py ├── i3dpt.py └── p3d_model.py ├── test.py ├── train.py ├── transforms.py ├── utils.py ├── video_transforms.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.tar 2 | .DS_Store 3 | __pycache__ 4 | lib/ 5 | Breakfast/ 6 | UCF101/ 7 | *.pickle 8 | *.pth 9 | *.tar -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naviocean/pseudo-3d-pytorch/50297d11248630792709782f467982e80c281384/.gitmodules -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/pseudo-3d.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 | 13 | 14 | 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 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 155 | 156 | 157 | 158 | num_frames 159 | frames 160 | RandomResizedCrop 161 | name_list 162 | C3D 163 | clip = self.get_video_tensor(frames_path) 164 | validate 165 | data = 166 | normalize 167 | Stack 168 | roll 169 | mean 170 | momentum 171 | np. 172 | data 173 | 160 174 | Nor 175 | Normalize 176 | self.data_folder 177 | criterion 178 | 216 179 | get_optim_policies 180 | 16 181 | pretrained 182 | check_gpu 183 | transfer_model 184 | trans 185 | self.ac 186 | transfer 187 | RandomSizedCrop 188 | 189 | 190 | check_gpu() 191 | 192 | 193 | $PROJECT_DIR$/videotransforms 194 | $PROJECT_DIR$ 195 | 196 | 197 | 198 | 200 | 201 | 233 | 234 | 235 | 236 | 237 | true 238 | DEFINITION_ORDER 239 | 240 | 241 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | Python 253 | 254 | 255 | 256 | 257 | PyCompatibilityInspection 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 |