Views
No views yet
1conda create -n localized-cache-erasure python=3.10 pip -y
2conda activate localized-cache-erasure
3
4python -m pip install \
5 --index-url https://download.pytorch.org/whl/cu128 \
6 torch==2.10.0
7python -m pip install -r requirements.txt
8
9python -m pip check
10python -c "import torch; print(torch.__version__, torch.version.cuda); assert torch.cuda.is_available()"python evaluate.py --input example.json1{
2 "context": "Context available before the query.",
3 "erase": "An exact substring to erase.",
4 "query": "Question asked after erasure."
5}