/** * Numerically encodes the strings in the matrix and returns an encoding dictionary which can be used to encode other matrices * @param matrixInitial - original matrix before encoding * @returns - dictionary from string to number */ export declare function matrixNumericalEncoding(matrixInitial: Array>): { matrix: number[][]; dictCategoricalToNumerical: Record; }; //# sourceMappingURL=matrixNumericalEncoding.d.ts.map