You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
He Wei
7d9a783993
[auto-monad] Support side-effects by auto-monad
...
The basic idea is: exploits data dependency to control the execution order
of side-effect operations, and keep the semantics of ANF unchanged.
The ControlDepend primitive is removed and there are two primitives added:
1. UpdateState:
```
a = Assign(para, value)
```
became:
```
a = Assign(para, value, u)
u = UpdateState(u, a)
```
2. Load:
```
x = Add(para, value)
```
became:
```
p = Load(para, u)
x = Add(p, value)
u = UpdateState(u, p)
```
4 years ago
..
optim
[auto-monad] Support side-effects by auto-monad
4 years ago
probability
update doc example in probability
4 years ago
__init__.py
pylint waring clean
5 years ago
test_activation.py
add raises description for BCELoss, ReLU, BatchNorm1d, etc. operators.
4 years ago
test_batchnorm.py
pylint waring clean
5 years ago
test_cell.py
remove the 'raise' in construct of Cell
4 years ago
test_cell_wrapper.py
implicit type conversion
5 years ago
test_central_crop.py
Add image.CentralCrop
5 years ago
test_checkparameter.py
fix CI random fails
4 years ago
test_clip_by_norm.py
clean pylint
5 years ago
test_container.py
modify sequentialcell
5 years ago
test_conv.py
!906 fix a bug that support dilation greater than 1 in conv2dTranspose ops
5 years ago
test_dense.py
Extension interface for dense
4 years ago
test_dropout.py
delete seed0 and seed1 in Dropout
5 years ago
test_dynamic_lr.py
uniform learning_rate behavior of optimizers
5 years ago
test_flatten.py
pylint waring clean
5 years ago
test_image_gradients.py
pylint waring clean
5 years ago
test_l1_regularizer.py
new update basic.py which add class L1Regularizer(Cell). new add test_l1_regularizer.py. new add test_l1_regularizer.py
4 years ago
test_learning_rate_schedule.py
Check whether the network args are tensors in the compile phase
4 years ago
test_loss.py
modify dice and diceloss
4 years ago
test_lstm.py
pylint waring clean
5 years ago
test_msssim.py
update SSIM loss, add MSSSIM loss feature; add their ut testcases.
5 years ago
test_nn_embedding.py
[auto-monad] Support side-effects by auto-monad
4 years ago
test_nn_pad.py
remove name arg from gradoperation
5 years ago
test_norm.py
pylint waring clean
5 years ago
test_parameter.py
modify MetaTensor and Tensor
4 years ago
test_pooling.py
clean pylint
5 years ago
test_psnr.py
clean pylint
5 years ago
test_resizebilinear.py
change name from interpolate to resizeBilinear
4 years ago
test_ssim.py
[auto-monad] Support side-effects by auto-monad
4 years ago
test_tril.py
Add nn.Tril function
4 years ago
test_triu.py
Add nn.Tril function
4 years ago