Upload merged LoRA model
Browse files- README.md +42 -0
- config.json +24 -0
- model.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
# CultureCLIP Model (LoRA Merged)
|
3 |
+
|
4 |
+
This is a CLIP model fine-tuned with LoRA for cultural understanding and image-text matching. The LoRA weights have been merged into the base model.
|
5 |
+
|
6 |
+
## Model Details
|
7 |
+
|
8 |
+
- **Base Model**: openai/clip-vit-base-patch32
|
9 |
+
- **Task**: Contrastive Image-Text Learning
|
10 |
+
- **Framework**: PyTorch
|
11 |
+
- **Fine-tuning Approach**: LoRA (Low-Rank Adaptation)
|
12 |
+
|
13 |
+
## LoRA Configuration
|
14 |
+
- **Rank (r)**: 4
|
15 |
+
- **Alpha**: 16
|
16 |
+
- **Dropout**: 0.1
|
17 |
+
- **Target Modules**: q_proj, v_proj
|
18 |
+
- **Task Type**: FEATURE_EXTRACTION
|
19 |
+
|
20 |
+
## Usage
|
21 |
+
|
22 |
+
```python
|
23 |
+
from transformers import CLIPModel, CLIPProcessor
|
24 |
+
|
25 |
+
# Load model and processor
|
26 |
+
model = CLIPModel.from_pretrained("lukahh/cultureclip_lora_0315_100k_32_07_03")
|
27 |
+
processor = CLIPProcessor.from_pretrained("openai/clip-vit-base-patch32") # Use base model's processor
|
28 |
+
|
29 |
+
# Process text and images
|
30 |
+
inputs = processor(
|
31 |
+
text=["a photo of a cat", "a photo of a dog"],
|
32 |
+
images=image,
|
33 |
+
return_tensors="pt",
|
34 |
+
padding=True
|
35 |
+
)
|
36 |
+
|
37 |
+
# Get outputs
|
38 |
+
outputs = model(**inputs)
|
39 |
+
```
|
40 |
+
|
41 |
+
## Training Details
|
42 |
+
This model was fine-tuned using LoRA and then merged back into the base model. The LoRA approach enables efficient adaptation of the CLIP model while maintaining its core capabilities.
|
config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "openai/clip-vit-base-patch32",
|
3 |
+
"architectures": [
|
4 |
+
"CLIPModel"
|
5 |
+
],
|
6 |
+
"initializer_factor": 1.0,
|
7 |
+
"logit_scale_init_value": 2.6592,
|
8 |
+
"model_type": "clip",
|
9 |
+
"projection_dim": 512,
|
10 |
+
"text_config": {
|
11 |
+
"bos_token_id": 0,
|
12 |
+
"dropout": 0.0,
|
13 |
+
"eos_token_id": 2,
|
14 |
+
"model_type": "clip_text_model",
|
15 |
+
"torch_dtype": "float32"
|
16 |
+
},
|
17 |
+
"torch_dtype": "float32",
|
18 |
+
"transformers_version": "4.49.0",
|
19 |
+
"vision_config": {
|
20 |
+
"dropout": 0.0,
|
21 |
+
"model_type": "clip_vision_model",
|
22 |
+
"torch_dtype": "float32"
|
23 |
+
}
|
24 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fc5c2b36fd3ef136fbd745b4c7dc1240e6743cd81a6ff43883281bddb8a10500
|
3 |
+
size 605156676
|