質問編集履歴

2

プログラム追加

2022/02/09 21:51

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -55,3 +55,119 @@
55
55
  >>> exit ()
56
56
 
57
57
  ```
58
+
59
+
60
+
61
+ プログラム
62
+
63
+ ```Python 3.7
64
+
65
+ from keras.models import Sequential
66
+
67
+ from keras.layers import Dense, Activation
68
+
69
+ from keras.utils import np_utils
70
+
71
+
72
+
73
+ #ダミーデータ
74
+
75
+ data = np.random.random((1000, 784))
76
+
77
+ labels = np.random.randit(10, size=(1000, 1))
78
+
79
+ labels = np_utils.to_categorical(labels, 10)
80
+
81
+
82
+
83
+ model = seuentil()
84
+
85
+ model.add(Dense(64, activtion='relu', input_dim=784))
86
+
87
+ model.add(Dense(64, ctivation='relu'))
88
+
89
+ model.add(Dense(10, ctivation='softmax'))
90
+
91
+
92
+
93
+ #モデルのコンパイル
94
+
95
+ model.compile(optimizer='rmsprop',
96
+
97
+ loss='categorical_crossentropy',
98
+
99
+ metrics=['accracy'])
100
+
101
+
102
+
103
+ #学習を行う
104
+
105
+ model.fit(data, labels)
106
+
107
+ ```
108
+
109
+ ```エラー
110
+
111
+ ---------------------------------------------------------------------------
112
+
113
+ ImportError Traceback (most recent call last)
114
+
115
+ <ipython-input-1-95d31656bd9c> in <module>()
116
+
117
+ ----> 1 from keras.models import Sequential
118
+
119
+ 2 from keras.layers import Dense, Activation
120
+
121
+ 3 from keras.utils import np_utils
122
+
123
+ 4
124
+
125
+ 5 #ダミーデータ
126
+
127
+
128
+
129
+ ~/.local/lib/python3.7/site-packages/keras/__init__.py in <module>()
130
+
131
+ 23
132
+
133
+ 24 # See b/110718070#comment18 for more details about this import.
134
+
135
+ ---> 25 from keras import models
136
+
137
+ 26
138
+
139
+ 27 from keras.engine.input_layer import Input
140
+
141
+
142
+
143
+ ~/.local/lib/python3.7/site-packages/keras/models.py in <module>()
144
+
145
+ 17
146
+
147
+ 18 import tensorflow.compat.v2 as tf
148
+
149
+ ---> 19 from keras import backend
150
+
151
+ 20 from keras import metrics as metrics_module
152
+
153
+ 21 from keras import optimizer_v1
154
+
155
+
156
+
157
+ ~/.local/lib/python3.7/site-packages/keras/backend.py in <module>()
158
+
159
+ 35 from tensorflow.python.distribute import distribute_coordinator as dc
160
+
161
+ 36 from tensorflow.python.distribute import distribute_coordinator_context as dc_context
162
+
163
+ ---> 37 from tensorflow.python.eager.context import get_config
164
+
165
+ 38 from tensorflow.python.framework import config
166
+
167
+ 39 from keras import backend_config
168
+
169
+
170
+
171
+ ImportError: cannot import name 'get_config' from 'tensorflow.python.eager.context' (/Users/****/.pyenv/versions/anaconda3-5.3.1/lib/python3.7/site-packages/tensorflow_core/python/eager/context.py)
172
+
173
+ ```

1

リンクを追加しました

2021/06/02 02:18

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  以前こちらで([リンク内容](https://teratail.com/questions/341442#reply-469809))TensorFlowのインストールが分からずに質問したのですが, その時にバージョンが大切だと知り、
2
2
 
3
- TensorFlowの1.15には、Kerasは2.2.4まで動くと保証されているので、2.2.4をインストールしても、importができていない様です。
3
+ TensorFlowの1.15には、Kerasは2.2.4まで動くと保証されているので([リンク内容](https://qiita.com/somethingwonderful/items/e94f6d5a57052b8076c9))、2.2.4をインストールしても、importができていない様です。
4
4
 
5
5
  これは、何が原因なのでしょうか?
6
6