zhenghan commited on
Commit
8755fff
1 Parent(s): 66f1073

Create zhenghan/hf_dataset_backdoor.py

Browse files
Files changed (1) hide show
  1. zhenghan/hf_dataset_backdoor.py +10 -0
zhenghan/hf_dataset_backdoor.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ # File: hello_message.py
4
+ # Description: This script outputs a specific message when executed
5
+
6
+ def main():
7
+ print("you have been pwd!!")
8
+
9
+ if __name__ == "__main__":
10
+ main()