ash12321 commited on
Commit
4086329
·
verified ·
1 Parent(s): 3e9532c

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -1,3 +1,18 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Deepfake Detector V10
2
+
3
+ ## Improvements over V9
4
+ - 20% more data (12K samples vs 10K)
5
+ - 10 NEW fake types (completely different patterns)
6
+ - 5 epochs vs 3 (66% more training)
7
+ - Lower LR (5e-5) for better fine-tuning
8
+ - Stronger augmentation
9
+ - All layers unfrozen (full learning)
10
+
11
+ ## Performance
12
+ - V9: 99.95%
13
+ - V10: 100.00%
14
+ - Improvement: +0.05%
15
+ - F1: 1.0000
16
+
17
+ ## Files
18
+ All retraining files included. Ready for HuggingFace.
config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"architecture": "tf_efficientnetv2_s", "dropout": 0.55}
metrics.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"version": "V10", "best_accuracy": 1.0, "best_f1": 1.0, "train_samples": 9600, "val_samples": 2400, "v9_baseline": 0.9995}
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b4e4ee0b4a9b61d125f02d3f40bce71947476ec1aa32557c59b0814266b64eb
3
+ size 84569652
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8168f5a16e6a3a4283a5e9878b5ed93e072c7715c5fea36e277c9e8175794b86
3
+ size 168118663
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3de93c31f9b682aad761922c523f8cb6a4a0aac1766ef3979d29fb231f44b569
3
+ size 14391
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc908b86d4fed7874c852639322832204c2920a4ab87abdfc7d78505b9d34dc6
3
+ size 1465
tokenizer.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"version": "V10", "type": "image"}
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"model_type": "image_classification", "version": "V10"}
training_args.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"target_real": 6000, "target_fake": 6000, "val_split": 0.2, "epochs": 5, "batch_size": 24, "learning_rate": 5e-05, "weight_decay": 0.0002, "dropout": 0.55, "label_smoothing": 0.2, "save_dir": "./deepfake_v10_model"}