Class TensorReader
java.lang.Object
org.flag4j.io.TensorReader
The TensorReader class provides several static methods for reading serialized
tensors, matrices, and vectors from a file.
-
Method Summary
Modifier and TypeMethodDescriptionstatic MatrixMixin
<?, ?, ?, ?> fromCsv
(String fileName, Class<? extends MatrixMixin<?, ?, ?, ?>> matrixType) Reads a CSV file into a matrix of the specified type.static MatrixMixin
<?, ?, ?, ?> fromCsv
(String fileName, String delimiter, Class<? extends MatrixMixin<?, ?, ?, ?>> matrixType) Reads a CSV file into a matrix of the specified type.static AbstractTensor
<?, ?, ?> Reads a serializedAbstractTensor
from a specified file using aObjectInputStream
.
-
Method Details
-
read
public static AbstractTensor<?,?, read?> (String filePath) throws IOException, ClassNotFoundException Reads a serialized
AbstractTensor
from a specified file using aObjectInputStream
.The object returned from this tensor will likely need to be cast to the desired type:
Matrix matrix; try { matrix = (Matrix) TensorReader.read("some_file.ser") } catch(IOException | ClassNotFoundException | ClassCastException e) { // Handel exception. }
- Parameters:
filePath
- Path of the file containing the serialized tensor.- Returns:
- The deserialized tensor from the specified file.
- Throws:
IOException
- If an I/O exception occurs while reading the object.ClassNotFoundException
- Class of a serialized object cannot be found.
-
fromCsv
public static MatrixMixin<?,?, fromCsv?, ?> (String fileName, Class<? extends MatrixMixin<?, ?, throws IOException?, ?>> matrixType) Reads a CSV file into a matrix of the specified type. This method uses
","
as the default delimiter in the CSV file. If another delimiter is desired, specify usingfromCsv(String, String, Class)
.Usage example:
Matrix realMatrix; try { realMatrix = (Matrix) TensorRead.fromCsv("real_data.csv", Matrix.class); } catch (IOException e) { // Handel exception. } CMatrix complexMatrix; try { complexMatrix = (CMatrix) TensorRead.fromCsv("complex_data.csv", CMatrix.class); } catch (IOException e) { // Handel exception. }
- Parameters:
fileName
- Path to the CSV file.matrixType
- The class object of the desired matrix to read into. Must be eitherMatrix.class
orCMatrix.class
.- Returns:
- A MatrixMixin object containing the data from the CSV file.
- Throws:
IOException
- If an I/O error occurs while reading the file.IllegalArgumentException
- If the CSV file is malformed or thematrixType
isn't supported.- See Also:
-
fromCsv
public static MatrixMixin<?,?, fromCsv?, ?> (String fileName, String delimiter, Class<? extends MatrixMixin<?, ?, throws IOException?, ?>> matrixType) Reads a CSV file into a matrix of the specified type.
Usage example:
Matrix realMatrix; try { realMatrix = (Matrix) TensorRead.fromCsv("real_data.csv", ",", Matrix.class); } catch (IOException e) { // Handel exception. } CMatrix complexMatrix; try { complexMatrix = (CMatrix) TensorRead.fromCsv("complex_data.csv", ",", CMatrix.class); } catch (IOException e) { // Handel exception. }
- Parameters:
fileName
- Path to the CSV file.delimiter
- Delimiter used in the CSV file.matrixType
- The class object of the desired matrix to read into. Must be eitherMatrix.class
orCMatrix .class
.- Returns:
- A MatrixMixin object containing the data from the CSV file.
- Throws:
IOException
- If an I/O error occurs while reading the file.IllegalArgumentException
- If the CSV file is malformed or the matrixType isn't supported. #fromCsv(String, Class)
-