gitextract_1_8dddfr/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── classify.py ├── generate.py ├── llama.py ├── model/ │ ├── features.txt │ ├── model │ ├── mu │ ├── sigma │ └── trigram_model.pkl ├── requirements.txt ├── results/ │ ├── best_features_custom.txt │ ├── best_features_essay.txt │ ├── best_features_four.txt │ ├── best_features_no_gpt.txt │ ├── best_features_old.txt │ ├── best_features_one.txt │ ├── best_features_only_ada.txt │ ├── best_features_reuter.txt │ ├── best_features_three.txt │ ├── best_features_two.txt │ ├── best_features_wp.txt │ ├── document_size.npy │ ├── ghostbuster.csv │ ├── other.csv │ ├── perturb.csv │ ├── perturb_char.npy │ ├── perturb_sent.npy │ ├── roberta.csv │ └── training_size.npy ├── roberta/ │ ├── roberta_results.csv │ ├── run_roberta.py │ └── train.py ├── run.py ├── setup.py ├── train.py └── utils/ ├── __init__.py ├── featurize.py ├── generate.py ├── load.py ├── n_gram.py ├── score.py ├── symbolic.py └── write_logprobs.py