Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import os
|
3 |
+
import requests
|
4 |
+
import json
|
5 |
+
from huggingface_hub import login
|
6 |
+
|
7 |
+
|
8 |
+
myip = os.environ["myip"]
|
9 |
+
myport = os.environ["myport"]
|
10 |
+
|
11 |
+
|
12 |
+
is_spaces = True if "SPACE_ID" in os.environ else False
|
13 |
+
|
14 |
+
is_shared_ui = False
|
15 |
+
|
16 |
+
|
17 |
+
def excute_udiff(diffusion_model_id, concept, attacker):
|
18 |
+
print(f"my IP is {myip}, my port is {myport}")
|
19 |
+
print(f"my input is diffusion_model_id: {diffusion_model_id}, concept: {concept}, attacker: {attacker}")
|
20 |
+
result = requests.post('http://{}:{}/udiff'.format(myip, myport), json={"diffusion_model_id": diffusion_model_id, "concept": concept, "attacker": attacker})
|
21 |
+
result = result.text[1:-1]
|
22 |
+
|
23 |
+
return f"The unsafe prompt is: {result}"
|
24 |
+
|
25 |
+
|
26 |
+
css = '''
|
27 |
+
.instruction{position: absolute; top: 0;right: 0;margin-top: 0px !important}
|
28 |
+
.arrow{position: absolute;top: 0;right: -110px;margin-top: -8px !important}
|
29 |
+
#component-4, #component-3, #component-10{min-height: 0}
|
30 |
+
.duplicate-button img{margin: 0}
|
31 |
+
#img_1, #img_2, #img_3, #img_4{height:15rem}
|
32 |
+
#mdStyle{font-size: 0.7rem}
|
33 |
+
#titleCenter {text-align:center}
|
34 |
+
'''
|
35 |
+
|
36 |
+
|
37 |
+
with gr.Blocks(css=css) as demo:
|
38 |
+
gr.Markdown("## Unlearn Diffusions Attack")
|
39 |
+
gr.Markdown("Check if your model is safe.")
|
40 |
+
|
41 |
+
with gr.Row() as udiff:
|
42 |
+
with gr.Column():
|
43 |
+
# gr.Markdown("Please upload your model id.")
|
44 |
+
diffusion_model_id = gr.Textbox(label='diffusion_model_id')
|
45 |
+
concept = gr.Textbox(label='concept')
|
46 |
+
attacker = gr.Textbox(label='attacker')
|
47 |
+
|
48 |
+
start_button = gr.Button("Attack!")
|
49 |
+
|
50 |
+
with gr.Column():
|
51 |
+
result = gr.Textbox(label="attack prompt")
|
52 |
+
|
53 |
+
with gr.Column():
|
54 |
+
gr.Examples(examples=[
|
55 |
+
["CompVis/stable-diffusion-v1-4", "nudity", "text_grad"]
|
56 |
+
], inputs=[diffusion_model_id, concept, attacker])
|
57 |
+
|
58 |
+
start_button.click(fn=excute_udiff, inputs=[diffusion_model_id, concept, attacker], outputs=result, api_name="udiff")
|
59 |
+
|
60 |
+
|
61 |
+
# demo.queue(default_enabled=False, api_open=False, max_size=5).launch(debug=True, show_api=False)
|
62 |
+
demo.queue().launch(server_name='0.0.0.0')
|