mindspore-ci-bot
fb18671b28
!506 [Dataset] Multiprocessing support for Pyfunc
...
Merge pull request !506 from JunhanHu/multiprocess_pyfunc
2020-04-22 03:57:26 +08:00
Junhan Hu
b13e7bc31a
Add python multiprocessing support for Mindspore.dataset
2020-04-21 14:56:25 -04:00
mindspore-ci-bot
72f42fc37c
!170 Add prim name to error message for operators in nn_ops.py
...
Merge pull request !170 from fary86/add_prim_name_to_error_message_for_nn_ops
2020-04-21 21:14:44 +08:00
wangnan39@huawei.com
b812b18c02
support update parameter for vm
2020-04-21 20:19:46 +08:00
fary86
6dd72f654a
Add prim name to error message for nn_ops.py
2020-04-21 19:25:30 +08:00
qianlong
db80f4ff92
The num_samples and numRows in schema for TFRecordDataset are conflict
2020-04-21 17:08:59 +08:00
mindspore-ci-bot
d9e4dcc33b
!483 Optimize skip dataset op
...
Merge pull request !483 from jiangzhiwen/dataset/skip_opt
2020-04-21 15:10:23 +08:00
mindspore-ci-bot
862d23fe90
!481 Move args_type_check function to _checkparam.py
...
Merge pull request !481 from leonwanghui/rm-code
2020-04-21 11:23:05 +08:00
mindspore-ci-bot
7aac50804a
!514 [MD] add Pk Sampler in minddataset
...
Merge pull request !514 from liyong126/mindrecord_pk_sampler_lee
2020-04-21 11:10:19 +08:00
leonwanghui
24b26ee1a8
Move args_type_check function to _checkparam.py
2020-04-21 10:20:09 +08:00
liyong
f1542a90a3
add pk sampler
2020-04-21 10:08:38 +08:00
mindspore-ci-bot
27a88a6bc3
!456 Auto cast case for NotEqual op
...
Merge pull request !456 from candanzg/not_equal_auto_cast
2020-04-21 09:20:40 +08:00
jiangzhiwen
e1b109e8b8
optimize skip dataset op
2020-04-21 09:16:37 +08:00
Cathy Wong
60df369100
Fixup py Normalize doc: takes input CHW
2020-04-20 15:17:30 -04:00
mindspore-ci-bot
6369cf27bd
!406 added first row crc check for when reading tfrecord files
...
Merge pull request !406 from Peilin/first-row-crc-check
2020-04-21 00:10:18 +08:00
mindspore-ci-bot
98fbd30a5b
!460 [Data]Add filter operation
...
Merge pull request !460 from xulei/filter_master
2020-04-20 23:33:44 +08:00
mindspore-ci-bot
822a3160e4
!404 [Dataset] Add Python Sampler support for CPP dataset
...
Merge pull request !404 from JunhanHu/python_sampler_for_cpp_dataset
2020-04-20 22:45:51 +08:00
xulei2020
c705ea5e5b
add filterOp code
2020-04-20 22:32:19 +08:00
Peilin Wang
9bc2134cb7
added checking of first row crc to find invalid tfrecord files
...
addressed code review comments. added check in python layer to exclude directories and to raise an error if a pattern does not match any file
fixed clang format
fixed cppcheck
fixed cppcheck (used std::accumulate and std::copy_if). regenerated tfrecord file to contain correct header, it was a dummy header before
fixed cppcheck: added const reference for string parameter for lambdas, fixed clang format: whitespace adjustments
more clang whitespace fixes...
changed print to logger.info
2020-04-20 10:25:26 -04:00
mindspore-ci-bot
d8176a77f4
!425 New api "TextFileDataset"
...
Merge pull request !425 from yanghaitao/yht_textfiledatasetv2
2020-04-20 22:14:26 +08:00
mindspore-ci-bot
5434a96d85
!493 support python func print and != for list with none
...
Merge pull request !493 from zhangbuxue/support_python_func_print
2020-04-20 20:32:18 +08:00
mindspore-ci-bot
0cdb1171d5
!87 Take AllToAll as a virtual operator in cost model
...
Merge pull request !87 from gziyan/dev_alltoall
2020-04-20 20:13:15 +08:00
mindspore-ci-bot
c3ec9712e0
!403 add cell class name to error message
...
Merge pull request !403 from fary86/add_cell_name_to_error_message_for_nn_layer
2020-04-20 20:06:12 +08:00
buxue
7c233a57fa
support python func print and != for list with none
2020-04-20 19:55:50 +08:00
mindspore-ci-bot
679dbd27b3
!478 fix save_graphs_path and log file mode related issues
...
Merge pull request !478 from fary86/fix_log_and_ir_issues
2020-04-20 19:07:38 +08:00
fary86
7e23a1a475
Fix issues of save_graphs_path, Type/Value error message and log file mode
2020-04-20 16:23:40 +08:00
mindspore-ci-bot
3ba31ec15a
!419 Tensor assign with bool Tensor
...
Merge pull request !419 from candanzg/tensor_assign_bool_index
2020-04-20 15:00:55 +08:00
yanghaitao
2795e492ff
TextFileDataset
2020-04-20 11:18:55 +08:00
mindspore-ci-bot
18580a7867
!261 Add summary module python code to extract histogram info from tensor
...
Merge pull request !261 from wenkai/histogram_dev3cp
2020-04-20 11:08:34 +08:00
mindspore-ci-bot
3822b4837f
!340 Add a HistogramSummary ops to record tensor value
...
Merge pull request !340 from ougongchang/master
2020-04-20 10:54:04 +08:00
Ziyan
0d208e00bd
Model ALLTOALL as a single operator in cost model; scale the ALLTOALL,
...
ALLGATHER, and REDUCESCATTER with different factors; change the BETA and
GAMMA value in cost model.
2020-04-20 09:11:03 +08:00
candanzg
3f087dba1a
Tensor assign syntax:
...
1) A[B]=U
2) A[A>n]=U
A.shape == B.shape
U is a scalar or Tensor(size==1)
B is Tensor(dtype=bool)
n is a Number
Signed-off-by: candanzg <zhangshucheng@huawei.com>
2020-04-20 08:44:34 +08:00
Junhan Hu
43a2e99833
Add python sampler support for CPP dataset
2020-04-19 20:36:37 -04:00
candanzg
79c4312e89
NotEqual op auto cast
...
Signed-off-by: candanzg <zhangshucheng@huawei.com>
2020-04-19 11:41:47 +08:00
ms_yan
f0c07c3fa6
Realize take op and add ut
2020-04-18 18:33:57 +08:00
mindspore-ci-bot
cc08fdfd9a
!420 Fix mixed precision usage when const value passed as argument
...
Merge pull request !420 from amongo/FixMixedPrecisionForConstParam
2020-04-18 10:31:33 +08:00
ougongchang
0ed6d9178e
add Histogram summary operator
...
clean clang format errors and cpplint errors
add some test cases for histogram summary operator
2020-04-18 09:56:45 +08:00
mindspore-ci-bot
80333e9f55
!435 Fix dataset serialize and deserialize for MindDataset
...
Merge pull request !435 from anthonyaje/fix_serdes_dataset
2020-04-18 09:37:22 +08:00
mindspore-ci-bot
d34afbd61b
!400 Support math operation between float and int for scalar
...
Merge pull request !400 from amongo/FixMathOps
2020-04-18 09:34:42 +08:00
mindspore-ci-bot
40f0a4a4f4
!333 Add skip op to Dataset
...
Merge pull request !333 from jiangzhiwen/dataset/skip
2020-04-18 09:19:07 +08:00
mindspore-ci-bot
9e1b5efd1d
!434 Bug in cleaning dataset iterators
...
Merge pull request !434 from h.farahat/multi_itr_bug
2020-04-18 05:17:31 +08:00
anthonyaje
ea297c0889
Fix dataset serdes for MindDataset
2020-04-17 13:24:02 -04:00
hesham
3c02c82771
Bug in weak reference.
...
Add new test cases
2020-04-17 11:36:32 -04:00
jzw
3f7054dccb
add skip dataset op
2020-04-17 19:48:25 +08:00
huangdongrun
7fae76d10d
add support for calculation between float and int
...
format code
remove test case for fp64
add back scalar manipulation
remove save graph
2020-04-17 19:13:52 +08:00
huangdongrun
9cb665e634
add suport for parameter of const value pass as mixed precision args
...
fix pylint
2020-04-17 16:27:46 +08:00
mindspore-ci-bot
7214c04114
!402 Add parallel op for Square
...
Merge pull request !402 from yangzhenzhang/square
2020-04-17 15:06:40 +08:00
fary86
8cbbbd950e
Add cell name to error message
2020-04-17 12:58:11 +08:00
yangzhenzhang
36ffb66782
add parallel op for square
2020-04-17 10:42:52 +08:00
mindspore-ci-bot
2d31ae97e8
!383 add cell psnr
...
Merge pull request !383 from zhaozhenlong/cell/psnr
2020-04-17 10:23:30 +08:00