Skip to content

Commit 920ae45

Browse files
authored
Fix typo in extend (#77)
1 parent 89ab0f1 commit 920ae45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Models/Pretrained/Qwen2PreTrainedModel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* The bare Qwen2 Model outputting raw hidden-states without any specific head on top.
1515
*/
16-
class Qwen2PreTrainedModel extends PreTrainedModel
16+
class Qwen2PreTrainedModel extends PretrainedModel
1717
{
1818
protected int $numHeads;
1919
protected int $numLayers;
@@ -36,4 +36,4 @@ public function __construct(
3636
$this->numLayers = $this->config['num_hidden_layers'];
3737
$this->dimKv = $this->config['hidden_size'] / $this->config['num_attention_heads'];
3838
}
39-
}
39+
}

0 commit comments

Comments
 (0)