Skip to content

Commit f3ef597

Browse files
Fix faulty image path in README
1 parent fb06c70 commit f3ef597

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,12 @@ The last conversion from a non-CIN to a CIN is possible due to a recent break-th
107107
Below, principle sketches are shown, which compare regular and continual convolutions during online / continual inference:
108108

109109
<div align="center">
110-
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/improved-nn-interop/figures/continual/regular-convolution.png" width="500">
110+
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/main/figures/continual/regular-convolution.png" width="500">
111111
<br>
112112
Regular Convolution.
113113
A regular temporal convolutional layer leads to redundant computations during online processing of video clips, as illustrated by the repeated convolution of inputs (green b,c,d) with a kernel (blue α,β) in the temporal dimen- sion. Moreover, prior inputs (b,c,d) must be stored between time-steps for online processing tasks.
114114
<br><br>
115-
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/improved-nn-interop/figures/continual/continual-convolution.png" width="500">
115+
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/main/figures/continual/continual-convolution.png" width="500">
116116
<br>
117117
Continual Convolution.
118118
An input (green d or e) is convolved with a kernel (blue α, β). The intermediary feature-maps corresponding to all but the last temporal position are stored, while the last feature map and prior memory are summed to produce the resulting output. For a continual stream of inputs, Continual Convolutions produce identical outputs to regular convolutions.
@@ -252,7 +252,7 @@ In addition, we support a wide range of modules from `torch.nn`:
252252
### Continual 3D [MBConv](https://arxiv.org/pdf/1801.04381.pdf)
253253

254254
<div align="center">
255-
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/improved-nn-interop/figures/examples/mb_conv.png" width="150">
255+
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/main/figures/examples/mb_conv.png" width="150">
256256
<br>
257257
MobileNetV2 Inverted residual block. Source: https://arxiv.org/pdf/1801.04381.pdf
258258
</div>
@@ -277,7 +277,7 @@ mb_conv = co.Residual(
277277
### Continual 3D [Inception module](https://arxiv.org/pdf/1409.4842v1.pdf)
278278

279279
<div align="center">
280-
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/improved-nn-interop/figures/examples/inception_block.png" width="450">
280+
<img src="https://raw.githubusercontent.com/LukasHedegaard/continual-inference/main/figures/examples/inception_block.png" width="450">
281281
<br>
282282
Inception module with dimension reductions. Source: https://arxiv.org/pdf/1409.4842v1.pdf
283283
</div>

0 commit comments

Comments
 (0)