Kiyoshika / CppEZML

A work in progress C++ machine learning library designed to be very easy to use. Everything pretty much written from scratch.
0 stars 0 forks source link

DataSet.h - to_double(), to_int() #15

Closed Kiyoshika closed 3 years ago

Kiyoshika commented 3 years ago

Replace the current methods cast_data_double(), cast_target_int(), cast_target_double() with more generic to_double() and to_int() methods.

Kiyoshika commented 3 years ago

There are complications given that I need multiple return types for 1D/2D vectors. Holding off for now; low priority.