Downloads · 30 days
10
0% of all-time downloads
d-matrix/opt-125m
opt-125m is a machine learning model from d-matrix. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
This is a d-Matrix functional reference of the OPT-125M model. The reference provides the following functional configurations: Configuration | Explanation :-- | :-- BASELINE | a reference functionally equivalent to th…
Downloads · 30 days
10
0% of all-time downloads
All-time downloads
8.3K
Public
Repo size
501 MB
Likes
0
Public
Click a slice to open those files.
.bin251 MB · 99%
From the Hugging Face model README
This is a d-Matrix functional reference of the OPT-125M model. The reference provides the following functional configurations:
| Configuration | Explanation |
|---|---|
BASELINE | a reference functionally equivalent to the original model |
BASIC | all linear algebraic operands quantized to MXINT8-64 |
Install d-Matrix Dmx_Compressor first.
pip install dmx_compressor
The following is an example model and its evaluation.
git clone https://github.com/EleutherAI/lm-evaluation-harness
cd lm-evaluation-harness
pip install -e .
from dmx.compressor.modeling import DmxModel
import lm_eval
from lm_eval.models.huggingface import HFLM
lm_eval.api.registry.register_model("hf", HFLM)
model_args = "pretrained=d-matrix/opt-125m,trust_remote_code=True"
lm = lm_eval.api.registry.get_model("hf").create_from_arg_string(model_args, {"batch_size": 1})
# Transform the model with DMX
lm._model = DmxModel.from_torch(lm._model)
eval_results = lm_eval.evaluate(lm, lm_eval.tasks.get_task_dict(["wikitext"])) # Assign desired task, i.e. "wikitext"