Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
mosaicml
/
mpt-7b-8k
like
26
Follow
Mosaic ML, Inc.
351
Text Generation
Transformers
PyTorch
5 datasets
mpt
Composer
MosaicML
llm-foundry
StreamingDatasets
custom_code
text-generation-inference
arxiv:
6 papers
License:
apache-2.0
Model card
Files
Files and versions
Community
11
Train
Deploy
Use this model
9dedd24
mpt-7b-8k
/
fc.py
daking
LLM-foundry update October 17, 2023 23:04:30
9dedd24
about 1 year ago
raw
Copy download link
history
blame
Safe
167 Bytes
from
torch
import
nn
FC_CLASS_REGISTRY = {
'torch'
: nn.Linear}
try
:
import
transformer_engine.pytorch
as
te
FC_CLASS_REGISTRY[
'te'
] = te.Linear
except
:
pass