Skip to content

Commit

Permalink
Update utils_ate_bounds.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jaabmar authored Apr 25, 2024
1 parent db1cdf4 commit f43e839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test_confounding/ate_bounds/utils_ate_bounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_quantile_regressor(
# Solve linear quantile regression approximately (no linear program) --> much faster and scales to 100k+ datapoints
if fast_solver:
# quant_reg = QuantileLinearRegression(quantile=tau, max_iter=500)
quant_reg = QuantileRegressor(quantile=tau, max_iter=500)
quant_reg = QuantileRegressor(quantile=tau)
quant_reg.fit(X, y)
return quant_reg

Expand Down

0 comments on commit f43e839

Please sign in to comment.