Some checks failed
Self-hosted runner (nightly-past-ci-caller) / Get number (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.11 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.10 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.9 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.8 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.7 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.6 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.5 (push) Has been cancelled
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
Build documentation / build (push) Has been cancelled
Build documentation / build_other_lang (push) Has been cancelled
CodeQL Security Analysis / CodeQL Analysis (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
PR CI / pr-ci (push) Has been cancelled
Slow tests on important models (on Push - A10) / Get all modified files (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
Slow tests on important models (on Push - A10) / Model CI (push) Has been cancelled
Check Tiny Models / Check tiny models (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Model CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Pipeline CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Example CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / DeepSpeed CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI - Flash Attn / Setup (push) Has been cancelled
Nvidia CI - Flash Attn / Model CI (push) Has been cancelled
Nvidia CI / Setup (push) Has been cancelled
Nvidia CI / Model CI (push) Has been cancelled
Nvidia CI / Torch pipeline CI (push) Has been cancelled
Nvidia CI / Example CI (push) Has been cancelled
Nvidia CI / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI / DeepSpeed CI (push) Has been cancelled
Nvidia CI / Quantization CI (push) Has been cancelled
Nvidia CI / Kernels CI (push) Has been cancelled
Doctests / Setup (push) Has been cancelled
Doctests / Call doctest jobs (push) Has been cancelled
Doctests / Send results to webhook (push) Has been cancelled
Extras Smoke Test / Get supported Python versions (push) Has been cancelled
Extras Smoke Test / Test extras on Python ${{ matrix.python-version }} (push) Has been cancelled
Extras Smoke Test / Check Slack token availability (push) Has been cancelled
Extras Smoke Test / Notify failures to Slack (push) Has been cancelled
Self-hosted runner (AMD scheduled CI caller) / Trigger Scheduled AMD CI (push) Has been cancelled
Stale Bot / Close Stale Issues (push) Has been cancelled
79 lines
2.3 KiB
Python
79 lines
2.3 KiB
Python
import json
|
|
from typing import Any
|
|
|
|
import torch
|
|
|
|
from transformers import AutoModelForCausalLM, AutoTokenizer
|
|
from transformers.quantizers import HfQuantizer, register_quantization_config, register_quantizer
|
|
from transformers.utils.quantization_config import QuantizationConfigMixin
|
|
|
|
|
|
@register_quantization_config("custom")
|
|
class CustomConfig(QuantizationConfigMixin):
|
|
def __init__(self):
|
|
self.quant_method = "custom"
|
|
self.bits = 8
|
|
|
|
def to_dict(self) -> dict[str, Any]:
|
|
output = {
|
|
"num_bits": self.bits,
|
|
}
|
|
return output
|
|
|
|
def __repr__(self):
|
|
config_dict = self.to_dict()
|
|
return f"{self.__class__.__name__} {json.dumps(config_dict, indent=2, sort_keys=True)}\n"
|
|
|
|
def to_diff_dict(self) -> dict[str, Any]:
|
|
config_dict = self.to_dict()
|
|
|
|
default_config_dict = CustomConfig().to_dict()
|
|
|
|
serializable_config_dict = {}
|
|
|
|
for key, value in config_dict.items():
|
|
if value != default_config_dict[key]:
|
|
serializable_config_dict[key] = value
|
|
|
|
return serializable_config_dict
|
|
|
|
|
|
@register_quantizer("custom")
|
|
class CustomQuantizer(HfQuantizer):
|
|
def __init__(self, quantization_config: QuantizationConfigMixin, **kwargs):
|
|
super().__init__(quantization_config, **kwargs)
|
|
self.quantization_config = quantization_config
|
|
self.scale_map = {}
|
|
self.device = kwargs.get("device", "cuda" if torch.cuda.is_available() else "cpu")
|
|
self.dtype = kwargs.get("dtype", torch.float32)
|
|
|
|
def _process_model_before_weight_loading(self, model, **kwargs):
|
|
return True
|
|
|
|
def _process_model_after_weight_loading(self, model, **kwargs):
|
|
return True
|
|
|
|
def is_serializable(self) -> bool:
|
|
return True
|
|
|
|
def is_trainable(self) -> bool:
|
|
return False
|
|
|
|
|
|
model_8bit = AutoModelForCausalLM.from_pretrained(
|
|
"facebook/opt-350m", quantization_config=CustomConfig(), dtype="auto"
|
|
)
|
|
|
|
tokenizer = AutoTokenizer.from_pretrained("facebook/opt-350m")
|
|
input_text = "once there is"
|
|
inputs = tokenizer(input_text, return_tensors="pt")
|
|
output = model_8bit.generate(
|
|
**inputs,
|
|
max_length=100,
|
|
num_return_sequences=1,
|
|
no_repeat_ngram_size=2,
|
|
)
|
|
generated_text = tokenizer.decode(output[0], skip_special_tokens=True)
|
|
|
|
print(generated_text)
|