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 2121# pylint: disable=unused-import
2222from tensor2tensor .data_generators import algorithmic
2323from tensor2tensor .data_generators import algorithmic_math
24- from tensor2tensor .data_generators import algorithmic_cipher
2524from tensor2tensor .data_generators import audio
25+ from tensor2tensor .data_generators import cipher
2626from tensor2tensor .data_generators import image
2727from tensor2tensor .data_generators import lm1b
2828from tensor2tensor .data_generators import ptb
Original file line number Diff line number Diff line change 66
77
88@registry .register_problem
9- class AlgorithmicShiftCipher5 (algorithmic .AlgorithmicProblem ):
9+ class CipherShift5 (algorithmic .AlgorithmicProblem ):
1010
1111 @property
1212 def num_symbols (self ):
@@ -48,7 +48,7 @@ def dev_length(self):
4848
4949
5050@registry .register_problem
51- class AlgorithmicVigenereCipher5 (algorithmic .AlgorithmicProblem ):
51+ class CipherVigenere5 (algorithmic .AlgorithmicProblem ):
5252
5353 @property
5454 def num_symbols (self ):
@@ -90,7 +90,7 @@ def dev_length(self):
9090
9191
9292@registry .register_problem
93- class AlgorithmicShiftCipher200 ( AlgorithmicShiftCipher5 ):
93+ class CipherShift200 ( CipherShift5 ):
9494
9595 @property
9696 def num_symbols (self ):
@@ -104,7 +104,7 @@ def distribution(self):
104104
105105
106106@registry .register_problem
107- class AlgorithmicVigenereCipher200 ( AlgorithmicVigenereCipher5 ):
107+ class CipherVigenere200 ( CipherVigenere5 ):
108108
109109 @property
110110 def num_symbols (self ):
You can’t perform that action at this time.
0 commit comments