summaryrefslogtreecommitdiff
path: root/test/test_distributions.py
AgeCommit message (Expand)AuthorFilesLines
2018-11-12enable more unit tests (#13166)Johannes M Dieterich1-1/+4
2018-11-06Various Test and build fixes (#13556)Soumith Chintala1-1/+1
2018-11-01Rename potrf to cholesky (#12699)vishwakftw1-5/+5
2018-10-26Shard all of tests based on how many tests exist. (#13160)Zachary DeVito1-1/+5
2018-10-17Rename test/common.py to test/common_utils.py (#12794)James Sun1-1/+1
2018-09-28Fix broadcasting bug in StudentT (#12148)Fritz Obermeyer1-3/+11
2018-09-28Ensuring positive definite matrix before constructing (#12102)Jeff Smith1-0/+6
2018-09-26Fix warnings emitted when testing distributions (#12038)vishwakftw1-120/+120
2018-09-14Adding .expand method for TransformedDistribution (#11607)Neeraj Pradhan1-7/+11
2018-09-13Ensure most Distribution methods are jittable (#11560)Fritz Obermeyer1-1/+287
2018-09-11Add .expand() method to distribution classes (#11341)Neeraj Pradhan1-0/+60
2018-09-06Optional expand=True kwarg in distribution.enumerate_support (#11231)Neeraj Pradhan1-19/+22
2018-09-05Fix to distribution.__repr__ with lazy attributes (#11263)Neeraj Pradhan1-0/+9
2018-08-16remove implicit conversion from gpu to cpu (#10553)Ailing Zhang1-3/+3
2018-08-15Revert D9276252: [pytorch][PR] remove implicit conversion to cpuEdward Yang1-3/+3
2018-08-15support broadcasting in _kl_categorical_categorical (#10533)Johan Gudmundsson1-0/+1
2018-08-15remove implicit conversion to cpu (#10416)Ailing Zhang1-3/+3
2018-08-01NegativeBinomial distribution (#9345)Dr. Kashif Rasul1-2/+56
2018-07-30Introduce __array_priority__ on torch.Tensor (#9651)Thomas Viehmann1-1/+1
2018-07-24Implementation of Weibull distribution (#9454)Tony Duan1-1/+30
2018-07-23Low rank multivariate normal (#8635)fehiepsi1-3/+215
2018-07-18Use _six for inf and nan (#9500)Tongzhou Wang1-14/+15
2018-07-05Fix TestAutograd.test_pinverse not actually testing (#9192)Tongzhou Wang1-4/+8
2018-07-05Turn on UBSAN in the OSS build (#8813)Will Feng1-1/+2
2018-06-14Add half cauchy, half normal distributions (#8411)Du Phan1-6/+130
2018-06-02[ready] Clean up torch.distributions (#8046)Vishwak Srinivasan1-154/+136
2018-05-31Add memory leak check in CUDA tests (#7270)Tongzhou Wang1-2/+3
2018-05-24[distributions] Always enable grad when calculating lazy_property (#7708)Tongzhou Wang1-1/+26
2018-05-23[PyTorch] [gradcheck] change backward() to grad() (#7710)Tongzhou Wang1-1/+0
2018-05-18Don't allow requires_grad to be set on integer Tensor constructors in… (#7185)gchanan1-1/+3
2018-05-14clamping the return value of uniform.cdf() to [0..1] (#7538)andreh71-0/+4
2018-05-03Fix broadcasting error in LogNormal and TransformedDistribution (#7269)Fritz Obermeyer1-0/+5
2018-04-26Allowing for vectorized counts in Binomial Distribution (#6720)Neeraj Pradhan1-2/+52
2018-04-25implement gamma cuda (#6855)Thomas Viehmann1-1/+34
2018-04-20[distributions] Fix Independent.rsample() and add more tests (#6806)Fritz Obermeyer1-0/+29
2018-04-17Codemod to update our codebase to 0.4 standard (#6641)Tongzhou Wang1-285/+284
2018-04-16[distributions] Implement Independent distribution (#6615)Fritz Obermeyer1-6/+33
2018-04-04[distributions] KL-Divergence for Multivariate Normal (#6172)Vishwak Srinivasan1-2/+46
2018-04-01[distributions] Support python floats in AffineTransform (#6035)Fritz Obermeyer1-8/+41
2018-03-27Add numpy.array-like type inference to torch.tensor. (#5997)gchanan1-96/+96
2018-03-26Add precision matrix to MultivariateNormal (#5998)Tongzhou Wang1-3/+24
2018-03-25[distributions] Rename .params to .arg_constraints, fix logic (#5989)Fritz Obermeyer1-17/+5
2018-03-25[distributions] Fix scalar bugs in torch.distributions.transforms etc. (#5931)Fritz Obermeyer1-36/+74
2018-03-25Implement MultivariateNormal.mean, .variance properties (#5988)Fritz Obermeyer1-2/+12
2018-03-24Support batch LowerCholeskyTransform (#5980)Du Phan1-14/+21
2018-03-24[distributions] Implement Power transform (#5976)Vishwak Srinivasan1-0/+5
2018-03-22Implementation of the logistic-normal distribution (#5547)Maruan1-12/+98
2018-03-20[distributions] Support pickling of constraint objects (#5910)Fritz Obermeyer1-10/+10
2018-03-19Added an implementation of a multivariate normal distribution (#4950)Brooks1-1/+107
2018-03-15Fixed distribution constraints and added some test cases for distributions pa...lazypanda11-239/+476