Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import os
|
3 |
+
|
4 |
+
DESC = """# Classify a hardcore video is anal or not
|
5 |
+
|
6 |
+
WARNING! Leave now if you are less than 18 years old!
|
7 |
+
|
8 |
+
* total 10 classes are supported: ["Non-Anal", "Anal"]
|
9 |
+
* "Other" means other classes such as SFW like kissing or talking or NSFW sucking tits.
|
10 |
+
|
11 |
+
I will soon be on job market and is now looking for full time or part time jobs focusing on developping AI models for sexy/NSFW videos/images, if you are interested in me or this work, feel free to contact [email protected]"""
|
12 |
+
|
13 |
+
with gr.Blocks() as demo:
|
14 |
+
with gr.Row():
|
15 |
+
gr.Markdown(DESC)
|
16 |
+
with gr.Tab("sex position classifier for video"):
|
17 |
+
gr.load("porntech/anal-internal", src="spaces", hf_token=os.environ["PORNTECH_SECRET"])
|
18 |
+
|
19 |
+
demo.launch()
|