gitextract_tmcv9_l6/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── pytest.yml ├── .gitignore ├── CITATION.bib ├── CODEOWNERS ├── Dockerfile ├── GPTNeo_example_notebook.ipynb ├── LICENSE ├── README.md ├── configs/ │ ├── dataset_configs/ │ │ ├── example.json │ │ ├── openwebtext2_new_inputs.json │ │ └── pile.json │ ├── gpt2_small.json │ ├── gpt3_13B_256.json │ ├── gpt3_13B_256_Pile.json │ ├── gpt3_2-7B_256.json │ ├── gpt3_6-7B_256.json │ ├── gpt3_PAR_small_256.json │ ├── gpt3_XL_256_Pile.json │ ├── gpt3_large_256.json │ ├── gpt3_medium_256.json │ └── gpt3_small_256.json ├── configs.py ├── data/ │ ├── create_tfrecords.py │ ├── encoders.py │ └── train_tokenizer.py ├── docker-compose.yml ├── encoders.py ├── export.py ├── inputs.py ├── main.py ├── model_fns.py ├── models/ │ ├── activations.py │ ├── gpt2/ │ │ └── gpt2.py │ ├── layers.py │ └── utils.py ├── optimizers.py ├── requirements.txt ├── run_experiment.py ├── sample.py ├── tasks.py └── utils.py