Sha256: 7dac4299191715d6f46ef165c427a4e9b2fbcd8ea692ec7add08112e9b23d6c6
Contents?: true
Size: 913 Bytes
Versions: 51
Compression:
Stored size: 913 Bytes
Contents
# == Schema Information # # Table name: easy_ml_columns # # id :bigint not null, primary key # dataset_id :bigint not null # name :string not null # description :string # datatype :string # polars_datatype :string # is_target :boolean # hidden :boolean default(FALSE) # drop_if_null :boolean default(FALSE) # preprocessing_steps :json # sample_values :json # statistics :json # created_at :datetime not null # updated_at :datetime not null # module EasyML class ColumnSerializer include JSONAPI::Serializer attributes :id, :name, :description, :dataset_id, :datatype, :polars_datatype, :preprocessing_steps, :hidden, :drop_if_null, :sample_values, :statistics, :is_target end end
Version data entries
51 entries across 51 versions & 1 rubygems