↰ Return to documentation for file (morpheus/_lib/include/morpheus/io/deserializers.hpp
)
#pragma once
#include <cudf/io/json.hpp>
#include <cudf/io/types.hpp>
#include <string>
namespace morpheus {
#pragma GCC visibility push(default)
std::vector<std::string> get_column_names_from_table(const cudf::io::table_with_metadata& table);
cudf::io::table_with_metadata load_table_from_file(const std::string& filename);
cudf::io::table_with_metadata load_json_table(cudf::io::json_reader_options&& json_options);
int get_index_col_count(cudf::io::table_with_metadata& data_table);
#pragma GCC visibility pop// end of group
} // namespace morpheus