dmlfw (Daniyal Machine Learning Framework)
dmlfw_utils_file.h
Go to the documentation of this file.
1#ifndef __DMLFW__UTILS__FILE__
2#define __DMLFW__UTILS__FILE__
73uint64_t dmlfw_get_csv_rows_count(const char *csv_file_name);
74
75
84uint64_t dmlfw_get_csv_columns_count(const char *csv_file_name);
85
86
96void dmlfw_get_csv_dimensions(const char *csv_file_name, uint64_t *rows, uint64_t *columns);
97
98#endif // __DMLFW__UTILS__FILE__
// end of group
uint64_t dmlfw_get_csv_rows_count(const char *csv_file_name)
Counts the number of rows in a CSV file.
uint64_t dmlfw_get_csv_columns_count(const char *csv_file_name)
Counts the number of columns in a CSV file.
void dmlfw_get_csv_dimensions(const char *csv_file_name, uint64_t *rows, uint64_t *columns)
Retrieves both the row and column counts of a CSV file.