├── .editorconfig ├── .gitignore ├── LICENSE ├── Ollama_MMLU_Pro.ipynb ├── README.md ├── config.toml ├── requirements.txt └── run_openai.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chigkim/Ollama-MMLU-Pro/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chigkim/Ollama-MMLU-Pro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chigkim/Ollama-MMLU-Pro/HEAD/LICENSE -------------------------------------------------------------------------------- /Ollama_MMLU_Pro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chigkim/Ollama-MMLU-Pro/HEAD/Ollama_MMLU_Pro.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chigkim/Ollama-MMLU-Pro/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chigkim/Ollama-MMLU-Pro/HEAD/config.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | datasets 2 | openai 3 | toml -------------------------------------------------------------------------------- /run_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chigkim/Ollama-MMLU-Pro/HEAD/run_openai.py --------------------------------------------------------------------------------