1 2 3 4 5 6 7 8 9 10 11 12 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
| [('weight_orig', Parameter containing: tensor([[[[ 0.1668, 0.0369, -0.2930], [-0.2630, -0.1777, -0.1096], [ 0.0481, -0.0898, 0.1920]]],
[[[ 0.0729, 0.1445, -0.0471], [ 0.1525, 0.2986, 0.2602], [-0.0929, -0.2725, -0.0069]]],
[[[-0.2006, -0.2577, 0.2754], [ 0.0999, 0.2106, -0.0046], [-0.2813, -0.2794, -0.0580]]],
[[[-0.2944, -0.2214, -0.0795], [-0.0773, 0.2931, -0.2249], [-0.0796, -0.2343, -0.0457]]],
[[[-0.1965, 0.2550, 0.2606], [ 0.0213, -0.2839, 0.2037], [-0.2068, -0.0507, -0.3097]]],
[[[ 0.0030, 0.2340, -0.1122], [-0.0302, -0.0261, 0.1168], [ 0.0927, 0.1553, 0.1167]]]], device='cuda:0', requires_grad=True)), ('bias_orig', Parameter containing: tensor([ 0.1147, 0.2439, -0.1753, -0.2578, -0.0994, 0.0588], device='cuda:0', requires_grad=True))] ************************************************** [('weight_mask', tensor([[[[0., 0., 0.], [1., 1., 1.], [0., 1., 1.]]],
[[[1., 1., 1.], [1., 0., 1.], [1., 1., 1.]]],
[[[1., 1., 0.], [1., 1., 1.], [1., 0., 1.]]],
[[[0., 1., 1.], [1., 1., 1.], [1., 1., 0.]]],
[[[1., 0., 1.], [0., 1., 0.], [0., 1., 1.]]],
[[[1., 1., 1.], [1., 0., 0.], [0., 1., 1.]]]], device='cuda:0')), ('bias_mask', tensor([0., 1., 1., 1., 0., 0.], device='cuda:0'))] ************************************************** tensor([[[[ 0.0000, 0.0000, -0.0000], [-0.2630, -0.1777, -0.1096], [ 0.0000, -0.0898, 0.1920]]],
[[[ 0.0729, 0.1445, -0.0471], [ 0.1525, 0.0000, 0.2602], [-0.0929, -0.2725, -0.0069]]],
[[[-0.2006, -0.2577, 0.0000], [ 0.0999, 0.2106, -0.0046], [-0.2813, -0.0000, -0.0580]]],
[[[-0.0000, -0.2214, -0.0795], [-0.0773, 0.2931, -0.2249], [-0.0796, -0.2343, -0.0000]]],
[[[-0.1965, 0.0000, 0.2606], [ 0.0000, -0.2839, 0.0000], [-0.0000, -0.0507, -0.3097]]],
[[[ 0.0030, 0.2340, -0.1122], [-0.0302, -0.0000, 0.0000], [ 0.0000, 0.1553, 0.1167]]]], device='cuda:0', grad_fn=<MulBackward0>) ************************************************** OrderedDict([(0, <torch.nn.utils.prune.RandomUnstructured object at 0x7f65b879e7f0>), (1, <torch.nn.utils.prune.L1Unstructured object at 0x7f655c5ebfd0>)]) [('bias_orig', Parameter containing: tensor([ 0.1147, 0.2439, -0.1753, -0.2578, -0.0994, 0.0588], device='cuda:0', requires_grad=True)), ('weight', Parameter containing: tensor([[[[ 0.0000, 0.0000, -0.0000], [-0.2630, -0.1777, -0.1096], [ 0.0000, -0.0898, 0.1920]]],
[[[ 0.0729, 0.1445, -0.0471], [ 0.1525, 0.0000, 0.2602], [-0.0929, -0.2725, -0.0069]]],
[[[-0.2006, -0.2577, 0.0000], [ 0.0999, 0.2106, -0.0046], [-0.2813, -0.0000, -0.0580]]],
[[[-0.0000, -0.2214, -0.0795], [-0.0773, 0.2931, -0.2249], [-0.0796, -0.2343, -0.0000]]],
[[[-0.1965, 0.0000, 0.2606], [ 0.0000, -0.2839, 0.0000], [-0.0000, -0.0507, -0.3097]]],
[[[ 0.0030, 0.2340, -0.1122], [-0.0302, -0.0000, 0.0000], [ 0.0000, 0.1553, 0.1167]]]], device='cuda:0', requires_grad=True))] ************************************************** [('bias_mask', tensor([0., 1., 1., 1., 0., 0.], device='cuda:0'))]
|