-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx
More file actions
35 lines (31 loc) · 652 Bytes
/
x
File metadata and controls
35 lines (31 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// // X yazdır
// printf("=== X ===\n");
// for(int i=0;i<n_samples_X;i++){
// printf("[");
// for(int j=0;j<n_input;j++){
// printf("%.2f%s", X[i][j], j==n_input-1 ? "" : ", ");
// }
// printf("]\n");
// }
// // Y yazdır
// printf("=== Y ===\n");
// for(int i=0;i<n_samples_Y;i++){
// printf("[");
// for(int j=0;j<n_output;j++){
// printf("%.2f%s", Y[i][j], j==n_output-1 ? "" : ", ");
// }
// printf("]\n");
// }
0,1,0,1 1
1,0,1,0 0
1,1,0,1 1
0,0,1,1 1
---------------------
1
1
0
1
1,1,0,0
1,1,0,1
1,1,1,0
1,1,1,1