質問編集履歴

3

問題の修正

2020/12/08 08:25

投稿

takesiiii
takesiiii

スコア0

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  ### 前提・実現したいこと
2
2
 
3
- pythonで自のデータセットを作成しようと思っています。
3
+ pythonで自画像を用いてデータセットを作成しようと思っています。
4
4
 
5
5
 
6
6
 
@@ -10,9 +10,9 @@
10
10
 
11
11
  ### 発生している問題
12
12
 
13
- エラーは発生しないのですが、
14
13
 
15
14
 
15
+ 下記ソースコードの
16
16
 
17
17
  ```python
18
18
 
@@ -27,6 +27,32 @@
27
27
  ```
28
28
 
29
29
  の部分が実行されておらず、X、Yが空になっている。
30
+
31
+ そのため、
32
+
33
+
34
+
35
+ ```python
36
+
37
+
38
+
39
+ X_train, X_test, y_train, y_test = train_test_split(X, Y, test_size=0.33, random_state=111)
40
+
41
+ ```
42
+
43
+ でエラーになっている。
44
+
45
+
46
+
47
+ エラーコード
48
+
49
+ ```
50
+
51
+ ValueError: With n_samples=0, test_size=0.2 and train_size=None, the resulting train set will be empty. Adjust any of the aforementioned parameters.
52
+
53
+
54
+
55
+ ```
30
56
 
31
57
 
32
58
 
@@ -126,7 +152,7 @@
126
152
 
127
153
 
128
154
 
129
- 上記のソースコードを実行してdateset1の中の画像でデータセットを作成しようとした。
155
+ 上記のソースコードを実行してdateset1の中の画像でデータセットを作成しようとしたがうまくできませんでした
130
156
 
131
157
 
132
158
 

2

書式の改善

2020/12/08 08:25

投稿

takesiiii
takesiiii

スコア0

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,8 @@
14
14
 
15
15
 
16
16
 
17
+ ```python
18
+
17
19
  for picture in list_pictures('./dataset1/'):
18
20
 
19
21
  img = img_to_array(load_img(picture, target_size=(64,64)))
@@ -22,7 +24,7 @@
22
24
 
23
25
  Y.append(0)
24
26
 
25
-
27
+ ```
26
28
 
27
29
  の部分が実行されておらず、X、Yが空になっている。
28
30
 
@@ -128,6 +130,26 @@
128
130
 
129
131
 
130
132
 
133
+ おそらく
134
+
135
+ ```python
136
+
137
+ def list_pictures(directory, ext='jpg|jpeg|bmp|png|ppm'):
138
+
139
+ return [os.path.join(root, f)
140
+
141
+ for root, _, files in os.walk(directory) for f in files
142
+
143
+ if re.match(r'([\w]+.(?:' + ext + '))', f.lower())]
144
+
145
+ ```
146
+
147
+ この部分が原因だとは思うのですが、解決方法が分かりませんでした。
148
+
149
+
150
+
151
+
152
+
131
153
  参考サイト
132
154
 
133
155
  https://qiita.com/AlphaMikeNeko/items/9870533f3ab1e11e340f

1

ソースコードを変更しました

2020/12/08 05:23

投稿

takesiiii
takesiiii

スコア0

test CHANGED
File without changes
test CHANGED
@@ -33,6 +33,8 @@
33
33
  ### 該当のソースコード
34
34
 
35
35
 
36
+
37
+ ```python
36
38
 
37
39
  import keras
38
40
 
@@ -116,7 +118,7 @@
116
118
 
117
119
 
118
120
 
119
-
121
+ ```
120
122
 
121
123
  ### 試したこと
122
124