Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arch committed Nov 27, 2021
1 parent ce300b2 commit 34d2856
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ To the standard question, I can say: I can not provide an pretrained Model! I do

## Current State

- Model 1 convergence when training, firs results are good
- Model 1 convergence when training, first results are good
- Model 2 do not convergence when training
- Model 3 WIP
5 changes: 2 additions & 3 deletions model/model3.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@ class Model3(nn.Module):
def __init__(self):
super().__init__()

reduce = 1
self.conv1 = CvT(
image_size=CONFIG[MODEL]['img_height'],
in_channels = CONFIG[MODEL]['img_channels']
in_channels = CONFIG[MODEL]['img_channels'],
dim = 16
)

reduce += 1
self.conv2 = CvT(
image_size=CONFIG[MODEL]['img_height'],
in_channels = 16,
Expand Down

0 comments on commit 34d2856

Please sign in to comment.