torchao-testing / opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev

huggingface.co
Total runs: 817
24-hour runs: 0
7-day runs: 10
30-day runs: -292
Model's Last Updated: October 25 2025

Introduction of opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev

Model Details of opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev

model: opt-125m
config: Int8DynamicActivationIntxWeightConfig
config version: 1
torchao version: 0.14.dev
import logging

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer, TorchAoConfig
from huggingface_hub import HfApi
import io

# Configure logging to see warnings and debug information
logging.basicConfig(
    level=logging.INFO, format="%(name)s - %(levelname)s - %(message)s"
)

# Enable specific loggers that might contain the serialization warnings
logging.getLogger("transformers").setLevel(logging.INFO)
logging.getLogger("torchao").setLevel(logging.INFO)
logging.getLogger("safetensors").setLevel(logging.INFO)
logging.getLogger("huggingface_hub").setLevel(logging.INFO)

model_id = "facebook/opt-125m"

from torchao.quantization import Int8DynamicActivationIntxWeightConfig
from torchao.quantization.granularity import PerGroup

version = 1
quant_config = Int8DynamicActivationIntxWeightConfig(
    weight_dtype=torch.int4,
    weight_granularity=PerGroup(32),
    version=version
)
quantization_config = TorchAoConfig(quant_type=quant_config)
quantized_model = AutoModelForCausalLM.from_pretrained(
    model_id,
    device_map="auto",
    torch_dtype=torch.bfloat16,
    quantization_config=quantization_config,
)
tokenizer = AutoTokenizer.from_pretrained(model_id)

# Push to hub
MODEL_NAME = model_id.split("/")[-1]
save_to = f"torchao-testing/{MODEL_NAME}-Int8DynamicActivationIntxWeightConfig-v{version}-0.14.0.dev"
quantized_model.push_to_hub(save_to, safe_serialization=False)
tokenizer.push_to_hub(save_to)


# Manual Testing
prompt = "Hey, are you conscious? Can you talk to me?"
print("Prompt:", prompt)
inputs = tokenizer(
    prompt,
    return_tensors="pt",
).to("cuda")

# setting temperature to 0 to make sure result deterministic
generated_ids = quantized_model.generate(**inputs, max_new_tokens=128, temperature=0)

api = HfApi()
buf = io.BytesIO()
torch.save(prompt, buf)
api.upload_file(
    path_or_fileobj=buf,
    path_in_repo="model_prompt.pt",
    repo_id=save_to,
)

buf = io.BytesIO()
torch.save(generated_ids, buf)
api.upload_file(
    path_or_fileobj=buf,
    path_in_repo="model_output.pt",
    repo_id=save_to,
)

output_text = tokenizer.batch_decode(
    generated_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False
)
print("Response:", output_text[0][len(prompt) :])

Runs of torchao-testing opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev on huggingface.co

817
Total runs
0
24-hour runs
0
3-day runs
10
7-day runs
-292
30-day runs

More Information About opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev huggingface.co Model

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev huggingface.co

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev huggingface.co is an AI model on huggingface.co that provides opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev's model effect (), which can be used instantly with this torchao-testing opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev model. huggingface.co supports a free trial of the opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev model, and also provides paid use of the opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev. Support call opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev model through api, including Node.js, Python, http.

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev huggingface.co Url

https://huggingface.co/torchao-testing/opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev

torchao-testing opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev online free

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev huggingface.co is an online trial and call api platform, which integrates opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev's modeling effects, including api services, and provides a free online trial of opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev, you can try opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev online for free by clicking the link below.

torchao-testing opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev online free url in huggingface.co:

https://huggingface.co/torchao-testing/opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev install

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev is an open source model from GitHub that offers a free installation service, and any user can find opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev on GitHub to install. At the same time, huggingface.co provides the effect of opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev install, users can directly use opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev install url in huggingface.co:

https://huggingface.co/torchao-testing/opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev

Url of opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev

opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev huggingface.co Url

Provider of opt-125m-Int8DynamicActivationIntxWeightConfig-v1-0.14.0.dev huggingface.co

torchao-testing
ORGANIZATIONS

Other API from torchao-testing