1. 29 11月, 2022 2 次提交
  2. 28 11月, 2022 7 次提交
  3. 26 11月, 2022 1 次提交
  4. 24 11月, 2022 7 次提交
  5. 23 11月, 2022 6 次提交
  6. 22 11月, 2022 1 次提交
    • Y
      clear fluid apis in loss.py v_1 (#48132) · 27f49254
      yuehuayingxueluo 提交于
      * clear fluid apis: center_loss, bpr_loss, edit_distance, hsigmoid, sampled_softmax_with_cross_entropy, rank_loss, margin_rank_loss,  sigmoid_cross_entropy_with_logits, huber_loss
      
      * fix python/paddle/fluid/layers/loss.py
      
      * fix test_layers.py
      
      * fix CI bug
      
      * fix nn.py
      27f49254
  7. 21 11月, 2022 4 次提交
  8. 20 11月, 2022 1 次提交
  9. 17 11月, 2022 3 次提交
  10. 16 11月, 2022 3 次提交
  11. 14 11月, 2022 1 次提交
  12. 07 11月, 2022 1 次提交
  13. 03 11月, 2022 2 次提交
  14. 01 11月, 2022 1 次提交
    • N
      [CodeStyle][E711] use `is`/`is not` for comparison with `None` (#47452) · a35a4a53
      Nyakku Shigure 提交于
      * [CodeStyle][E711] use `is`/`is not` for comparison with `None`
      
      * `self.assertTrue($A is None)` -> `self.assertIsNone($A)`
      
      * `self.assertTrue($A is not None)` -> `self.assertIsNotNone($A)`
      
      * `self.assertFalse($A is None)` -> `self.assertIsNotNone($A)`
      
      * `self.assertEqual($A, None)` -> `self.assertIsNone($A)`
      
      * `self.assertNotEqual($A, None)` -> `self.assertIsNotNone($A)`
      a35a4a53