class documentation
Class to create a numpy matrix inline. The format of the uploaded data is (note the commas are the delim,sapce is for visuals) [[[1,2,3], [4, 5, 6]],
[[7, 8, 9], [10, 11, 12]]] self.mtx = np.fromstring('1,2,3,4,5,6,7,8,9,10,11,12', dtype=int, sep=',').reshape([2,2,3])
[[[1, 2], [3, 4], [5, 6]],
[[7, 8], [9, 10], [11, 12]]] self.mtx = np.fromstring('1,2,3,4,5,6,7,8,9,10,11,12', dtype=int, sep=',').reshape([2,3,2])
[[[1, 2], [3, 4]],
[[5, 6], [7, 8]],
[[9, 10], [11, 12]]] self.mtx = np.fromstring('1,2,3,4,5,6,7,8,9,10,11,12', dtype=int, sep=',').reshape([3,2,2])
| Method | load |
Load the numpy data from a formatted string of 3d data that must pass the checks for [[[1,2],[3,4]],[[5,6],[7,8]]] |
| Instance Variable | filedata |
Undocumented |
| Instance Variable | mtx |
Undocumented |
| Instance Variable | numa |
Undocumented |
| Instance Variable | numb |
Undocumented |
| Instance Variable | numc |
Undocumented |
Inherited from DataLoader:
| Method | __init__ |
Undocumented |
overrides
squice.DataLoaders.DataLoader.loadLoad the numpy data from a formatted string of 3d data that must pass the checks for [[[1,2],[3,4]],[[5,6],[7,8]]]