Paul Francis
Paul Francis
### Environment Details Please indicate the following details about the environment in which you found the bug: * SDV version: 0.18.0 * Python version: Python 3.9.2 (default, Feb 28 2021,...
### Problem Description I am working with a home-grown synthesizer that is able to synthesize relatively rare categorical values (i.e. one that occurs maybe 3 or 4 times in a...
There is a bug whereby sdnist crashes if there are zero values in the synthetic data for DENSITY. The problem is that, although you bottom code DENSITY to zero here:...
I am trying to run sdnist with low-dimensional synthetic tables (synthetic tables with very few columns). I hit the following error with all 1-column tables, and with some 2-column tables....
In the routine feature_space_size(), you have this code: https://github.com/usnistgov/SDNist/blob/b06d3613eb5da19cd3f510a83fb51de29b9eb52b/sdnist/report/dataset/__init__.py#L68-L69 Shouldn't it be this? ``` elif col in ['PUMA', 'DENSITY']: size = size * len(target_df[col].unique()) ```