Add pipeline tag and library name (#1)
Browse files- Add pipeline tag and library name (963ed2c826993b98483a1550a017eabfa3d0e0d5)
Co-authored-by: Niels Rogge <[email protected]>
README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
3 |
---
|
4 |
|
5 |
# Unlocking the Hidden Potential of CLIP in Generalizable Deepfake Detection
|
@@ -39,7 +41,7 @@ Generalization of models trained on the FF++ dataset to unseen datasets and forg
|
|
39 |
|
40 |
## Example
|
41 |
|
42 |
-
Find the code in our [github](https://github.com/yermandy/deepfake-detection) project. Read `inference.py`, it automatically downloads the model from [huggingface](https://huggingface.co/yermandy/deepfake-detection/tree/main)
|
43 |
|
44 |
``` bash
|
45 |
python inference.py
|
@@ -60,4 +62,4 @@ python inference.py
|
|
60 |
primaryClass={cs.CV},
|
61 |
url={https://arxiv.org/abs/2503.19683},
|
62 |
}
|
63 |
-
```
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
library_name: transformers
|
4 |
+
pipeline_tag: image-classification
|
5 |
---
|
6 |
|
7 |
# Unlocking the Hidden Potential of CLIP in Generalizable Deepfake Detection
|
|
|
41 |
|
42 |
## Example
|
43 |
|
44 |
+
Find the code in our [github](https://github.com/yermandy/deepfake-detection) project. Read `inference.py`, it automatically downloads the model from [huggingface](https://huggingface.co/yermandy/deepfake-detection/tree/main) and runs inference on sample images. Make sure to have the required dependencies installed before running the script.
|
45 |
|
46 |
``` bash
|
47 |
python inference.py
|
|
|
62 |
primaryClass={cs.CV},
|
63 |
url={https://arxiv.org/abs/2503.19683},
|
64 |
}
|
65 |
+
```
|