odak.learn.lensless
spec_track
¶
Bases: Module
The learned holography model used in the paper, Ziyang Chen and Mustafa Dogan and Josef Spjut and Kaan Akşit. "SpecTrack: Learned Multi-Rotation Tracking via Speckle Imaging." In SIGGRAPH Asia 2024 Posters (SA Posters '24).
Parameters:
-
reduction
(str
, default:'sum'
) –Reduction used for torch.nn.MSELoss and torch.nn.L1Loss. The default is 'sum'.
-
device
–Device to run the model on. Default is CPU.
Source code in odak/learn/lensless/models.py
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 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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
evaluate(input_data, ground_truth, weights=[100.0, 1.0])
¶
Evaluate the model's performance.
Parameters:
-
input_data
–Predicted data from the model.
-
ground_truth
–Ground truth data.
-
weights
–Weights for L2 and L1 losses. Default is [100., 1.].
Returns:
-
Tensor
–Combined weighted loss.
Source code in odak/learn/lensless/models.py
fit(trainloader, testloader, number_of_epochs=100, learning_rate=1e-05, weight_decay=1e-05, directory='./output')
¶
Train the model.
Parameters:
-
trainloader
–Training data loader.
-
testloader
–Testing data loader.
-
number_of_epochs
(int
, default:100
) –Number of epochs to train for. Default is 100.
-
learning_rate
–Learning rate for the optimizer. Default is 1e-5.
-
weight_decay
–Weight decay for the optimizer. Default is 1e-5.
-
directory
–Directory to save the model weights. Default is './output'.
Source code in odak/learn/lensless/models.py
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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
|
forward(x)
¶
Forward pass of the network.
Parameters:
-
x
(Tensor
) –Input tensor.
Returns:
-
Tensor
–Output tensor.
init_layers()
¶
Initialize the layers of the network.
Source code in odak/learn/lensless/models.py
load_weights(filename='./weights.pt')
¶
Load weights for the network from a file.
Parameters:
-
filename
(str
, default:'./weights.pt'
) –Path to load the weights from. Default is './weights.pt'.
Source code in odak/learn/lensless/models.py
save_weights(filename='./weights.pt')
¶
Save the current weights of the network to a file.
Parameters:
-
filename
(str
, default:'./weights.pt'
) –Path to save the weights. Default is './weights.pt'.