Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert 'Vision Transformer without Attention' to Keras 3. #1855

Draft
wants to merge 22 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1ea90b7
Convert 'Vision Transformer without Attention' to Keras 3
fkouteib Apr 12, 2024
856d088
import fixes and refactors.
fkouteib Apr 13, 2024
f40c989
Merge branch 'keras-team:master' into ShiftViT
fkouteib Apr 14, 2024
4405d6c
add multi-framework train and test steps skeleton code.
fkouteib Apr 18, 2024
a97bfc5
Merge remote-tracking branch 'upstream/master' into ShiftViT
fkouteib Apr 23, 2024
f537624
working TF train and test steps.
fkouteib Apr 24, 2024
3980712
Model saving/loading fixes.
fkouteib Apr 25, 2024
baff2c5
fix get_Config()
fkouteib Apr 25, 2024
6dd34b8
custom test step refactor, bug fixes.
fkouteib Apr 25, 2024
0ac5d07
Merge remote-tracking branch 'upstream/master' into ShiftViT
fkouteib Apr 29, 2024
910e9ef
First pass at Pytorch implementation.
fkouteib May 1, 2024
77a4e2e
Switch crop image from TF to Keras op.
fkouteib May 3, 2024
f17f900
code cleanup.
fkouteib May 4, 2024
2cf07c6
Drop custom train and test steps.
fkouteib May 5, 2024
154eb96
Fix formatting issues using Black.
fkouteib May 5, 2024
77f071c
Merge remote-tracking branch 'upstream/master' into shiftvit
fkouteib May 15, 2024
51f3d1e
JAX fixes. Remove more TF dependencies.
fkouteib May 23, 2024
2faba87
Merge remote-tracking branch 'upstream/master' into shiftvit
fkouteib Jul 7, 2024
21c342d
Fix formatting issues.
fkouteib Jul 7, 2024
580fae8
Merge branch 'master' into shiftvit
fkouteib Aug 4, 2024
d0a9106
Merge branch 'master' into shiftvit
fkouteib Aug 26, 2024
89b48e0
Merge remote-tracking branch 'upstream/master' into shiftvit
fkouteib Oct 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ templates/examples/graph/*
templates/guides/**/*.md
templates/keras-tuner/getting_started.md
datasets/*
.vscode/*
.vscode/*
**/*.zip
**/*.tgz
**/*.tar.gz
**/data/*
Loading