Image Classification
Transformers
ONNX
Safetensors
timm
vit
detection
deepfake
forensics
deepfake_detection
community
opensight
Instructions to use buildborderless/CommunityForensics-DeepfakeDet-ViT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use buildborderless/CommunityForensics-DeepfakeDet-ViT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="buildborderless/CommunityForensics-DeepfakeDet-ViT") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("buildborderless/CommunityForensics-DeepfakeDet-ViT") model = AutoModelForImageClassification.from_pretrained("buildborderless/CommunityForensics-DeepfakeDet-ViT", device_map="auto") - timm
How to use buildborderless/CommunityForensics-DeepfakeDet-ViT with timm:
import timm model = timm.create_model("hf_hub:buildborderless/CommunityForensics-DeepfakeDet-ViT", pretrained=True) - Inference
- Notebooks
- Google Colab
- Kaggle
chore: rename onnx_v1.1→onnx_legacy; update LICENSE
Browse files- onnx_v1.1/ → onnx_legacy/: old (incorrect) ONNX exports archived
- LICENSE: add 2025 + 2026 copyright lines for Han Yoon, Borderless / Ethix R&D
- Original copyright (c) 2025 Jeongsoo Park preserved as-is
- LICENSE +8 -2
- {onnx_v1.1 → onnx_legacy}/model.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/model_bnb4.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/model_fp16.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/model_int8.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/model_q4.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/model_q4f16.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/model_quantized.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/model_uint8.onnx +0 -0
- {onnx_v1.1 → onnx_legacy}/quantize_config.json +0 -0
LICENSE
CHANGED
|
@@ -1,7 +1,13 @@
|
|
| 1 |
MIT License
|
| 2 |
|
| 3 |
-
Copyright (c)
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 7 |
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
| 1 |
MIT License
|
| 2 |
|
| 3 |
+
Copyright (c) 2025 Jeongsoo Park
|
| 4 |
+
|
| 5 |
+
Copyright (c) 2025 Han Yoon, Borderless / Ethix R&D
|
| 6 |
+
|
| 7 |
+
Copyright (c) 2026 Han Yoon, Borderless / Ethix R&D
|
| 8 |
+
|
| 9 |
+
[HuggingFace integration, ONNX model exports, configuration fixes,
|
| 10 |
+
benchmark tools, and deployment infrastructure]
|
| 11 |
|
| 12 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 13 |
of this software and associated documentation files (the "Software"), to deal
|
{onnx_v1.1 → onnx_legacy}/model.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/model_bnb4.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/model_fp16.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/model_int8.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/model_q4.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/model_q4f16.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/model_quantized.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/model_uint8.onnx
RENAMED
|
File without changes
|
{onnx_v1.1 → onnx_legacy}/quantize_config.json
RENAMED
|
File without changes
|