質問編集履歴
4
コードの編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,8 @@
|
|
1
1
|
```
|
2
|
+
|
3
|
+
# data_predicting.py
|
4
|
+
|
5
|
+
|
2
6
|
|
3
7
|
from tqdm import tqdm
|
4
8
|
|
3
コードの編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -98,6 +98,8 @@
|
|
98
98
|
|
99
99
|
途中
|
100
100
|
|
101
|
+
print(future.result())の部分で
|
102
|
+
|
101
103
|
AttributeError:Can't pickle local object
|
102
104
|
|
103
105
|
'PredictData.GraForestCl_predict_data.<locals>.forcount'
|
2
コードの編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -104,8 +104,6 @@
|
|
104
104
|
|
105
105
|
|
106
106
|
|
107
|
-
# 本来なら「開始」と「途中」の間に「start」が2個表示されるはず
|
108
|
-
|
109
107
|
'''
|
110
108
|
|
111
109
|
```
|
1
コードの編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,10 @@
|
|
1
1
|
```
|
2
|
+
|
3
|
+
from tqdm import tqdm
|
4
|
+
|
5
|
+
import concurrent.futures
|
6
|
+
|
7
|
+
|
2
8
|
|
3
9
|
class PredictData:
|
4
10
|
|