robo-lib 0.0.8__py3-none-any.whl → 0.0.10__py3-none-any.whl
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.
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robo_lib
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.10
|
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
|
@@ -48,7 +48,7 @@ encoder_tok = rl.TokenizerConstructor(tokenizer_type="WordLevel")
|
|
48
48
|
encoder_tok.train("english_data.txt")
|
49
49
|
|
50
50
|
decoder_tok = rl.TokenizerConstructor(tokenizer_type="WordLevel")
|
51
|
-
|
51
|
+
decoder_tok.train("french_data.txt")
|
52
52
|
|
53
53
|
rl.save_component(encoder_tok, "tokenizers/encoder_tok.pkl")
|
54
54
|
rl.save_component(decoder_tok, "tokenizers/decoder_tok.pkl")
|
@@ -124,7 +124,7 @@ robo = rl.RoboConstructor(
|
|
124
124
|
enc_block_size=100
|
125
125
|
)
|
126
126
|
|
127
|
-
robo.
|
127
|
+
robo.train_robo(
|
128
128
|
max_iters=20000,
|
129
129
|
eval_interval=200,
|
130
130
|
batch_size=128,
|
@@ -0,0 +1,6 @@
|
|
1
|
+
robo_lib/__init__.py,sha256=iVOAsANj0lScVW9KKMxCULYmpp0cv4sv1k3sHjBSlE0,1012
|
2
|
+
robo_lib/components.py,sha256=OjusjkSlMlAsTEq1kSqixKXG9sBw8Re8hsXTEy_bJ48,42315
|
3
|
+
robo_lib-0.0.10.dist-info/METADATA,sha256=a30lSFG-Eo9UGFQErA64MTbeVqCeD8BwViXMmB2OPX4,9634
|
4
|
+
robo_lib-0.0.10.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
5
|
+
robo_lib-0.0.10.dist-info/licenses/LICENSE,sha256=4XzkkpFqPzH0GH3zxOqRTqc7xUKSEe7dWPOuJYW95ac,1089
|
6
|
+
robo_lib-0.0.10.dist-info/RECORD,,
|
robo_lib-0.0.8.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
robo_lib/__init__.py,sha256=iVOAsANj0lScVW9KKMxCULYmpp0cv4sv1k3sHjBSlE0,1012
|
2
|
-
robo_lib/components.py,sha256=OjusjkSlMlAsTEq1kSqixKXG9sBw8Re8hsXTEy_bJ48,42315
|
3
|
-
robo_lib-0.0.8.dist-info/METADATA,sha256=WCZbGjm5IfGnLDpuAh5ZmqwMGEFvpeM3E05XlTGjceM,9628
|
4
|
-
robo_lib-0.0.8.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
5
|
-
robo_lib-0.0.8.dist-info/licenses/LICENSE,sha256=4XzkkpFqPzH0GH3zxOqRTqc7xUKSEe7dWPOuJYW95ac,1089
|
6
|
-
robo_lib-0.0.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|