Update README.md
Browse files
README.md
CHANGED
@@ -255,7 +255,7 @@ The objective of RealFormer is to attain the maximum level of detail to the real
|
|
255 |
```python
|
256 |
RealFormerAGA(
|
257 |
(patch_embed): DynamicPatchEmbedding(
|
258 |
-
(proj): Conv2d(
|
259 |
)
|
260 |
(encoder_layers): ModuleList(
|
261 |
(0-15): 16 x TransformerEncoderBlock(
|
@@ -330,9 +330,9 @@ RealFormerAGA(
|
|
330 |
(bn): BatchNorm2d(3, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
|
331 |
(relu): ReLU(inplace=True)
|
332 |
)
|
333 |
-
(final_layer): Conv2d(3,
|
334 |
(style_encoder): Sequential(
|
335 |
-
(0): Conv2d(
|
336 |
(1): ReLU()
|
337 |
(2): AdaptiveAvgPool2d(output_size=1)
|
338 |
(3): Flatten(start_dim=1, end_dim=-1)
|
|
|
255 |
```python
|
256 |
RealFormerAGA(
|
257 |
(patch_embed): DynamicPatchEmbedding(
|
258 |
+
(proj): Conv2d(3, 768, kernel_size=(1, 1), stride=(1, 1))
|
259 |
)
|
260 |
(encoder_layers): ModuleList(
|
261 |
(0-15): 16 x TransformerEncoderBlock(
|
|
|
330 |
(bn): BatchNorm2d(3, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
|
331 |
(relu): ReLU(inplace=True)
|
332 |
)
|
333 |
+
(final_layer): Conv2d(3, 3, kernel_size=(1, 1), stride=(1, 1))
|
334 |
(style_encoder): Sequential(
|
335 |
+
(0): Conv2d(3, 768, kernel_size=(3, 3), stride=(2, 2), padding=(1, 1))
|
336 |
(1): ReLU()
|
337 |
(2): AdaptiveAvgPool2d(output_size=1)
|
338 |
(3): Flatten(start_dim=1, end_dim=-1)
|