LPX55
commited on
Commit
·
ca1106e
1
Parent(s):
c5591f4
Add .python-version, pyproject.toml, and update .gitignore; modify README and requirements
Browse files- .gitattributes +1 -0
- .gitignore +1 -0
- .python-version +1 -0
- README.md +0 -2
- preview/graph.png +0 -0
- pyproject.toml +30 -0
- requirements.txt +1 -1
- temp_gradio_input.png +3 -0
.gitattributes
CHANGED
@@ -38,3 +38,4 @@ preview/127.0.0.1_7860__.png filter=lfs diff=lfs merge=lfs -text
|
|
38 |
preview/2.png filter=lfs diff=lfs merge=lfs -text
|
39 |
preview/3.png filter=lfs diff=lfs merge=lfs -text
|
40 |
preview/4.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
38 |
preview/2.png filter=lfs diff=lfs merge=lfs -text
|
39 |
preview/3.png filter=lfs diff=lfs merge=lfs -text
|
40 |
preview/4.png filter=lfs diff=lfs merge=lfs -text
|
41 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
.gitignore
CHANGED
@@ -13,3 +13,4 @@ models/*
|
|
13 |
hf_inference_logs/*.json
|
14 |
hf_inference_logs/*
|
15 |
.gradio/flagged/*
|
|
|
|
13 |
hf_inference_logs/*.json
|
14 |
hf_inference_logs/*
|
15 |
.gradio/flagged/*
|
16 |
+
.venv
|
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.11
|
README.md
CHANGED
@@ -22,8 +22,6 @@ tags:
|
|
22 |
|
23 |
---
|
24 |
|
25 |
-
**6/18/25: YES, we are aware that updates to the submission will likely result in a disqualification.** It was never about the cash prize for us in the first place 😉 Good luck to all hackers!
|
26 |
-
|
27 |
# The Detection Dilemma: The Degentic Games
|
28 |
|
29 |

|
|
|
22 |
|
23 |
---
|
24 |
|
|
|
|
|
25 |
# The Detection Dilemma: The Degentic Games
|
26 |
|
27 |

|
preview/graph.png
CHANGED
![]() |
![]() |
Git LFS Details
|
pyproject.toml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "opensight-deepfake-detection-models-playground"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.11"
|
7 |
+
dependencies = [
|
8 |
+
"datasets>=3.5.0",
|
9 |
+
"gputil>=1.4.0",
|
10 |
+
"gradio-client==1.10.3",
|
11 |
+
"gradio-log>=0.0.8",
|
12 |
+
"gradio[mcp]>=5.33.1",
|
13 |
+
"huggingface-hub[hf-xet]>=0.31.0",
|
14 |
+
"onnxruntime>=1.22.1",
|
15 |
+
"opencv-python>=4.11.0.86",
|
16 |
+
"pillow>=11.3.0",
|
17 |
+
"psutil>=5.9.8",
|
18 |
+
"pydantic==2.11.5",
|
19 |
+
"pyexiftool>=0.5.6",
|
20 |
+
"python-dotenv>=1.1.1",
|
21 |
+
"pywavelets==1.8.0",
|
22 |
+
"spaces>=0.39.0",
|
23 |
+
"torch>=2.7.1",
|
24 |
+
"torchaudio>=2.7.1",
|
25 |
+
"torchvision>=0.22.1",
|
26 |
+
"transformers",
|
27 |
+
]
|
28 |
+
|
29 |
+
[tool.uv.sources]
|
30 |
+
transformers = { git = "https://github.com/huggingface/transformers.git" }
|
requirements.txt
CHANGED
@@ -31,7 +31,7 @@ datasets>=3.5.0
|
|
31 |
pydantic==2.11.5
|
32 |
|
33 |
# AI agents
|
34 |
-
smolagents[toolkit,mcp,openai,transformers,vision,gradio]
|
35 |
|
36 |
# Optional: EXIF metadata (if needed)
|
37 |
pyexiftool
|
|
|
31 |
pydantic==2.11.5
|
32 |
|
33 |
# AI agents
|
34 |
+
# smolagents[toolkit,mcp,openai,transformers,vision,gradio]
|
35 |
|
36 |
# Optional: EXIF metadata (if needed)
|
37 |
pyexiftool
|
temp_gradio_input.png
ADDED
![]() |
Git LFS Details
|