diff --git a/unsloth/models/gemma.py b/unsloth/models/gemma.py index 53d0bb51a1..d94f24071b 100644 --- a/unsloth/models/gemma.py +++ b/unsloth/models/gemma.py @@ -211,6 +211,8 @@ class GemmaFixedRotaryEmbedding(torch.nn.Module): ): super().__init__() if config is not None: + print(config) + print(dir(config)) # [TODO] Hack to pass in config - need to remove later base = config.rope_theta partial_rotary_factor = config.partial_rotary_factor if hasattr(config, "partial_rotary_factor") else 1.0