Transformers
English
Inference Endpoints
Edit model card
  1. Install ColossalAI
git clone https://github.com/marsggbo/ColossalAI
cd ColossalAI
pip install -e .
  1. download the pth file
  2. load the state dict
from transformers import T5Tokenizer
from transformers.models.llama import LlamaConfig

config = LlamaConfig.from_pretrained(f"hpcaitech/openmoe-base")
model = OpenMoeForCausalLM(config)
ckpt = torch.load("openmoe_base_yizhongw_super_natural_instruction_generation.pth")
state_dict = {}
for key, value in ckpt.items():
    if key.startswith("module."):
        state_dict[key[7:]] = value
    else:
        state_dict[key] = value
model.load_state_dict(state_dict)
Downloads last month
0
Unable to determine this model’s pipeline type. Check the docs .

Dataset used to train marsggbo/OpenMoE