Skip to content

Commit

Permalink
Ensure Extended FRS generates
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Sep 17, 2024
1 parent 8276a00 commit c40523c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ documentation:
data:
python policyengine_uk_data/datasets/frs/dwp_frs.py
python policyengine_uk_data/datasets/frs/frs.py
python policyengine_uk_data/datasets/frs/extended_frs.py
python policyengine_uk_data/datasets/frs/enhanced_frs.py

build:
Expand Down
2 changes: 1 addition & 1 deletion policyengine_uk_data/utils/imputations/capital_gains.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def loss(blend_factor):
return loss

optimiser = Adam([blend_factor], lr=1e-1)
progress = tqdm(range(1000))
progress = range(1000)
for i in progress:
optimiser.zero_grad()
loss_value = loss(blend_factor)
Expand Down

0 comments on commit c40523c

Please sign in to comment.