File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
tensorflow_probability/python/internal/backend Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ FILENAMES = [
37
37
"errors" ,
38
38
"functional_ops" ,
39
39
"initializers" ,
40
- "keras " ,
40
+ "numpy_keras " ,
41
41
"keras_layers" ,
42
42
"linalg" ,
43
43
"linalg_impl" ,
Original file line number Diff line number Diff line change @@ -39,13 +39,13 @@ py_library(
39
39
":dtype" ,
40
40
":errors" ,
41
41
":functional_ops" ,
42
- ":keras" ,
43
42
":linalg" ,
44
43
":misc" ,
45
44
":nest" ,
46
45
":nested_structure_coder" ,
47
46
":nn" ,
48
47
":numpy_array" ,
48
+ ":numpy_keras" ,
49
49
":numpy_logging" ,
50
50
":numpy_math" ,
51
51
":numpy_signal" ,
@@ -171,8 +171,8 @@ py_library(
171
171
)
172
172
173
173
py_library (
174
- name = "keras " ,
175
- srcs = ["keras .py" ],
174
+ name = "numpy_keras " ,
175
+ srcs = ["numpy_keras .py" ],
176
176
deps = [
177
177
":_utils" ,
178
178
":keras_layers" ,
Original file line number Diff line number Diff line change 25
25
from tensorflow_probability .python .internal .backend .numpy import debugging
26
26
from tensorflow_probability .python .internal .backend .numpy import dtype as dtypes
27
27
from tensorflow_probability .python .internal .backend .numpy import errors
28
- from tensorflow_probability .python .internal .backend .numpy import keras
29
28
from tensorflow_probability .python .internal .backend .numpy import linalg
30
29
from tensorflow_probability .python .internal .backend .numpy import nest
31
30
from tensorflow_probability .python .internal .backend .numpy import nn
32
31
from tensorflow_probability .python .internal .backend .numpy import numpy_array as array
32
+ from tensorflow_probability .python .internal .backend .numpy import numpy_keras as keras
33
33
from tensorflow_probability .python .internal .backend .numpy import numpy_logging as logging
34
34
from tensorflow_probability .python .internal .backend .numpy import numpy_math as math
35
35
from tensorflow_probability .python .internal .backend .numpy import numpy_signal as signal
File renamed without changes.
Original file line number Diff line number Diff line change 30
30
from tensorflow_probability .python .internal .backend .numpy import config
31
31
from tensorflow_probability .python .internal .backend .numpy import debugging
32
32
from tensorflow_probability .python .internal .backend .numpy import errors
33
- from tensorflow_probability .python .internal .backend .numpy import keras
34
33
from tensorflow_probability .python .internal .backend .numpy import linalg
35
34
from tensorflow_probability .python .internal .backend .numpy import nest
36
35
from tensorflow_probability .python .internal .backend .numpy import nn
36
+ from tensorflow_probability .python .internal .backend .numpy import numpy_keras as keras
37
37
from tensorflow_probability .python .internal .backend .numpy import numpy_logging as logging
38
38
from tensorflow_probability .python .internal .backend .numpy import numpy_math as math
39
39
from tensorflow_probability .python .internal .backend .numpy import numpy_signal as signal
You can’t perform that action at this time.
0 commit comments