CoolFace
Modelpublic

taobao-mnn/codegeex2-6b-MNN

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes33downloads
Model Card

codegeex2-6b-MNN

Introduction

This model is a 4-bit quantized version of the MNN model exported from codegeex2-6b using llmexport.

Download

bash
# install huggingface
pip install huggingface
bash
# shell download
huggingface download --model 'taobao-mnn/codegeex2-6b-MNN' --local_dir 'path/to/dir'
python
# SDK download
from huggingface_hub import snapshot_download
model_dir = snapshot_download('taobao-mnn/codegeex2-6b-MNN')
bash
# git clone
git clone https://www.modelscope.cn/taobao-mnn/codegeex2-6b-MNN

Usage

bash
# clone MNN source
git clone https://github.com/alibaba/MNN.git

# compile
cd MNN
mkdir build && cd build
cmake .. -DMNN_LOW_MEMORY=true -DMNN_CPU_WEIGHT_DEQUANT_GEMM=true -DMNN_BUILD_LLM=true -DMNN_SUPPORT_TRANSFORMER_FUSE=true
make -j

# run
./llm_demo /path/to/codegeex2-6b-MNN/config.json prompt.txt

Document

MNN-LLM