Anthropic AI Security Fellows Program Application
Applicant: Anokhi Creber
Contact: anokhicreber@gmail.com
Date: January 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Code Sample 3: Privacy Risk Assessment for Incidental Human Face Capture | |
| Critical challenge: Visual search systems (e.g., searching for pets) inevitably | |
| capture human faces. How do we quantify and mitigate this privacy risk? | |
| Research Question: Can we automatically assess privacy risk from incidentally | |
| captured faces and make appropriate privacy-preserving decisions? | |
| """ | |
| import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Code Sample 2: Membership Inference Attack on Visual Embeddings | |
| Tests if adversary can determine whether specific image was in training set. | |
| Research Question: Do visual embeddings leak information about incidentally | |
| captured humans in distributed search scenarios? | |
| Based on: Shokri et al. (2017) "Membership Inference Attacks Against ML Models" | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Code Sample 1: Privacy-Preserving Visual Embeddings with Differential Privacy | |
| Research prototype for evaluating privacy-utility tradeoffs in visual search systems. | |
| Research Question: What noise levels preserve privacy without destroying search utility? | |
| """ | |
| import torch | |
| import torch.nn as nn | |
| import numpy as np |