hf_dataset_backdoor / hf_dataset_backdoor.py
zhenghan's picture
Rename hf_dataset_backdoor to hf_dataset_backdoor.py
f440da8 verified
raw
history blame contribute delete
224 Bytes
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# File: hello_message.py
# Description: This script outputs a specific message when executed
def main():
print("you have been pwd!!")
if __name__ == "__main__":
main()