Skip to content
This repository was archived by the owner on Aug 16, 2025. It is now read-only.
This repository was archived by the owner on Aug 16, 2025. It is now read-only.

Continuous Variables made discrete #3

@crinders

Description

@crinders

@trappmartin I generated a small continuous synthetic dataset for familiarizing myself with your package and the following issue occurred: All my continuous values are replaced with integers in run_abda_rg.jl. I believe the culprit is

 dids = filter(d -> length(filter(x -> !isnan(x), unique(x_train[:,d]))) < args["maxcategories"], 1:D)

which really should read

 dids = filter(d -> length(filter(x -> !isnan(x), unique(x_train[:,d]))) < args["maxcategories"], dids)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions