├── AI_ETHICS.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── assets ├── codegen_logo.png └── two.gif ├── codegen1 ├── LICENSE.txt ├── README.md ├── benchmark │ ├── README.md │ ├── mtpb.jsonl │ ├── mtpb_exec.py │ └── mtpb_sample.py ├── jaxformer │ └── hf │ │ ├── codegen │ │ ├── configuration_codegen.py │ │ └── modeling_codegen.py │ │ ├── sample.py │ │ └── train_deepspeed.py └── requirements.txt ├── codegen2 ├── LICENSE ├── README.md └── requirements.txt └── codegen25 ├── LICENSE ├── README.md └── requirements.txt /AI_ETHICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/AI_ETHICS.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/codegen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/assets/codegen_logo.png -------------------------------------------------------------------------------- /assets/two.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/assets/two.gif -------------------------------------------------------------------------------- /codegen1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/LICENSE.txt -------------------------------------------------------------------------------- /codegen1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/README.md -------------------------------------------------------------------------------- /codegen1/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/benchmark/README.md -------------------------------------------------------------------------------- /codegen1/benchmark/mtpb.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/benchmark/mtpb.jsonl -------------------------------------------------------------------------------- /codegen1/benchmark/mtpb_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/benchmark/mtpb_exec.py -------------------------------------------------------------------------------- /codegen1/benchmark/mtpb_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/benchmark/mtpb_sample.py -------------------------------------------------------------------------------- /codegen1/jaxformer/hf/codegen/configuration_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/jaxformer/hf/codegen/configuration_codegen.py -------------------------------------------------------------------------------- /codegen1/jaxformer/hf/codegen/modeling_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/jaxformer/hf/codegen/modeling_codegen.py -------------------------------------------------------------------------------- /codegen1/jaxformer/hf/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/jaxformer/hf/sample.py -------------------------------------------------------------------------------- /codegen1/jaxformer/hf/train_deepspeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/jaxformer/hf/train_deepspeed.py -------------------------------------------------------------------------------- /codegen1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen1/requirements.txt -------------------------------------------------------------------------------- /codegen2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen2/LICENSE -------------------------------------------------------------------------------- /codegen2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen2/README.md -------------------------------------------------------------------------------- /codegen2/requirements.txt: -------------------------------------------------------------------------------- 1 | transformers==4.30.0 2 | -------------------------------------------------------------------------------- /codegen25/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen25/LICENSE -------------------------------------------------------------------------------- /codegen25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/CodeGen/HEAD/codegen25/README.md -------------------------------------------------------------------------------- /codegen25/requirements.txt: -------------------------------------------------------------------------------- 1 | transformers>=4.29.2 2 | tiktoken==0.4.0 3 | --------------------------------------------------------------------------------