├── LICENSE ├── MODEL_LICENSE ├── README.md ├── conda-env.yml ├── data ├── gpt-3.5-turbo-testset-v1.json ├── pandalm-7b-testset-v1.json ├── pipeline-sanity-check.json ├── testset-inference-v1.json └── testset-v1.json ├── figures ├── inst-tune-pipeline.png ├── logo.png ├── main-figure.png └── pandalm-webui.png ├── pandalm ├── __init__.py ├── assets │ ├── __init__.py │ ├── ds_config_zero2.json │ └── ds_config_zero2_linear_lr.json ├── core │ ├── __init__.py │ ├── customtrainer.py │ ├── datasets.py │ ├── global_var.py │ └── nets.py ├── inst-tune.py ├── run-gradio.py ├── scripts │ └── inst-tune.sh └── utils │ ├── __init__.py │ ├── candidate_model_inference.py │ ├── evaluation_pipeline.py │ └── pandalm_inference.py ├── requirements.txt └── test.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/LICENSE -------------------------------------------------------------------------------- /MODEL_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/MODEL_LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/README.md -------------------------------------------------------------------------------- /conda-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/conda-env.yml -------------------------------------------------------------------------------- /data/gpt-3.5-turbo-testset-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/data/gpt-3.5-turbo-testset-v1.json -------------------------------------------------------------------------------- /data/pandalm-7b-testset-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/data/pandalm-7b-testset-v1.json -------------------------------------------------------------------------------- /data/pipeline-sanity-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/data/pipeline-sanity-check.json -------------------------------------------------------------------------------- /data/testset-inference-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/data/testset-inference-v1.json -------------------------------------------------------------------------------- /data/testset-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/data/testset-v1.json -------------------------------------------------------------------------------- /figures/inst-tune-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/figures/inst-tune-pipeline.png -------------------------------------------------------------------------------- /figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/figures/logo.png -------------------------------------------------------------------------------- /figures/main-figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/figures/main-figure.png -------------------------------------------------------------------------------- /figures/pandalm-webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/figures/pandalm-webui.png -------------------------------------------------------------------------------- /pandalm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/__init__.py -------------------------------------------------------------------------------- /pandalm/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pandalm/assets/ds_config_zero2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/assets/ds_config_zero2.json -------------------------------------------------------------------------------- /pandalm/assets/ds_config_zero2_linear_lr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/assets/ds_config_zero2_linear_lr.json -------------------------------------------------------------------------------- /pandalm/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/core/__init__.py -------------------------------------------------------------------------------- /pandalm/core/customtrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/core/customtrainer.py -------------------------------------------------------------------------------- /pandalm/core/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/core/datasets.py -------------------------------------------------------------------------------- /pandalm/core/global_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/core/global_var.py -------------------------------------------------------------------------------- /pandalm/core/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/core/nets.py -------------------------------------------------------------------------------- /pandalm/inst-tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/inst-tune.py -------------------------------------------------------------------------------- /pandalm/run-gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/run-gradio.py -------------------------------------------------------------------------------- /pandalm/scripts/inst-tune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/scripts/inst-tune.sh -------------------------------------------------------------------------------- /pandalm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/utils/__init__.py -------------------------------------------------------------------------------- /pandalm/utils/candidate_model_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/utils/candidate_model_inference.py -------------------------------------------------------------------------------- /pandalm/utils/evaluation_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/utils/evaluation_pipeline.py -------------------------------------------------------------------------------- /pandalm/utils/pandalm_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/pandalm/utils/pandalm_inference.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeOpenML/PandaLM/HEAD/test.py --------------------------------------------------------------------------------