Views
No views yet
| Metric | Class 0 (<=50K) | Class 1 (>50K) |
|---|---|---|
| Mean NN Distance | 1.63 | 1.57 |
| Feature Range Compliance | 94.5% | 76.1% |
| Membership Proxy | 63.0% | 98.5% |
| Mean Confidence | 99.4% | 99.96% |
reconstructions/class_0_reconstructed.npy — 200 reconstructed samples (class 0)reconstructions/class_1_reconstructed.npy — 200 reconstructed samples (class 1)reconstructions/class_0_sample.csv — 20 human-readable samplesreconstructions/class_1_sample.csv — 20 human-readable samplesmetrics.json — Full evaluation metricstarget_mlp.pt — Trained target model weightsvae_prior.pt — Trained VAE prior weights1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = 'shumaket/adult-census-model-inversion'
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)AutoModelForCausalLM with the appropriate AutoModel class.