Skip to content

Commit

Permalink
make max entries per row configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
xu-hao committed Jul 18, 2020
1 parent 6829749 commit e346e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def add_eps(a):
return a + eps


MAX_ENTRIES_PER_ROW = 1664
MAX_ENTRIES_PER_ROW = int(os.environ.get("MAX_ENTRIES_PER_ROW", "1664"))

def select_feature_matrix(conn, table_name, year, cohort_features, feature_a, feature_b):
table = tables[table_name]
Expand Down

0 comments on commit e346e31

Please sign in to comment.