-
Notifications
You must be signed in to change notification settings - Fork 777
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pow operation to synthetic data generation #571
Conversation
return LiftedMul(self, other, operator.mul) | ||
return LiftedMul(self, other) | ||
|
||
def __rmul__(self, other): | ||
return LiftedMul(other, self, operator.mul) | ||
return LiftedMul(other, self) | ||
|
||
def __truediv__(self, other): | ||
return LiftedTruediv(self, other, operator.truediv) | ||
return LiftedTruediv(self, other) | ||
|
||
def __rtruediv__(self, other): | ||
return LiftedTruediv(other, self, operator.truediv) | ||
return LiftedTruediv(other, self) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As far as I understand, the third argument provided here is hardcoded in the specific LiftedBinaryOp
subclass. Apparently calling the constructor with three arguments would directly invoke the parents' constructor? Not sure...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, i would guess any of these calls would just fail.
Codecov Report
@@ Coverage Diff @@
## master #571 +/- ##
==========================================
- Coverage 83.25% 83.25% -0.01%
==========================================
Files 178 178
Lines 9957 9959 +2
==========================================
+ Hits 8290 8291 +1
- Misses 1667 1668 +1 |
Codecov Report
@@ Coverage Diff @@
## master #571 +/- ##
==========================================
+ Coverage 83.25% 83.53% +0.28%
==========================================
Files 178 182 +4
Lines 9959 10317 +358
==========================================
+ Hits 8291 8618 +327
- Misses 1668 1699 +31
|
return LiftedMul(self, other, operator.mul) | ||
return LiftedMul(self, other) | ||
|
||
def __rmul__(self, other): | ||
return LiftedMul(other, self, operator.mul) | ||
return LiftedMul(other, self) | ||
|
||
def __truediv__(self, other): | ||
return LiftedTruediv(self, other, operator.truediv) | ||
return LiftedTruediv(self, other) | ||
|
||
def __rtruediv__(self, other): | ||
return LiftedTruediv(other, self, operator.truediv) | ||
return LiftedTruediv(other, self) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, i would guess any of these calls would just fail.
This adds the
pow
operation to the synthetic data generation package. This is useful e.g. to generate uniformly log-scaled data.Also, some minor code cleanup.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.