質問編集履歴

5

初心者マークを付けた

2022/11/25 09:14

投稿

hanamaru018
hanamaru018

スコア0

test CHANGED
@@ -1 +1 @@
1
- ディープラーニングでの音声分類の"conv2d"のエラー
1
+ ディープラーニングでの音声分類の"conv2d"のエラーについて
test CHANGED
File without changes

4

コード追記

2022/11/25 09:02

投稿

hanamaru018
hanamaru018

スコア0

test CHANGED
File without changes
test CHANGED
@@ -131,6 +131,11 @@
131
131
  len(x_test),
132
132
  len(y_test)))
133
133
 
134
+ # showing the classes are equally splitted
135
+ a = np.zeros(50)
136
+ for c in y_test:
137
+ a[c] += 1
138
+ print(a)
134
139
 
135
140
  freq = 128
136
141
  time = 1723

3

エラーメッセージ追記

2022/11/25 07:41

投稿

hanamaru018
hanamaru018

スコア0

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,21 @@
12
12
  ### 発生している問題・エラーメッセージ
13
13
 
14
14
  ```
15
+ Traceback (most recent call last):
16
+
17
+ File ~\Downloads\music-cnn\music_keras.py:39 in <module>
18
+ x_1 = cba(inputs, filters=32, kernel_size=(1,8), strides=(1,2))
19
+
20
+ File ~\Downloads\music-cnn\music_keras.py:30 in cba
21
+ x = Conv2D(filters, kernel_size=kernel_size, strides=strides, padding='same')(inputs)
22
+
23
+ File ~\anaconda3\lib\site-packages\keras\utils\traceback_utils.py:70 in error_handler
24
+ raise e.with_traceback(filtered_tb) from None
25
+
26
+ File ~\anaconda3\lib\site-packages\keras\engine\input_spec.py:250 in assert_input_compatibility
27
+ raise ValueError(
28
+
15
- ValueError: Input 0 of layer "conv2d" is incompatible with the layer: expected min_ndim=4, found ndim=1. Full shape received: (None,)
29
+ ValueError: Input 0 of layer "conv2d_236" is incompatible with the layer: expected min_ndim=4, found ndim=1. Full shape received: (None,)
16
30
  ```
17
31
 
18
32
  ### 該当のソースコード

2

誤字

2022/11/25 07:38

投稿

hanamaru018
hanamaru018

スコア0

test CHANGED
File without changes
test CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ### 実現したいこと
9
9
 
10
- 正解か正解でないかの二種類のみでの分類を行う。学習データとテストデータに分けるところまでできて
10
+ 正解か正解でないかの二種類のみでの分類を行う。学習データとテストデータに分けるところまでできています。
11
11
 
12
12
  ### 発生している問題・エラーメッセージ
13
13
 

1

試して動いたが、何をしているのかわかりません。

2022/11/25 04:02

投稿

hanamaru018
hanamaru018

スコア0

test CHANGED
File without changes
test CHANGED
@@ -251,7 +251,7 @@
251
251
  ### 試したこと
252
252
 
253
253
  https://teratail.com/questions/291260 
254
- この質問を見て改善しようとしましたが、初心者であため理解ができませんでした。
254
+ この質問を見て改善しようとしましたが、なぜinput_shape=x.shape[1:]の部分をinput_shape=(256,256,3)にしていのかわかりませんでした。(256,256,3)にしてみたら、コード自体はエラーもなく動いたのですが、自分のやっているものでもこの数字にしていいのかわかりません。
255
255
 
256
256
  ### 補足情報(FW/ツールのバージョンなど)
257
257