Qwen3 From Scratch (#678)

* Qwen3 From Scratch

* rev other file

* upd

* upd

* upd

* url fixes
This commit is contained in:
Sebastian Raschka
2025-06-19 18:44:38 -05:00
committed by GitHub
parent e700c66b7a
commit 3d4bce6d57
10 changed files with 2640 additions and 6 deletions

View File

@@ -113,7 +113,7 @@ from llms_from_scratch.appendix_d import find_highest_gradient, train_model
```
 
### Llama 3 (Bonus material)
```python
@@ -126,5 +126,18 @@ from llms_from_scratch.llama3 import (
)
```
For the `llms_from_scratch.llama3` usage information, please see [this bonus section](../../ch05/07_gpt_to_llama/README.md).
 
### Qwen3 (Bonus material)
```python
from llms_from_scratch.qwen3 import (
Qwen3Model,
Qwen3Tokenizer,
)
```
For the `llms_from_scratch.qwen3` usage information, please see [this bonus section](../../ch05/11_qwen3/README.md).