Spaces:
Sleeping
Sleeping
File size: 11,211 Bytes
ade0829 5774866 ade0829 5774866 ade0829 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | import gradio as gr
import torch
import torch.nn as nn
import torch.nn.functional as F
import math
import tiktoken
from dataclasses import dataclass
from huggingface_hub import hf_hub_download
from safetensors.torch import load_file
# ==========================================
# 1. ARCHITECTURE (Required to load pii_model.pt)
# ==========================================
@dataclass
class TokenizerConfig:
name: str = "gpt2"
vocab_size: int = 50257
class SimpleTokenizer:
def __init__(self, config=None):
self.config = config or TokenizerConfig()
self.enc = tiktoken.get_encoding(self.config.name)
self.eos_token = "<|endoftext|>"
self.eos_token_id = self.enc.encode(self.eos_token, allowed_special={self.eos_token})[0]
def encode(self, text):
return self.enc.encode(text, allowed_special={self.eos_token})
def decode(self, ids):
return self.enc.decode(ids)
class RotaryPositionalEmbedding(nn.Module):
def __init__(self, d_model, max_seq_len=2048, theta=10000.0):
super().__init__()
assert d_model % 2 == 0
dim_indices = torch.arange(0, d_model, 2).float()
inv_freq = 1.0 / (theta ** (dim_indices / d_model))
positions = torch.arange(max_seq_len).float()
freqs = torch.outer(positions, inv_freq)
emb = freqs.repeat_interleave(2, dim=-1)
self.register_buffer("cos_cached", emb.cos())
self.register_buffer("sin_cached", emb.sin())
@staticmethod
def rotate_half(x):
x1 = x[..., : x.shape[-1] // 2]
x2 = x[..., x.shape[-1] // 2 :]
return torch.cat([-x2, x1], dim=-1)
def forward(self, x, offset=0):
# offset = absolute position of x[..., 0, :] in the full sequence.
# Needed for KV caching: a newly generated token at position `offset`
# must be rotated with that position's angle, not position 0.
seq_len = x.shape[-2]
cos = self.cos_cached[offset:offset + seq_len].unsqueeze(0).unsqueeze(0)
sin = self.sin_cached[offset:offset + seq_len].unsqueeze(0).unsqueeze(0)
return (x * cos) + (self.rotate_half(x) * sin)
def create_causal_mask(seq_len, device):
return torch.tril(torch.ones(seq_len, seq_len, device=device)).view(1, 1, seq_len, seq_len)
class MultiHeadAttention(nn.Module):
def __init__(self, d_model, num_heads, dropout=0.1):
super().__init__()
self.d_model = d_model
self.num_heads = num_heads
self.head_dim = d_model // num_heads
self.qkv_proj = nn.Linear(d_model, 3 * d_model, bias=False)
self.out_proj = nn.Linear(d_model, d_model, bias=False)
self.rotary = RotaryPositionalEmbedding(self.head_dim)
self.attn_dropout = nn.Dropout(dropout)
self.resid_dropout = nn.Dropout(dropout)
def forward(self, x, mask=None, past_kv=None, use_cache=False):
batch_size, seq_len, _ = x.shape
qkv = self.qkv_proj(x).reshape(batch_size, seq_len, 3, self.num_heads, self.head_dim).permute(2, 0, 3, 1, 4)
q, k, v = qkv[0], qkv[1], qkv[2]
offset = past_kv[0].shape[-2] if past_kv is not None else 0
q = self.rotary(q, offset=offset)
k = self.rotary(k, offset=offset)
if past_kv is not None:
past_k, past_v = past_kv
k = torch.cat([past_k, k], dim=-2)
v = torch.cat([past_v, v], dim=-2)
new_kv = (k, v) if use_cache else None
attn_scores = (q @ k.transpose(-2, -1)) / (self.head_dim ** 0.5)
if mask is not None:
attn_scores = attn_scores.masked_fill(mask == 0, float('-inf'))
attn_weights = self.attn_dropout(F.softmax(attn_scores, dim=-1))
attn_output = (attn_weights @ v).transpose(1, 2).contiguous().reshape(batch_size, seq_len, self.d_model)
return self.resid_dropout(self.out_proj(attn_output)), new_kv
class RMSNorm(nn.Module):
def __init__(self, d_model, eps=1e-6):
super().__init__()
self.weight = nn.Parameter(torch.ones(d_model))
self.eps = eps
def forward(self, x):
return x * torch.rsqrt(x.pow(2).mean(-1, keepdim=True) + self.eps) * self.weight
class SwiGLU(nn.Module):
def __init__(self, d_model, expansion_factor=4):
super().__init__()
hidden_dim = expansion_factor * d_model
self.w1 = nn.Linear(d_model, hidden_dim, bias=False)
self.w2 = nn.Linear(d_model, hidden_dim, bias=False)
self.w3 = nn.Linear(hidden_dim, d_model, bias=False)
def forward(self, x):
return self.w3(F.silu(self.w1(x)) * self.w2(x))
class TransformerBlock(nn.Module):
def __init__(self, d_model, num_heads, dropout=0.1):
super().__init__()
self.norm1 = RMSNorm(d_model)
self.attention = MultiHeadAttention(d_model, num_heads, dropout)
self.norm2 = RMSNorm(d_model)
self.ffn = SwiGLU(d_model)
def forward(self, x, mask=None, past_kv=None, use_cache=False):
attn_out, new_kv = self.attention(self.norm1(x), mask, past_kv, use_cache)
x = x + attn_out
x = x + self.ffn(self.norm2(x))
return x, new_kv
@dataclass
class GPTConfig:
vocab_size: int = 50257
d_model: int = 768
num_heads: int = 12
num_layers: int = 12
max_seq_len: int = 512
dropout: float = 0.1
embd_dropout: float = 0.1
class GPT(nn.Module):
def __init__(self, config):
super().__init__()
self.config = config
self.token_embedding = nn.Embedding(config.vocab_size, config.d_model)
self.embd_dropout = nn.Dropout(config.embd_dropout)
self.layers = nn.ModuleList([TransformerBlock(config.d_model, config.num_heads, config.dropout) for _ in range(config.num_layers)])
self.final_norm = RMSNorm(config.d_model)
self.lm_head = nn.Linear(config.d_model, config.vocab_size, bias=False)
self.token_embedding.weight = self.lm_head.weight
def forward(self, input_ids, past_kv_list=None, use_cache=False):
batch_size, seq_len = input_ids.shape
x = self.embd_dropout(self.token_embedding(input_ids))
if past_kv_list is None:
mask = create_causal_mask(seq_len, input_ids.device)
past_kv_list = [None] * len(self.layers)
else:
# decode step: single new token attending to cache + itself,
# every cached position is a valid attend target -> no mask needed
mask = None
new_past_kv_list = []
for layer, past_kv in zip(self.layers, past_kv_list):
x, new_kv = layer(x, mask, past_kv, use_cache)
new_past_kv_list.append(new_kv)
logits = self.lm_head(self.final_norm(x))
if use_cache:
return logits, new_past_kv_list
return logits
@torch.no_grad()
def generate(self, input_ids, max_new_tokens, temperature=0.2, stop_token_id=None):
# KV-cached generation: the prompt is processed once (prefill), then
# each new token only attends against its own Q against the cached
# K/V instead of recomputing attention over the whole sequence.
self.eval()
if input_ids.shape[1] > self.config.max_seq_len:
input_ids = input_ids[:, -self.config.max_seq_len:]
logits, past_kv = self.forward(input_ids, use_cache=True)
logits = logits[:, -1, :] / temperature
probs = F.softmax(logits, dim=-1)
next_token = torch.multinomial(probs, num_samples=1)
all_ids = torch.cat([input_ids, next_token], dim=1)
cur_len = input_ids.shape[1]
for _ in range(max_new_tokens - 1):
if cur_len >= self.config.max_seq_len:
break # no cache-eviction / sliding window implemented; stop cleanly
logits, past_kv = self.forward(next_token, past_kv_list=past_kv, use_cache=True)
logits = logits[:, -1, :] / temperature
probs = F.softmax(logits, dim=-1)
next_token = torch.multinomial(probs, num_samples=1)
all_ids = torch.cat([all_ids, next_token], dim=1)
cur_len += 1
if stop_token_id is not None and next_token.item() == stop_token_id:
break
return all_ids
# ==========================================
# 2. GRADIO INTERFACE SETUP (The Pro Way)
# ==========================================
print("Starting up PII Firewall...")
device = torch.device("cpu")
tokenizer = SimpleTokenizer()
try:
print("Downloading weights from Hugging Face Hub...")
model_path = hf_hub_download(
repo_id="nisarg6502/Llama3-150M-PII-Redactor",
filename="pii_model_epoch_1.safetensors"
)
# Instantiate the architecture
config = GPTConfig()
model = GPT(config)
print("Loading safetensors into memory...")
state_dict = load_file(model_path, device=str(device))
model.load_state_dict(state_dict)
model.to(device)
model.eval()
model_loaded = True
print("Model loaded successfully!")
except Exception as e:
model_loaded = False
print(f"Failed to load model: {str(e)}")
# ... (The rest of your scrub_text function and Gradio UI code stays exactly the same!) ...
def scrub_text(user_input):
if not model_loaded:
return f"Error: Could not load pii_model.pt."
if not user_input.strip():
return "Please enter text to redact."
# INVISIBLE FORMATTING: The user just types normal text, but we wrap it in the triggers!
prompt = f"[RAW] {user_input} [REDACTED] "
input_ids = torch.tensor([tokenizer.encode(prompt)], dtype=torch.long, device=device)
# Generate text with low temperature for strict factual output
output_ids = model.generate(input_ids, max_new_tokens=100, temperature=0.2, stop_token_id=tokenizer.eos_token_id)
full_output = tokenizer.decode(output_ids[0].tolist())
# Extract only the redacted portion to show the user
if "[REDACTED]" in full_output:
final_result = full_output.split("[REDACTED]")[-1].replace("<|endoftext|>", "").strip()
else:
final_result = full_output
return final_result
# Build the Web UI
with gr.Blocks() as demo:
gr.Markdown("# 🛡️ Local Privacy Firewall (150M Parameters)")
gr.Markdown("This model was fine-tuned from scratch to detect and redact Personally Identifiable Information (PII) before it ever leaves the local network.")
with gr.Row():
with gr.Column():
prompt_input = gr.Textbox(lines=4, label="Raw Text (Contains PII)", placeholder="Please send the receipt to michael.scott@dundermifflin.com...")
submit_btn = gr.Button("Scrub Data", variant="primary")
with gr.Column():
output_text = gr.Textbox(lines=4, label="Safe Text (Redacted)")
submit_btn.click(fn=scrub_text, inputs=[prompt_input], outputs=output_text)
demo.launch(share=True, theme=gr.themes.Monochrome())
|