robo-lib 0.0.5__tar.gz → 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {robo_lib-0.0.5 → robo_lib-0.0.6}/PKG-INFO +2 -2
- {robo_lib-0.0.5 → robo_lib-0.0.6}/README.md +1 -1
- {robo_lib-0.0.5 → robo_lib-0.0.6}/pyproject.toml +1 -1
- {robo_lib-0.0.5 → robo_lib-0.0.6}/LICENSE +0 -0
- {robo_lib-0.0.5 → robo_lib-0.0.6}/robo_lib/__init__.py +0 -0
- {robo_lib-0.0.5 → robo_lib-0.0.6}/robo_lib/components.py +0 -0
- {robo_lib-0.0.5 → robo_lib-0.0.6}/tests/__init__.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robo_lib
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.6
|
4
4
|
Summary: A package to create, configure, and train transformer models.
|
5
5
|
Project-URL: Homepage, https://github.com/hamburgerfish/robo_pack
|
6
6
|
Project-URL: Issues, https://github.com/hamburgerfish/robo_pack/issues
|
@@ -232,7 +232,7 @@ robo.train(
|
|
232
232
|
- In this example, the user can specify the start of the generated Shakespeare play and the transformer will generate and print the rest, until `max_new_tokens` (1000) tokens are generated.
|
233
233
|
- Temperature and top_k are set to 1.2 and 2 respectively to generate a more "creative" output.
|
234
234
|
```python
|
235
|
-
import
|
235
|
+
import robo_lib as rl
|
236
236
|
|
237
237
|
robo = rc.load_component("models/shakespeare_robo.pkl")
|
238
238
|
tok = rl.load_component("tokenizers/shakespeare_tok.pkl")
|
@@ -215,7 +215,7 @@ robo.train(
|
|
215
215
|
- In this example, the user can specify the start of the generated Shakespeare play and the transformer will generate and print the rest, until `max_new_tokens` (1000) tokens are generated.
|
216
216
|
- Temperature and top_k are set to 1.2 and 2 respectively to generate a more "creative" output.
|
217
217
|
```python
|
218
|
-
import
|
218
|
+
import robo_lib as rl
|
219
219
|
|
220
220
|
robo = rc.load_component("models/shakespeare_robo.pkl")
|
221
221
|
tok = rl.load_component("tokenizers/shakespeare_tok.pkl")
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|