kingkenche commited on
Commit
cda1420
·
verified ·
1 Parent(s): 3a905fa

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ViT-S CIFAR-100 LoRA Fine-tuning
2
+
3
+ ## Model Details
4
+ - **Base model**: `timm/vit_small_patch16_224` (ImageNet pre-trained)
5
+ - **Dataset**: CIFAR-100
6
+ - **Fine-tuning**: LoRA (PEFT)
7
+
8
+ ### LoRA Config
9
+ - Rank: 8
10
+ - Alpha: 2.0
11
+ - Dropout: 0.1
12
+ - Target modules: attn.qkv (Q, K, V)
13
+
14
+ ## Usage
15
+ ```python
16
+ import torch, timm
17
+ from peft import PeftModel
18
+ # Load the model and weights from this repo
19
+ ```
20
+
21
+ ## Assignment
22
+ CS/DS – Assignment 5 | ViT CIFAR-100 LoRA