Kyle Pena

Results 8 comments of Kyle Pena

Are you also interested in type checking, a la typeguard?: https://pypi.org/project/typeguard/

I am also seeing this behavior as well. Curious if there has been any progress on this issue.

Being under time constraints, my temporary solution to this problem was as follows: In .venv\Lib\site-packages\skgarden\quantile\ensemble.py (your path will vary), I added the following constructor to BaseForestQuantileRegressor. def __init__(self, base_estimator, n_estimators=100,...

My general experience is that the conda ecosystem (base, conda-forge, etc.) seems to work a bit better in general. I think more of the community's testing happens on these packages...

My general experience is that the conda ecosystem (base, conda-forge, etc.) seems to work a bit better in general. I think more of the community's testing happens on these packages...

Here is a partial solution. Before you first import patsy: ``` def fixed_factorinfo_repr(self,p,cycle): assert not cycle kwlist = [("factor", self.factor), ("type", self.type), ("state", self.state) ] if self.type == "numerical": kwlist.append(("num_columns",...