tech.ml.dataset.print> (println (dataset->str test-ds {:line-policy :markdown}))
| :a | :b |
|----|--------------------------------------------------------------------|
| 1 | #tech.v2.tensor<float64>[2 2]<br>[[0.000 1.000]<br> [2.000 3.000]] |
| 2 | #tech.v2.tensor<float64>[2 2]<br>[[0.000 1.000]<br> [2.000 3.000]] || :a | :b |
|---|---|
| 1 | #tech.v2.tensor[2 2] [[0.000 1.000] [2.000 3.000]] |
| 2 | #tech.v2.tensor[2 2] [[0.000 1.000] [2.000 3.000]] |
tech.ml.dataset.print> (println (dataset->str test-ds))
| :a | :b |
|----|-------------------------------|
| 1 | #tech.v2.tensor<float64>[2 2] |
| | [[0.000 1.000] |
| | [2.000 3.000]] |
| 2 | #tech.v2.tensor<float64>[2 2] |
| | [[0.000 1.000] |
| | [2.000 3.000]] |tech.ml.dataset.print> (println (dataset->str test-ds {:line-policy :single}))
| :a | :b |
|----|-------------------------------|
| 1 | #tech.v2.tensor<float64>[2 2] |
| 2 | #tech.v2.tensor<float64>[2 2] |
Wow, cool!