gitextract_ybq2rcc9/ ├── .gitignore ├── README.md ├── experiments/ │ ├── case_hold.py │ ├── casehold_helpers.py │ ├── ecthr.py │ ├── eurlex.py │ ├── ledgar.py │ ├── scotus.py │ ├── trainer.py │ └── unfair_tos.py ├── models/ │ ├── deberta.py │ ├── hierbert.py │ └── tfidf_svm.py ├── requirements.txt ├── scripts/ │ ├── run_case_hold.sh │ ├── run_ecthr.sh │ ├── run_eurlex.sh │ ├── run_ledgar.sh │ ├── run_scotus.sh │ ├── run_tfidf_svm.sh │ └── run_unfair_tos.sh ├── statistics/ │ ├── compute_avg_lexglue_scores.py │ ├── compute_avg_scores.py │ ├── compute_lexglue_scores.py │ ├── report_model_results.py │ └── report_train_time.py └── utils/ ├── fix_casehold.py ├── load_hierbert.py ├── preprocess_unfair_tos.py └── subsample_ledgar.py