-
Notifications
You must be signed in to change notification settings - Fork 398
HMA defaults to norm distribution for child tables #2710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2710 +/- ##
=======================================
Coverage 98.16% 98.16%
=======================================
Files 72 72
Lines 7830 7843 +13
=======================================
+ Hits 7686 7699 +13
Misses 144 144
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
70623eb to
fc6b9d7
Compare
| num_data_columns = columns_per_table[table_name] | ||
| if num_data_columns == 0: | ||
| # no parameter columns are generated if there are no data or extended columns | ||
| num_data_columns = columns_per_table[table_name][0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does changing the meaning of data_columns to be a subset of the former data_columns seem reasonable?
sdv/multi_table/hma.py
Outdated
| ) | ||
|
|
||
| return columns_per_table | ||
| return {key: sum(value) for key, value in columns_per_table.items()} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace key and value with table_name and columns_list
fc6b9d7 to
d1a4afe
Compare
d1a4afe to
101a8bb
Compare
Resolves #2665
CU-86b6gwz0p