You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Neither of these requirements seems to fully work yet, e.g. for the AdaBoostRegressor:
// TODO Safe-DS does not support multiple inheritance.
class AdaBoostRegressor(
learner: Regressor? = null,
@PythonName("maximum_number_of_learners") maximumNumberOfLearners: Int = 50,
@PythonName("learning_rate") learningRate: Float = 1.0
) sub Regressor, _AdaBoostBase {
/**
* The base learner used for training the ensemble.
*/
attr learner: Regressor?
}
_AdaBoostBase should not appear
The TODO should not appear
The members of _AdaBoostBase should appear in AdaBoostRegressor.
To Reproduce
Generate stubs for safe-ds.
Expected behavior
See description.
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
Internal superclasses should
sub
),Neither of these requirements seems to fully work yet, e.g. for the
AdaBoostRegressor
:_AdaBoostBase
should not appear_AdaBoostBase
should appear inAdaBoostRegressor
.To Reproduce
Generate stubs for
safe-ds
.Expected behavior
See description.
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered: