├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── 1_bug-report.yml │ ├── 2_feature-request.yml │ ├── 3_documentation.yml │ └── config.yml └── workflows │ ├── basic_check.yml │ ├── build_docker_image.yml │ └── sync_files.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Cookbook ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTING_cn.md ├── README.md ├── README_cn.md ├── assets │ ├── LM_Studio-0.png │ ├── LM_Studio-1.png │ ├── LM_Studio-2.png │ ├── llama-cpp-0.jpg │ ├── mind_cn.png │ ├── mind_en.png │ ├── ollama-0.png │ ├── ollama-1.png │ ├── ollama-2.png │ ├── ollama-3.png │ ├── ollama-4.png │ ├── ollama-5.png │ ├── ollama-6.png │ ├── ollama-7.png │ └── ollama-8.png ├── cn │ ├── api │ │ ├── function_calling │ │ │ └── function_calling_llamaindex.ipynb │ │ └── rag │ │ │ ├── yi_rag_langchain.ipynb │ │ │ └── yi_rag_llamaindex.ipynb │ ├── ecosystem │ │ ├── assets │ │ │ ├── 2 │ │ │ │ ├── img(4-1).png │ │ │ │ ├── img(4-2).png │ │ │ │ ├── img(4-3).png │ │ │ │ ├── img(4-4).png │ │ │ │ ├── img(4-5).png │ │ │ │ ├── img(4-6).png │ │ │ │ └── img(4-7).png │ │ │ ├── 3 │ │ │ │ ├── img(3-1).png │ │ │ │ ├── img(3-2).png │ │ │ │ ├── img(3-3).png │ │ │ │ └── img(3-4).png │ │ │ ├── 4 │ │ │ │ ├── img(2-1).png │ │ │ │ ├── img.png │ │ │ │ ├── img2.png │ │ │ │ ├── img3.png │ │ │ │ ├── img4.png │ │ │ │ ├── img_1.png │ │ │ │ └── train_memory(GiB).png │ │ │ └── 5 │ │ │ │ ├── img(5-1).png │ │ │ │ ├── img(5-2).jpg │ │ │ │ ├── img(5-3).png │ │ │ │ └── img(5-4).png │ │ ├── yi-vl最佳实践.md │ │ ├── 使用Yi大模型玩转街霸三.md │ │ ├── 基于LlamaIndex和Yi-large构建智能问答系统.md │ │ ├── 基于yi-large构建思维导图生成器.md │ │ └── 强化Yi-1.5-6B-Chat的数学和逻辑能力.md │ └── opensource │ │ ├── Inference │ │ ├── Inference_using_lmdeploy.ipynb │ │ ├── Inference_using_swift.ipynb │ │ ├── Inference_using_transformers.ipynb │ │ └── vLLM_Inference_tutorial.ipynb │ │ ├── fine_tune │ │ ├── finetune-yi-with-llamafactory.md │ │ └── finetune-yi-with-swift.md │ │ ├── function_calling │ │ ├── function_calling.ipynb │ │ └── function_calling_llamaindex.ipynb │ │ ├── local │ │ ├── local-llama.cpp.md │ │ ├── local-lm-studio.md │ │ ├── local-mlx.md │ │ └── local-ollama.md │ │ ├── quantization │ │ ├── autoawq-yi-quantization.md │ │ ├── autogptq-yi-quantization.md │ │ └── swift-yi-quantization.md │ │ └── rag │ │ ├── yi_rag_langchain.ipynb │ │ └── yi_rag_llamaindex.ipynb └── en │ ├── api │ ├── function_calling │ │ └── function_calling_llamaindex.ipynb │ └── rag │ │ ├── yi_rag_langchain.ipynb │ │ └── yi_rag_llamaindex.ipynb │ ├── ecosystem │ ├── Building_a_Mind_Map_Generator_Powered_by_Yi-Large.md │ ├── Building_an_Intelligent_Q&A_System_Based_on_LlamaIndex_and_Yi-large.md │ ├── Enhancing_the_Mathematical_and_Logical_Reasoning_Abilities_of_Yi-1.5-6B-Chat.md │ ├── Mastering_Street_Fighter_III_with_the_Yi_Language_Model.md │ ├── assets │ │ ├── 2 │ │ │ ├── img(4-1).png │ │ │ ├── img(4-2).png │ │ │ ├── img(4-3).png │ │ │ ├── img(4-4).png │ │ │ ├── img(4-5).png │ │ │ ├── img(4-6).png │ │ │ └── img(4-7).png │ │ ├── 3 │ │ │ ├── img(3-1).png │ │ │ ├── img(3-2).png │ │ │ ├── img(3-3).png │ │ │ └── img(3-4).png │ │ ├── 4 │ │ │ ├── img(2-1).png │ │ │ ├── img.png │ │ │ ├── img2.png │ │ │ ├── img3.png │ │ │ ├── img4.png │ │ │ ├── img_1.png │ │ │ └── train_memory(GiB).png │ │ └── 5 │ │ │ ├── img(5-1).png │ │ │ ├── img(5-2).jpg │ │ │ ├── img(5-3).png │ │ │ └── img(5-4).png │ └── yi-vl-best-practice.md │ └── opensource │ ├── Inference │ ├── Inference_using_lmdeploy.ipynb │ ├── Inference_using_swift.ipynb │ ├── Inference_using_transformers.ipynb │ └── vLLM_Inference_tutorial.ipynb │ ├── fine_tune │ ├── finetune-yi-with-llamafactory.md │ └── finetune-yi-with-swift.md │ ├── function_calling │ ├── function_calling.ipynb │ └── function_calling_llamaindex.ipynb │ ├── local │ ├── local-llama.cpp.md │ ├── local-lm-studio.md │ ├── local-mlx.md │ └── local-ollama.md │ ├── quantization │ ├── autoawq-yi-quantization.md │ ├── autogptq-yi-quantization.md │ └── swift-yi-quantization.md │ └── rag │ ├── yi_rag_langchain.ipynb │ └── yi_rag_llamaindex.ipynb ├── Dockerfile ├── Events └── readme.md ├── HUGGINGFACE_README.md ├── LICENSE ├── MODEL_LICENSE_AGREEMENT.txt ├── NOTICE ├── README.md ├── README ├── huggingface_header.md ├── modelscope_header.md └── wisemodel_header.md ├── README_CN.md ├── VL ├── README.md ├── cli.py ├── images │ ├── cats.jpg │ └── extreme_ironing.jpg ├── llava │ ├── __init__.py │ ├── conversation.py │ ├── mm_utils.py │ └── model │ │ ├── __init__.py │ │ ├── clip_encoder │ │ ├── builder.py │ │ └── clip_encoder.py │ │ ├── constants.py │ │ ├── llava_arch.py │ │ ├── llava_llama.py │ │ └── multimodal_projector │ │ └── builder.py ├── openai_api.py ├── requirements.txt ├── single_inference.py └── web_demo.py ├── assets └── img │ ├── 1.png │ ├── 2.png │ ├── 9b.png │ ├── Apply_04.png │ ├── Yi-9B_benchmark_code.png │ ├── Yi-9B_benchmark_details.png │ ├── Yi-9B_benchmark_math.png │ ├── Yi-9B_benchmark_overall.png │ ├── Yi-9B_benchmark_text.png │ ├── Yi_logo_icon_dark.svg │ ├── Yi_logo_icon_light.svg │ ├── benchmark_base.png │ ├── benchmark_chat.png │ ├── coder.gif │ ├── coder │ ├── bench.webp │ ├── bench1.webp │ ├── bench2.webp │ ├── bench3.webp │ ├── bench31.webp │ ├── bench4.webp │ ├── bench5.webp │ ├── bench6.webp │ ├── bench7.webp │ ├── demo1.gif │ ├── demo2.gif │ ├── test │ └── yi-coder-calculator-demo.gif │ ├── events │ ├── 1 │ ├── a.jpeg │ ├── b.jpeg │ ├── c.jpeg │ ├── down.gif │ └── pic.mp4 │ ├── fireworksai.png │ ├── gh.png │ ├── quick_start_path.png │ ├── quick_start_path_CN.png │ ├── yi_34b_chat_web_demo.gif │ ├── yi_llama_cpp1.png │ └── yi_llama_cpp2.png ├── conda-lock.yml ├── demo ├── README.md ├── text_generation.py ├── text_generation_tp.py └── web_demo.py ├── docs └── README_llama.cpp.md ├── finetune ├── README.md ├── README_CN.md ├── constant.py ├── scripts │ ├── run_eval.sh │ ├── run_sft_Yi_34b.sh │ ├── run_sft_Yi_6b.sh │ └── run_sft_lora_Yi_6b.sh ├── sft │ ├── main.py │ └── prompt_eval.py ├── utils │ ├── data │ │ ├── data_utils.py │ │ └── raw_datasets.py │ ├── ds_utils.py │ ├── model │ │ └── model_utils.py │ ├── module │ │ └── lora.py │ ├── perf.py │ └── utils.py └── yi_example_dataset │ └── data │ ├── eval.jsonl │ └── train.jsonl ├── pyproject.toml ├── quantization ├── awq │ ├── README.md │ ├── eval_quantized_model.py │ └── quant_autoawq.py └── gptq │ ├── README.md │ ├── eval_quantized_model.py │ └── quant_autogptq.py └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.github/ISSUE_TEMPLATE/1_bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.github/ISSUE_TEMPLATE/2_feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.github/ISSUE_TEMPLATE/3_documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/basic_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.github/workflows/basic_check.yml -------------------------------------------------------------------------------- /.github/workflows/build_docker_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.github/workflows/build_docker_image.yml -------------------------------------------------------------------------------- /.github/workflows/sync_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.github/workflows/sync_files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Cookbook/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ``` 2 | 记录版本变化 3 | ``` 4 | -------------------------------------------------------------------------------- /Cookbook/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cookbook/CONTRIBUTING_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/CONTRIBUTING_cn.md -------------------------------------------------------------------------------- /Cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/README.md -------------------------------------------------------------------------------- /Cookbook/README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/README_cn.md -------------------------------------------------------------------------------- /Cookbook/assets/LM_Studio-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/LM_Studio-0.png -------------------------------------------------------------------------------- /Cookbook/assets/LM_Studio-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/LM_Studio-1.png -------------------------------------------------------------------------------- /Cookbook/assets/LM_Studio-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/LM_Studio-2.png -------------------------------------------------------------------------------- /Cookbook/assets/llama-cpp-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/llama-cpp-0.jpg -------------------------------------------------------------------------------- /Cookbook/assets/mind_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/mind_cn.png -------------------------------------------------------------------------------- /Cookbook/assets/mind_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/mind_en.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-0.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-1.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-2.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-3.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-4.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-5.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-6.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-7.png -------------------------------------------------------------------------------- /Cookbook/assets/ollama-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/assets/ollama-8.png -------------------------------------------------------------------------------- /Cookbook/cn/api/function_calling/function_calling_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/api/function_calling/function_calling_llamaindex.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/api/rag/yi_rag_langchain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/api/rag/yi_rag_langchain.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/api/rag/yi_rag_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/api/rag/yi_rag_llamaindex.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/2/img(4-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/2/img(4-1).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/2/img(4-2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/2/img(4-2).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/2/img(4-3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/2/img(4-3).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/2/img(4-4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/2/img(4-4).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/2/img(4-5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/2/img(4-5).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/2/img(4-6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/2/img(4-6).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/2/img(4-7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/2/img(4-7).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/3/img(3-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/3/img(3-1).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/3/img(3-2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/3/img(3-2).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/3/img(3-3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/3/img(3-3).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/3/img(3-4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/3/img(3-4).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/4/img(2-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/4/img(2-1).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/4/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/4/img.png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/4/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/4/img2.png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/4/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/4/img3.png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/4/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/4/img4.png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/4/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/4/img_1.png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/4/train_memory(GiB).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/4/train_memory(GiB).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/5/img(5-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/5/img(5-1).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/5/img(5-2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/5/img(5-2).jpg -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/5/img(5-3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/5/img(5-3).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/assets/5/img(5-4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/assets/5/img(5-4).png -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/yi-vl最佳实践.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/yi-vl最佳实践.md -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/使用Yi大模型玩转街霸三.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/使用Yi大模型玩转街霸三.md -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/基于LlamaIndex和Yi-large构建智能问答系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/基于LlamaIndex和Yi-large构建智能问答系统.md -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/基于yi-large构建思维导图生成器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/基于yi-large构建思维导图生成器.md -------------------------------------------------------------------------------- /Cookbook/cn/ecosystem/强化Yi-1.5-6B-Chat的数学和逻辑能力.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/ecosystem/强化Yi-1.5-6B-Chat的数学和逻辑能力.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/Inference/Inference_using_lmdeploy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/Inference/Inference_using_lmdeploy.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/opensource/Inference/Inference_using_swift.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/Inference/Inference_using_swift.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/opensource/Inference/Inference_using_transformers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/Inference/Inference_using_transformers.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/opensource/Inference/vLLM_Inference_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/Inference/vLLM_Inference_tutorial.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/opensource/fine_tune/finetune-yi-with-llamafactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/fine_tune/finetune-yi-with-llamafactory.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/fine_tune/finetune-yi-with-swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/fine_tune/finetune-yi-with-swift.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/function_calling/function_calling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/function_calling/function_calling.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/opensource/function_calling/function_calling_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/function_calling/function_calling_llamaindex.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/opensource/local/local-llama.cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/local/local-llama.cpp.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/local/local-lm-studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/local/local-lm-studio.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/local/local-mlx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/local/local-mlx.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/local/local-ollama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/local/local-ollama.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/quantization/autoawq-yi-quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/quantization/autoawq-yi-quantization.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/quantization/autogptq-yi-quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/quantization/autogptq-yi-quantization.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/quantization/swift-yi-quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/quantization/swift-yi-quantization.md -------------------------------------------------------------------------------- /Cookbook/cn/opensource/rag/yi_rag_langchain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/rag/yi_rag_langchain.ipynb -------------------------------------------------------------------------------- /Cookbook/cn/opensource/rag/yi_rag_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/cn/opensource/rag/yi_rag_llamaindex.ipynb -------------------------------------------------------------------------------- /Cookbook/en/api/function_calling/function_calling_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/api/function_calling/function_calling_llamaindex.ipynb -------------------------------------------------------------------------------- /Cookbook/en/api/rag/yi_rag_langchain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/api/rag/yi_rag_langchain.ipynb -------------------------------------------------------------------------------- /Cookbook/en/api/rag/yi_rag_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/api/rag/yi_rag_llamaindex.ipynb -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/Building_a_Mind_Map_Generator_Powered_by_Yi-Large.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/Building_a_Mind_Map_Generator_Powered_by_Yi-Large.md -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/Building_an_Intelligent_Q&A_System_Based_on_LlamaIndex_and_Yi-large.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/Building_an_Intelligent_Q&A_System_Based_on_LlamaIndex_and_Yi-large.md -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/Enhancing_the_Mathematical_and_Logical_Reasoning_Abilities_of_Yi-1.5-6B-Chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/Enhancing_the_Mathematical_and_Logical_Reasoning_Abilities_of_Yi-1.5-6B-Chat.md -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/Mastering_Street_Fighter_III_with_the_Yi_Language_Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/Mastering_Street_Fighter_III_with_the_Yi_Language_Model.md -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/2/img(4-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/2/img(4-1).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/2/img(4-2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/2/img(4-2).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/2/img(4-3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/2/img(4-3).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/2/img(4-4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/2/img(4-4).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/2/img(4-5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/2/img(4-5).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/2/img(4-6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/2/img(4-6).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/2/img(4-7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/2/img(4-7).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/3/img(3-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/3/img(3-1).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/3/img(3-2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/3/img(3-2).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/3/img(3-3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/3/img(3-3).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/3/img(3-4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/3/img(3-4).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/4/img(2-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/4/img(2-1).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/4/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/4/img.png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/4/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/4/img2.png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/4/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/4/img3.png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/4/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/4/img4.png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/4/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/4/img_1.png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/4/train_memory(GiB).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/4/train_memory(GiB).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/5/img(5-1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/5/img(5-1).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/5/img(5-2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/5/img(5-2).jpg -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/5/img(5-3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/5/img(5-3).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/assets/5/img(5-4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/assets/5/img(5-4).png -------------------------------------------------------------------------------- /Cookbook/en/ecosystem/yi-vl-best-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/ecosystem/yi-vl-best-practice.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/Inference/Inference_using_lmdeploy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/Inference/Inference_using_lmdeploy.ipynb -------------------------------------------------------------------------------- /Cookbook/en/opensource/Inference/Inference_using_swift.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/Inference/Inference_using_swift.ipynb -------------------------------------------------------------------------------- /Cookbook/en/opensource/Inference/Inference_using_transformers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/Inference/Inference_using_transformers.ipynb -------------------------------------------------------------------------------- /Cookbook/en/opensource/Inference/vLLM_Inference_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/Inference/vLLM_Inference_tutorial.ipynb -------------------------------------------------------------------------------- /Cookbook/en/opensource/fine_tune/finetune-yi-with-llamafactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/fine_tune/finetune-yi-with-llamafactory.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/fine_tune/finetune-yi-with-swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/fine_tune/finetune-yi-with-swift.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/function_calling/function_calling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/function_calling/function_calling.ipynb -------------------------------------------------------------------------------- /Cookbook/en/opensource/function_calling/function_calling_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/function_calling/function_calling_llamaindex.ipynb -------------------------------------------------------------------------------- /Cookbook/en/opensource/local/local-llama.cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/local/local-llama.cpp.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/local/local-lm-studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/local/local-lm-studio.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/local/local-mlx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/local/local-mlx.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/local/local-ollama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/local/local-ollama.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/quantization/autoawq-yi-quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/quantization/autoawq-yi-quantization.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/quantization/autogptq-yi-quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/quantization/autogptq-yi-quantization.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/quantization/swift-yi-quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/quantization/swift-yi-quantization.md -------------------------------------------------------------------------------- /Cookbook/en/opensource/rag/yi_rag_langchain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/rag/yi_rag_langchain.ipynb -------------------------------------------------------------------------------- /Cookbook/en/opensource/rag/yi_rag_llamaindex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Cookbook/en/opensource/rag/yi_rag_llamaindex.ipynb -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Dockerfile -------------------------------------------------------------------------------- /Events/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/Events/readme.md -------------------------------------------------------------------------------- /HUGGINGFACE_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/HUGGINGFACE_README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/LICENSE -------------------------------------------------------------------------------- /MODEL_LICENSE_AGREEMENT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/MODEL_LICENSE_AGREEMENT.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/README.md -------------------------------------------------------------------------------- /README/huggingface_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/README/huggingface_header.md -------------------------------------------------------------------------------- /README/modelscope_header.md: -------------------------------------------------------------------------------- 1 | --- 2 | license: apache-2.0 3 | --- 4 | -------------------------------------------------------------------------------- /README/wisemodel_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/README/wisemodel_header.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/README_CN.md -------------------------------------------------------------------------------- /VL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/README.md -------------------------------------------------------------------------------- /VL/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/cli.py -------------------------------------------------------------------------------- /VL/images/cats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/images/cats.jpg -------------------------------------------------------------------------------- /VL/images/extreme_ironing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/images/extreme_ironing.jpg -------------------------------------------------------------------------------- /VL/llava/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import LlavaLlamaForCausalLM 2 | -------------------------------------------------------------------------------- /VL/llava/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/conversation.py -------------------------------------------------------------------------------- /VL/llava/mm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/mm_utils.py -------------------------------------------------------------------------------- /VL/llava/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/model/__init__.py -------------------------------------------------------------------------------- /VL/llava/model/clip_encoder/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/model/clip_encoder/builder.py -------------------------------------------------------------------------------- /VL/llava/model/clip_encoder/clip_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/model/clip_encoder/clip_encoder.py -------------------------------------------------------------------------------- /VL/llava/model/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/model/constants.py -------------------------------------------------------------------------------- /VL/llava/model/llava_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/model/llava_arch.py -------------------------------------------------------------------------------- /VL/llava/model/llava_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/model/llava_llama.py -------------------------------------------------------------------------------- /VL/llava/model/multimodal_projector/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/llava/model/multimodal_projector/builder.py -------------------------------------------------------------------------------- /VL/openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/openai_api.py -------------------------------------------------------------------------------- /VL/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/requirements.txt -------------------------------------------------------------------------------- /VL/single_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/single_inference.py -------------------------------------------------------------------------------- /VL/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/VL/web_demo.py -------------------------------------------------------------------------------- /assets/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/1.png -------------------------------------------------------------------------------- /assets/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/2.png -------------------------------------------------------------------------------- /assets/img/9b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/9b.png -------------------------------------------------------------------------------- /assets/img/Apply_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Apply_04.png -------------------------------------------------------------------------------- /assets/img/Yi-9B_benchmark_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Yi-9B_benchmark_code.png -------------------------------------------------------------------------------- /assets/img/Yi-9B_benchmark_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Yi-9B_benchmark_details.png -------------------------------------------------------------------------------- /assets/img/Yi-9B_benchmark_math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Yi-9B_benchmark_math.png -------------------------------------------------------------------------------- /assets/img/Yi-9B_benchmark_overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Yi-9B_benchmark_overall.png -------------------------------------------------------------------------------- /assets/img/Yi-9B_benchmark_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Yi-9B_benchmark_text.png -------------------------------------------------------------------------------- /assets/img/Yi_logo_icon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Yi_logo_icon_dark.svg -------------------------------------------------------------------------------- /assets/img/Yi_logo_icon_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/Yi_logo_icon_light.svg -------------------------------------------------------------------------------- /assets/img/benchmark_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/benchmark_base.png -------------------------------------------------------------------------------- /assets/img/benchmark_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/benchmark_chat.png -------------------------------------------------------------------------------- /assets/img/coder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder.gif -------------------------------------------------------------------------------- /assets/img/coder/bench.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench.webp -------------------------------------------------------------------------------- /assets/img/coder/bench1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench1.webp -------------------------------------------------------------------------------- /assets/img/coder/bench2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench2.webp -------------------------------------------------------------------------------- /assets/img/coder/bench3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench3.webp -------------------------------------------------------------------------------- /assets/img/coder/bench31.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench31.webp -------------------------------------------------------------------------------- /assets/img/coder/bench4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench4.webp -------------------------------------------------------------------------------- /assets/img/coder/bench5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench5.webp -------------------------------------------------------------------------------- /assets/img/coder/bench6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench6.webp -------------------------------------------------------------------------------- /assets/img/coder/bench7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/bench7.webp -------------------------------------------------------------------------------- /assets/img/coder/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/demo1.gif -------------------------------------------------------------------------------- /assets/img/coder/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/demo2.gif -------------------------------------------------------------------------------- /assets/img/coder/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/img/coder/yi-coder-calculator-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/coder/yi-coder-calculator-demo.gif -------------------------------------------------------------------------------- /assets/img/events/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/img/events/a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/events/a.jpeg -------------------------------------------------------------------------------- /assets/img/events/b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/events/b.jpeg -------------------------------------------------------------------------------- /assets/img/events/c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/events/c.jpeg -------------------------------------------------------------------------------- /assets/img/events/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/events/down.gif -------------------------------------------------------------------------------- /assets/img/events/pic.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/events/pic.mp4 -------------------------------------------------------------------------------- /assets/img/fireworksai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/fireworksai.png -------------------------------------------------------------------------------- /assets/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/gh.png -------------------------------------------------------------------------------- /assets/img/quick_start_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/quick_start_path.png -------------------------------------------------------------------------------- /assets/img/quick_start_path_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/quick_start_path_CN.png -------------------------------------------------------------------------------- /assets/img/yi_34b_chat_web_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/yi_34b_chat_web_demo.gif -------------------------------------------------------------------------------- /assets/img/yi_llama_cpp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/yi_llama_cpp1.png -------------------------------------------------------------------------------- /assets/img/yi_llama_cpp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/assets/img/yi_llama_cpp2.png -------------------------------------------------------------------------------- /conda-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/conda-lock.yml -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/text_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/demo/text_generation.py -------------------------------------------------------------------------------- /demo/text_generation_tp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/demo/text_generation_tp.py -------------------------------------------------------------------------------- /demo/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/demo/web_demo.py -------------------------------------------------------------------------------- /docs/README_llama.cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/docs/README_llama.cpp.md -------------------------------------------------------------------------------- /finetune/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/README.md -------------------------------------------------------------------------------- /finetune/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/README_CN.md -------------------------------------------------------------------------------- /finetune/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/constant.py -------------------------------------------------------------------------------- /finetune/scripts/run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/scripts/run_eval.sh -------------------------------------------------------------------------------- /finetune/scripts/run_sft_Yi_34b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/scripts/run_sft_Yi_34b.sh -------------------------------------------------------------------------------- /finetune/scripts/run_sft_Yi_6b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/scripts/run_sft_Yi_6b.sh -------------------------------------------------------------------------------- /finetune/scripts/run_sft_lora_Yi_6b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/scripts/run_sft_lora_Yi_6b.sh -------------------------------------------------------------------------------- /finetune/sft/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/sft/main.py -------------------------------------------------------------------------------- /finetune/sft/prompt_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/sft/prompt_eval.py -------------------------------------------------------------------------------- /finetune/utils/data/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/utils/data/data_utils.py -------------------------------------------------------------------------------- /finetune/utils/data/raw_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/utils/data/raw_datasets.py -------------------------------------------------------------------------------- /finetune/utils/ds_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/utils/ds_utils.py -------------------------------------------------------------------------------- /finetune/utils/model/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/utils/model/model_utils.py -------------------------------------------------------------------------------- /finetune/utils/module/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/utils/module/lora.py -------------------------------------------------------------------------------- /finetune/utils/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/utils/perf.py -------------------------------------------------------------------------------- /finetune/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/utils/utils.py -------------------------------------------------------------------------------- /finetune/yi_example_dataset/data/eval.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/yi_example_dataset/data/eval.jsonl -------------------------------------------------------------------------------- /finetune/yi_example_dataset/data/train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/finetune/yi_example_dataset/data/train.jsonl -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /quantization/awq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/quantization/awq/README.md -------------------------------------------------------------------------------- /quantization/awq/eval_quantized_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/quantization/awq/eval_quantized_model.py -------------------------------------------------------------------------------- /quantization/awq/quant_autoawq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/quantization/awq/quant_autoawq.py -------------------------------------------------------------------------------- /quantization/gptq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/quantization/gptq/README.md -------------------------------------------------------------------------------- /quantization/gptq/eval_quantized_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/quantization/gptq/eval_quantized_model.py -------------------------------------------------------------------------------- /quantization/gptq/quant_autogptq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/quantization/gptq/quant_autogptq.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01-ai/Yi/HEAD/requirements.txt --------------------------------------------------------------------------------