KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Dinov2SSLImageCL
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
myHy2Foam
:
Extension of the openFoam solver hy2Foam to include turbulent terms
digilara
:
No description available.
TM-HGNN
:
[ACL 2023 Oral] Clinical Note Owns its Hierarchy: Multi-Level Hypergraph Neural Networks for Patient-Level Representation Learning
SimpleParallel
:
基于pytorch实现的基础张量并行计算框架
deck-scraper
:
A web scraper witten in Node.js to check the stock of the steam deck, and notify you via Twilio when stock returns.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Dinov2SSLImageCL
?
Download (.md)
# Finetunig DINOv2 for Unsupervised Image Classification ## Self supervised image classification on tinyimagenet and imagenet dataset. - Repository contains the implementation of DINO(Distillation of knowledge using No labels) approach for finetuning custom student teacher training network. - The base models used are DINOv2base and DINOv2small. Also experimented with VIT tiny and small. ## Running the experiment: In order to run the finetuning/training of the model on custom dataset, make sure to change the dataset in dataset_preperation file by giving appropriate path and run the following command. ```python python main.py --save_path path/to/save --batch_size 64 --num_workers 4 --epochs 3 --save_every 25 --grad_accum_steps 4 --transform_type hard --test_split_percent 0.2 --model_name dinov2 --num_classes 200 --optimizer adamw --scheduler custom --baseline --evaluate ``` ## Acknowledgment for references [DINO](https://github.com/facebookresearch/dino) [DINOv2](https://github.com/facebookresearch/dinov2)