nm-testing / Phi-3.5-vision-instruct-FP8-dynamic

huggingface.co
Total runs: 790
24-hour runs: -56
7-day runs: 33
30-day runs: -380
Model's Last Updated: October 17 2024

Introduction of Phi-3.5-vision-instruct-FP8-dynamic

Model Details of Phi-3.5-vision-instruct-FP8-dynamic

Creation
from transformers import AutoProcessor, AutoModelForCausalLM

from llmcompressor.modifiers.quantization import QuantizationModifier
from llmcompressor.transformers import oneshot, wrap_hf_model_class

MODEL_ID = "microsoft/Phi-3.5-vision-instruct"

# Load model.
model_class = wrap_hf_model_class(AutoModelForCausalLM)
model = model_class.from_pretrained(MODEL_ID, device_map="auto", torch_dtype="auto", trust_remote_code=True, _attn_implementation="eager")
processor = AutoProcessor.from_pretrained(MODEL_ID, trust_remote_code=True)

# Configure the quantization algorithm and scheme.
# In this case, we:
#   * quantize the weights to fp8 with per channel via ptq
#   * quantize the activations to fp8 with dynamic per token
recipe = QuantizationModifier(
    targets="Linear",
    scheme="FP8_DYNAMIC",
    ignore=["re:.*lm_head", "re:model.vision_embed_tokens.*"],
)

# Apply quantization and save to disk in compressed-tensors format.
SAVE_DIR = MODEL_ID.split("/")[1] + "-FP8-Dynamic"
oneshot(model=model, recipe=recipe, output_dir=SAVE_DIR)
processor.save_pretrained(SAVE_DIR)

# Confirm generations of the quantized model look sane.
print("========== SAMPLE GENERATION ==============")
input_ids = processor(text="Hello my name is", return_tensors="pt").input_ids.to("cuda")
output = model.generate(input_ids, max_new_tokens=20)
print(processor.decode(output[0]))
print("==========================================")

Runs of nm-testing Phi-3.5-vision-instruct-FP8-dynamic on huggingface.co

790
Total runs
-56
24-hour runs
-52
3-day runs
33
7-day runs
-380
30-day runs

More Information About Phi-3.5-vision-instruct-FP8-dynamic huggingface.co Model

Phi-3.5-vision-instruct-FP8-dynamic huggingface.co

Phi-3.5-vision-instruct-FP8-dynamic huggingface.co is an AI model on huggingface.co that provides Phi-3.5-vision-instruct-FP8-dynamic's model effect (), which can be used instantly with this nm-testing Phi-3.5-vision-instruct-FP8-dynamic model. huggingface.co supports a free trial of the Phi-3.5-vision-instruct-FP8-dynamic model, and also provides paid use of the Phi-3.5-vision-instruct-FP8-dynamic. Support call Phi-3.5-vision-instruct-FP8-dynamic model through api, including Node.js, Python, http.

Phi-3.5-vision-instruct-FP8-dynamic huggingface.co Url

https://huggingface.co/nm-testing/Phi-3.5-vision-instruct-FP8-dynamic

nm-testing Phi-3.5-vision-instruct-FP8-dynamic online free

Phi-3.5-vision-instruct-FP8-dynamic huggingface.co is an online trial and call api platform, which integrates Phi-3.5-vision-instruct-FP8-dynamic's modeling effects, including api services, and provides a free online trial of Phi-3.5-vision-instruct-FP8-dynamic, you can try Phi-3.5-vision-instruct-FP8-dynamic online for free by clicking the link below.

nm-testing Phi-3.5-vision-instruct-FP8-dynamic online free url in huggingface.co:

https://huggingface.co/nm-testing/Phi-3.5-vision-instruct-FP8-dynamic

Phi-3.5-vision-instruct-FP8-dynamic install

Phi-3.5-vision-instruct-FP8-dynamic is an open source model from GitHub that offers a free installation service, and any user can find Phi-3.5-vision-instruct-FP8-dynamic on GitHub to install. At the same time, huggingface.co provides the effect of Phi-3.5-vision-instruct-FP8-dynamic install, users can directly use Phi-3.5-vision-instruct-FP8-dynamic installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Phi-3.5-vision-instruct-FP8-dynamic install url in huggingface.co:

https://huggingface.co/nm-testing/Phi-3.5-vision-instruct-FP8-dynamic

Url of Phi-3.5-vision-instruct-FP8-dynamic

Phi-3.5-vision-instruct-FP8-dynamic huggingface.co Url

Provider of Phi-3.5-vision-instruct-FP8-dynamic huggingface.co

nm-testing
ORGANIZATIONS

Other API from nm-testing