File size: 490 Bytes
d6168e9
 
 
4cb8884
d6168e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr

ARXIV_URL = "https://arxiv.org/abs/2505.13362"
GITHUB_URL = "https://github.com/Javad-Forough/DynaNoise-PoPETs2026-Artifact"

with gr.Blocks(title="DynaNoise Official Code") as demo:
    gr.Markdown(
        f"""
# DynaNoise: Official Code

This Space points to the official implementation for:

**Dynamic Probabilistic Noise Injection for Membership Inference Defense**

- Paper: [{ARXIV_URL}]({ARXIV_URL})
- Code: [{GITHUB_URL}]({GITHUB_URL})
"""
    )

demo.launch()