Create zhenghan/hf_dataset_backdoor.py
Browse files
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()
|