質問編集履歴
2
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -15,6 +15,20 @@
|
|
15
15
|
|
16
16
|
|
17
17
|
```
|
18
|
+
|
19
|
+
<ipython-input-2-c4d8c494bf74> in model(x, w)
|
20
|
+
|
21
|
+
3
|
22
|
+
|
23
|
+
4 def model(x,w):
|
24
|
+
|
25
|
+
----> 5 y = w[0]*x + w[1]
|
26
|
+
|
27
|
+
6 return y
|
28
|
+
|
29
|
+
7
|
30
|
+
|
31
|
+
|
18
32
|
|
19
33
|
can't multiply sequence by non-int of type 'numpy.float64'
|
20
34
|
|
1
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -85,3 +85,5 @@
|
|
85
85
|
|
86
86
|
|
87
87
|
### 補足情報(FW/ツールのバージョンなど)
|
88
|
+
|
89
|
+
return res1.x の .xを付ける理由も分からないです。もしご存じの方いたら教えてください。
|