Skip to content

Commit

Permalink
fix bug on conformalized CustomRegressor -> v0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Mar 18, 2024
1 parent ec0cc2d commit e303217
Show file tree
Hide file tree
Showing 9 changed files with 337 additions and 131 deletions.
27 changes: 0 additions & 27 deletions nnetsauce.egg-info/PKG-INFO

This file was deleted.

88 changes: 0 additions & 88 deletions nnetsauce.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion nnetsauce.egg-info/dependency_links.txt

This file was deleted.

11 changes: 0 additions & 11 deletions nnetsauce.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion nnetsauce.egg-info/top_level.txt

This file was deleted.

2 changes: 1 addition & 1 deletion nnetsauce/custom/customRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def predict(self, X, level=95,
if "return_pi" in kwargs:
self.pi = PredictionInterval(obj = self,
method=method,
level=level/100)
level=level)
self.pi.fit(self.X_, self.y_)
self.X_ = None
self.y_ = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
}
],
"source": [
"!pip install ../.. --upgrade --no-cache-dir"
"!pip install nnetsauce --upgrade --no-cache-dir"
]
},
{
Expand Down
Loading

0 comments on commit e303217

Please sign in to comment.