質問するログイン新規登録

質問編集履歴

1

書式の改善

2020/06/21 10:27

投稿

namiki_s
namiki_s

スコア5

title CHANGED
File without changes
body CHANGED
@@ -7,12 +7,14 @@
7
7
  よろしくお願いします。
8
8
 
9
9
  ### 発生している問題・エラーメッセージ
10
+ ```ここに言語を入力
10
11
  raise TypeError("Cannot handle this data type: %s, %s" % typekey)
11
12
  TypeError: Cannot handle this data type: (1, 1, 3), <f8
13
+ ```
12
14
 
13
15
  ```
14
16
  エラーメッセージ
15
- ```
17
+
16
18
  Traceback (most recent call last):
17
19
  File "main.py", line 147, in <module>
18
20
  tf.app.run()
@@ -34,14 +36,16 @@
34
36
  raise TypeError("Cannot handle this data type: %s, %s" % typekey)
35
37
  TypeError: Cannot handle this data type: (1, 1, 3), <f8
36
38
 
39
+ ```
40
+
41
+
37
42
  ### 該当のソースコード
43
+ ```ここに言語を入力
38
- python3 main.py --dataset water --input_height=128 --output_height=128 --train --crop
44
+ python3 main.py --dataset water --input_height=128 --output_height=128 --train --crop
39
- 上記のコードを実行しました
40
-
41
- ```ここに言語名を入力
42
- ソースコード
43
45
  ```
44
46
 
47
+
48
+
45
49
  ### 試したこと
46
50
 
47
51
  DCGAN-tensorflow-masterをダウンロードしました。そこにdataフォルダを作り、その中に学習させる画像を128×128のサイズに加工したものをwaterというフォルダに入れました。その後以下のコードを実行しました。