This repository was archived by the owner on Jul 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
tensor2tensor/data_generators Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 21
21
# pylint: disable=unused-import
22
22
from tensor2tensor .data_generators import algorithmic
23
23
from tensor2tensor .data_generators import algorithmic_math
24
- from tensor2tensor .data_generators import algorithmic_cipher
25
24
from tensor2tensor .data_generators import audio
25
+ from tensor2tensor .data_generators import cipher
26
26
from tensor2tensor .data_generators import image
27
27
from tensor2tensor .data_generators import lm1b
28
28
from tensor2tensor .data_generators import ptb
Original file line number Diff line number Diff line change 6
6
7
7
8
8
@registry .register_problem
9
- class AlgorithmicShiftCipher5 (algorithmic .AlgorithmicProblem ):
9
+ class CipherShift5 (algorithmic .AlgorithmicProblem ):
10
10
11
11
@property
12
12
def num_symbols (self ):
@@ -48,7 +48,7 @@ def dev_length(self):
48
48
49
49
50
50
@registry .register_problem
51
- class AlgorithmicVigenereCipher5 (algorithmic .AlgorithmicProblem ):
51
+ class CipherVigenere5 (algorithmic .AlgorithmicProblem ):
52
52
53
53
@property
54
54
def num_symbols (self ):
@@ -90,7 +90,7 @@ def dev_length(self):
90
90
91
91
92
92
@registry .register_problem
93
- class AlgorithmicShiftCipher200 ( AlgorithmicShiftCipher5 ):
93
+ class CipherShift200 ( CipherShift5 ):
94
94
95
95
@property
96
96
def num_symbols (self ):
@@ -104,7 +104,7 @@ def distribution(self):
104
104
105
105
106
106
@registry .register_problem
107
- class AlgorithmicVigenereCipher200 ( AlgorithmicVigenereCipher5 ):
107
+ class CipherVigenere200 ( CipherVigenere5 ):
108
108
109
109
@property
110
110
def num_symbols (self ):
You can’t perform that action at this time.
0 commit comments