|
| 1 | +<!--Copyright 2025 The HuggingFace Team. All rights reserved. |
| 2 | +
|
| 3 | +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
| 4 | +the License. You may obtain a copy of the License at |
| 5 | +
|
| 6 | +http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +
|
| 8 | +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
| 9 | +an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
| 10 | +specific language governing permissions and limitations under the License. |
| 11 | +
|
| 12 | +⚠️ Note that this file is in Markdown but contain specific syntax for our doc-builder (similar to MDX) that may not be |
| 13 | +rendered properly in your Markdown viewer. |
| 14 | +
|
| 15 | +--> |
| 16 | + |
| 17 | +# GraniteMoeHybrid |
| 18 | + |
| 19 | +## Overview |
| 20 | + |
| 21 | + |
| 22 | +The `GraniteMoeHybrid` model builds on top of `GraniteMoeSharedModel` and `Bamba`. Its decoding layers consist of state space layers or MoE attention layers with shared experts. By default, the attention layers do not use positional encoding. |
| 23 | + |
| 24 | + |
| 25 | +```python |
| 26 | +from transformers import AutoModelForCausalLM, AutoTokenizer |
| 27 | + |
| 28 | +model_path = "ibm-granite/granite-4.0-tiny-preview" |
| 29 | +tokenizer = AutoTokenizer.from_pretrained(model_path) |
| 30 | + |
| 31 | +# drop device_map if running on CPU |
| 32 | +model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto") |
| 33 | +model.eval() |
| 34 | + |
| 35 | +# change input text as desired |
| 36 | +prompt = "Write a code to find the maximum value in a list of numbers." |
| 37 | + |
| 38 | +# tokenize the text |
| 39 | +input_tokens = tokenizer(prompt, return_tensors="pt") |
| 40 | +# generate output tokens |
| 41 | +output = model.generate(**input_tokens, max_new_tokens=100) |
| 42 | +# decode output tokens into text |
| 43 | +output = tokenizer.batch_decode(output) |
| 44 | +# loop over the batch to print, in this example the batch size is 1 |
| 45 | +for i in output: |
| 46 | + print(i) |
| 47 | +``` |
| 48 | + |
| 49 | +This HF implementation is contributed by [Sukriti Sharma](https://huggingface.co/SukritiSharma) and [Alexander Brooks](https://huggingface.co/abrooks9944). |
| 50 | + |
| 51 | + |
| 52 | +## GraniteMoeHybridConfig |
| 53 | + |
| 54 | +[[autodoc]] GraniteMoeHybridConfig |
| 55 | + |
| 56 | +## GraniteMoeHybridModel |
| 57 | + |
| 58 | +[[autodoc]] GraniteMoeHybridModel |
| 59 | + - forward |
| 60 | + |
| 61 | +## GraniteMoeHybridForCausalLM |
| 62 | + |
| 63 | +[[autodoc]] GraniteMoeHybridForCausalLM |
| 64 | + - forward |
0 commit comments