AeonAIRisk commited on
Commit
9889c08
·
verified ·
1 Parent(s): 6f8ece9

Upload load_poc.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. load_poc.py +5 -0
load_poc.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import pickle
2
+ from pathlib import Path
3
+ p=Path(__file__).with_name('evil_final.pkl')
4
+ with open(p,'rb') as f: pickle.load(f)
5
+ print('loaded')