You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

RELEASE.md 76 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226
  1. # MindSpore 1.1.1 Release Notes
  2. ## MindSpore
  3. ### API Change
  4. #### Backwards Incompatible Change
  5. ##### Python API
  6. ###### `ops.AvgPool`, `ops.MaxPool`, `ops.MaxPoolWithArgmax` change attr name from 'ksize', 'padding' to 'kernel_size', 'pad_mode' ([!11350](https://gitee.com/mindspore/mindspore/pulls/11350))
  7. Previously the kernel size and pad mode attrs of pooling ops are named "ksize" and "padding", which is a little puzzling and inconsistent with convolution ops. So they are rename to "kernel_size" and "pad_mode".
  8. <table>
  9. <tr>
  10. <td style="text-align:center"> 1.1.0 </td> <td style="text-align:center"> 1.1.1 </td>
  11. </tr>
  12. <tr>
  13. <td>
  14. ```python
  15. >>> from mindspore.ops import operations as P
  16. >>>
  17. >>> avg_pool = P.AvgPool(ksize=2, padding='same')
  18. >>> max_pool = P.MaxPool(ksize=2, padding='same')
  19. >>> max_pool_with_argmax = P.MaxPoolWithArgmax(ksize=2, padding='same')
  20. ```
  21. </td>
  22. <td>
  23. ```python
  24. >>> from mindspore.ops import operations as P
  25. >>>
  26. >>> avg_pool = P.AvgPool(kernel_size=2, pad_mode='same')
  27. >>> max_pool = P.MaxPool(kernel_size=2, pad_mode='same')
  28. >>> max_pool_with_argmax = P.MaxPoolWithArgmax(kernel_size=2, pad_mode='same')
  29. ```
  30. </td>
  31. </tr>
  32. </table>
  33. ###### `nn.LinSpace` ([!9494](https://gitee.com/mindspore/mindspore/pulls/9494)) has been removed and modify `ops.LinSpace` ([!8920](https://gitee.com/mindspore/mindspore/pulls/8920))
  34. The `nn.LinSpace` interface only support passing the value by args previously. For the convenience, we provided enhancive `ops.LinSpace` interface, which support passing the value by the inputs at the latest version. So there is no need for `nn.LinSpace`.
  35. <table>
  36. <tr>
  37. <td style="text-align:center"> 1.1.0 </td> <td style="text-align:center"> 1.1.1 </td>
  38. </tr>
  39. <tr>
  40. <td>
  41. ```python
  42. >>> from mindspore import nn
  43. >>>
  44. >>> start = 1
  45. >>> stop = 10
  46. >>> num = 5
  47. >>> linspace = nn.LinSpace(start, stop, num)
  48. >>> output = linspace()
  49. ```
  50. </td>
  51. <td>
  52. ```python
  53. >>> import mindspore
  54. >>> from mindspore import Tensor
  55. >>> from mindspore import ops
  56. >>>
  57. >>> linspace = ops.LinSpace()
  58. >>> start = Tensor(1, mindspore.float32)
  59. >>> stop = Tensor(10, mindspore.float32)
  60. >>> num = 5
  61. >>> output = linspace(start, stop, num)
  62. ```
  63. </td>
  64. </tr>
  65. </table>
  66. # MindSpore 1.1.0 Release Notes
  67. ## MindSpore
  68. ### Major Features and Improvements
  69. #### NewModels
  70. - [STABLE] GNMT v2: similar to the model described in Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation, which is mainly used for corpus translation, on WMT Englis-German dataset.(Ascend)
  71. - [STABLE] MaskRCNN: a conceptually simple, flexible, and general framework for object instance segmentation on COCO2017 dataset.(Ascend)
  72. - [STABLE] YOLOv4: a state-of-the-art detector which is faster and more accurate than all available alternative detectors on MS COCO dataset.(Ascend)
  73. - [STABLE] Openpose: proposes a bottom-up human attitude estimation algorithm using Part Affinity Fields on COCO2017 dataset.(Ascend)
  74. - [STABLE] CNN-CTC: proposes three major contributions to addresses scene text recognition (STR) on MJSynth and SynthText dataset.(Ascend)
  75. - [STABLE] CenterFace: a practical anchor-free face detection and alignment method for edge devices on WiderFace dataset.(Ascend)
  76. - [STABLE] ShuffleNetV2: a much faster and more accurate network than the previous networks on ImageNet 2012 dataset.(GPU)
  77. - [STABLE] EfficientNet-B0: a new scaling method that uniformly scales all dimensions of depth/width/resolution using a simple yet highly effective compound coefficient on ImageNet 2012 dataset.(GPU)
  78. - [BETA] SSD-GhostNet: based on an Ghost module structure which generate more features from cheap operations on Oxford-IIIT Pet dataset.(Ascend)
  79. - [BETA] DS-CNN: Depthwise separable convolutional neural network on Speech commands dataset.(Ascend)
  80. - [BETA] DeepPotentialH2O: A neural network model for molecular dynamics simulations. (Ascend)
  81. - [BETA] GOMO: A classical numerical method called GOMO for ocean simulation. (GPU)
  82. #### FrontEnd
  83. - [STABLE] Refactor the MINDIR to support 310 inference(Ascend).
  84. - [STABLE] The execution backend of sparse operations in optimizer can be set through 'target'. (Ascend/GPU/CPU)
  85. - [STABLE] Support saving specified network to checkpoint and filtering parameters according to prefix when load checkpoint. (Ascend/GPU/CPU)
  86. - [STABLE] Allow users choose whether to load parameter into network strictly.(Ascend/GPU/CPU)
  87. - [STABLE] Before training, in graph mode, in order to have the same network initialization parameter values ​​for all devices, broadcast the parameters on device 0 to other devices. (Ascend/GPU)
  88. - [STABLE] Support if by if of control flow subgraph. (Ascend/GPU)
  89. - [STABLE] Support the judgment that whether a tensor is in a list. (Ascend/GPU/CPU)
  90. - [STABLE] Support to get a value by using the corresponding key in a dictionary in the network; Support to get keys and values of a dictionary in the network. (Ascend/GPU/CPU)
  91. - [STABLE] Support Tensor in enumerate. (Ascend/GPU/CPU)
  92. - [STABLE] Support multilevel index assignment. (Ascend/GPU/CPU)
  93. - [STABLE] Support the 'expand_as','view','abs','mean' method of Tensor. (Ascend/GPU/CPU)
  94. - [STABLE] Support ResizeBilinear operation transfer ratio. (Ascend)
  95. - [STABLE] nn.Matmul supports matrix-vector product and batched matrix multiply. (Ascend/GPU)
  96. - [STABLE] nn.Dense supports input tensor whose dimension can be greater than 2. (Ascend/GPU)
  97. - [BETA] Support higher order differentiation for partial operators.(CPU/GPU/Ascend)
  98. - [STABLE] Support Tensor Augassign.(Ascend/GPU)
  99. - [BETA] Support 22 numpy native interfaces.
  100. #### Auto Parallel
  101. - [STABLE] Support parallel optimizer with weight shard. (Ascend/GPU)
  102. - [STABLE] Support distributed operators: element-wise series, UnsortedSegmentSum, UnsortedSegmentMin, Split, BroadcastTo and Unique etc. (Ascend/GPU)
  103. - [STABLE] Support distributed model prediction. (Ascend/GPU)
  104. - [STABLE] Support auto mixed precision level "O2" in auto and semi auto parallel mode. (Ascend/GPU)
  105. - [STABLE] Add MultiFieldEmbeddingLookup high-level interface. (Ascend/GPU)
  106. #### Executor
  107. - [STABLE] ResNet50 performance optimize. (GPU)
  108. - [STABLE] Support modelzoo net in PyNative mode(Ascend 29, GPU 23, CPU 2).(Ascend/GPU/CPU)
  109. - [STABLE] Support PyNative mode on CPU.(CPU)
  110. - [STABLE] Optimize performance in PyNative mode.(Ascend/GPU/CPU)
  111. - [STABLE] Support Safe Optimized Memory Allocation Solver (SOMAS) on Ascend to improve the memory-reuse, the batch size of Bert large model (128 sequence length) is increased from 160 to 208.(Ascend)
  112. - [BETA] Support second order differentiation in PyNative mode.(Ascend/GPU)
  113. - [DEMO] Add distributed trainning in PyNative mode.(Ascend/GPU)
  114. #### MDP
  115. - [STABLE] Add new operators for Ascend and GPU: IGamma, LGamma, DiGamma;
  116. - [STABLE] Add new distributions for Ascend and GPU: LogNormal, and Logistic;
  117. - [BETA] Add new distributions for Ascend only: Gumbel, Cauchy, Gamma, Beta, and Poisson; Add Categorical distribution for GPU;
  118. - [STABLE] Add new bijectors for Ascend and GPU: GumbelCDF, Invert;
  119. - [STABLE] Add Bayesian layer realized by local reparameterization method for Ascend and GPU;
  120. - [STABLE] Add Anomaly Detection Toolbox based on VAE for Ascend and GPU.
  121. #### DataSet
  122. - [STABLE] Support single node multi-p distributed cache data sharing
  123. - [STABLE] Support GPU profiling with data processing
  124. - [STABLE] Support YOLOV3 dynamic shape in sink mode with dataset
  125. - [STABLE] Support unique processing in the data processing pipeline
  126. - [STABLE] Python layer parameter verification error information unified
  127. ### API Change
  128. #### Backwards Incompatible Change
  129. ##### Python API
  130. ###### Parts of `Optimizer` add target interface ([!6760](https://gitee.com/mindspore/mindspore/pulls/6760/files))
  131. The usage of the sparse optimizer is changed.
  132. The target interface is used to set the execution backend of the sparse operator.
  133. The add_primitive_attr interface is no longer allowed.
  134. The following optimizers add the target interface: Adam, FTRL, LazyAdam, ProximalAdagrad
  135. <table>
  136. <tr>
  137. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  138. </tr>
  139. <tr>
  140. <td>
  141. ```python
  142. >>> from mindspore.nn import Adam
  143. >>>
  144. >>> net = LeNet5()
  145. >>> optimizer = Adam(filter(lambda x: x.requires_grad, net.get_parameters()))
  146. >>> optimizer.sparse_opt.add_prim_attr("primitive_target", "CPU")
  147. ```
  148. </td>
  149. <td>
  150. ```python
  151. >>> from mindspore.nn import Adam
  152. >>>
  153. >>> net = LeNet5()
  154. >>> optimizer = Adam(filter(lambda x: x.requires_grad, net.get_parameters()))
  155. >>> optimizer.target = 'CPU'
  156. ```
  157. </td>
  158. </tr>
  159. </table>
  160. ###### `export` Modify the input parameters and export's file name ([!7385](https://gitee.com/mindspore/mindspore/pulls/7385), [!9057](https://gitee.com/mindspore/mindspore/pulls/9057/files))
  161. Export the MindSpore prediction model to a file in the specified format.
  162. The reference includes: `net`, `*inputs`, `file_name`, `file_format`, `**kwargs`.
  163. Input parameters can be input according to specific export requirements.
  164. Add the file name extension based on the format.
  165. <table>
  166. <tr>
  167. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  168. </tr>
  169. <tr>
  170. <td>
  171. ```python
  172. >>> from mindspore.train.quant import quant
  173. >>>
  174. >>> network = LeNetQuant()
  175. >>> inputs = Tensor(np.ones([1, 1, 32, 32]), mindspore.float32)
  176. >>> quant.export(network, inputs, file_name="lenet_quant.mindir", file_format='MINDIR')
  177. lenet_quant.mindir
  178. ```
  179. </td>
  180. <td>
  181. ```python
  182. >>> from mindspore import export
  183. >>>
  184. >>> network = LeNetQuant()
  185. >>> inputs = Tensor(np.ones([1, 1, 32, 32]), mindspore.float32)
  186. >>> export(network, inputs, file_name="lenet_quant", file_format='MINDIR', quant_mode='AUTO')
  187. lenet_quant.mindir
  188. ```
  189. </td>
  190. </tr>
  191. </table>
  192. ###### `Dense`, `Conv2dBnAct`, `DenseBnAct`, `DenseQuant` support setting the activation attribute as an instance of a class derived from `nn.Cell` or `Primtive` ([!7581](https://gitee.com/mindspore/mindspore/pulls/7581))
  193. activation (Union[str, Cell, Primitive]): activate function applied to the output of the fully connected layer
  194. <table>
  195. <tr>
  196. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  197. </tr>
  198. <tr>
  199. <td>
  200. ```python
  201. >>> import mindspore.nn as nn
  202. >>>
  203. >>> dense = nn.Dense(1, 1, activation='relu')
  204. ```
  205. </td>
  206. <td>
  207. ```python
  208. >>> import mindspore.nn as nn
  209. >>> import mindspore.ops as ops
  210. >>>
  211. >>> dense = nn.Dense(1, 1, activation=nn.ReLU())
  212. >>> dense = nn.Dense(1, 1, activation=ops.ReLU())
  213. ```
  214. </td>
  215. </tr>
  216. </table>
  217. ###### `tensor.dim()`, `tensor.size()` has been renamed to `tensor.ndim`, `tensor.size` ([!10175](https://gitee.com/mindspore/mindspore/pulls/10175))
  218. Previously, tensor.size() and tensor.dim() were used for checking the total number of elements/dimensions in the tensor.
  219. However, from a user's perspective, tensor.size and tensor.ndim (methods -> properties) are better choices, since they follow the numpy naming convention.
  220. <table>
  221. <tr>
  222. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  223. </tr>
  224. <tr>
  225. <td>
  226. ```python
  227. >>> from mindspore import Tensor
  228. >>>
  229. >>> Tensor((1,2,3)).size()
  230. >>> Tensor((1,2,3)).dim()
  231. ```
  232. </td>
  233. <td>
  234. ```python
  235. >>> from mindspore import Tensor
  236. >>>
  237. >>> Tensor((1,2,3)).size
  238. >>> Tensor((1,2,3)).ndim
  239. ```
  240. </td>
  241. </tr>
  242. </table>
  243. ###### `EmbeddingLookup` add a config in the interface: sparse ([!8202](https://gitee.com/mindspore/mindspore/pulls/8202))
  244. sparse (bool): Using sparse mode. When 'target' is set to 'CPU', 'sparse' has to be true. Default: True.
  245. <table>
  246. <tr>
  247. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  248. </tr>
  249. <tr>
  250. <td>
  251. ```python
  252. >>> from mindspore.nn import EmbeddingLookup
  253. >>>
  254. >>> input_indices = Tensor(np.array([[1, 0], [3, 2]]), mindspore.int32)
  255. >>> result = EmbeddingLookup(4,2)(input_indices)
  256. >>> print(result.shape)
  257. (2, 2, 2)
  258. ```
  259. </td>
  260. <td>
  261. ```python
  262. >>> from mindspore.nn import EmbeddingLookup
  263. >>>
  264. >>> input_indices = Tensor(np.array([[1, 0], [3, 2]]), mindspore.int32)
  265. >>> result = EmbeddingLookup(4,2)(input_indices, sparse=False)
  266. >>> print(result.shape)
  267. (2, 2, 2)
  268. ```
  269. </td>
  270. </tr>
  271. </table>
  272. ###### `nn.probability.bijector` change types of attributes from (int, float) to (float, list, numpy.ndarray, Tensor) ([!8191](https://gitee.com/mindspore/mindspore/pulls/8191))
  273. Attributes Type change: (int, float) -> (float, list, numpy.ndarray, Tensor).
  274. Int type is not supported anymore. Parameters of all bijectors should be type float, list, numpy.ndarray or Tensor.
  275. <table>
  276. <tr>
  277. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  278. </tr>
  279. <tr>
  280. <td>
  281. ```python
  282. >>> import mindspore.nn.probability.bijector as msb
  283. >>>
  284. >>> power = 2
  285. >>> bijector = msb.PowerTransform(power=power)
  286. ```
  287. </td>
  288. <td>
  289. ```python
  290. >>> import mindspore.nn.probability.bijector as msb
  291. >>>
  292. >>> power = 2.0
  293. >>> bijector = msb.PowerTransform(power=power)
  294. ```
  295. </td>
  296. </tr>
  297. </table>
  298. ###### `nn.probability.bijector.GumbelCDF` remove a attribute in the interface: dtype ([!8191](https://gitee.com/mindspore/mindspore/pulls/8191))
  299. dtype is removed from GumbelCDF and is no longer an argument of the class.
  300. <table>
  301. <tr>
  302. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  303. </tr>
  304. <tr>
  305. <td>
  306. ```python
  307. >>> import mindspore.nn.probability.bijector as msb
  308. >>> from mindspore import dtype as mstype
  309. >>>
  310. >>> bijector = msb.GumbelCDF(loc=0.0, scale=1.0, dtype=mstype.float32)
  311. ```
  312. </td>
  313. <td>
  314. ```python
  315. >>> import mindspore.nn.probability.bijector as msb
  316. >>>
  317. >>> bijector = msb.GumbelCDF(loc=0.0, scale=1.0)
  318. ```
  319. </td>
  320. </tr>
  321. </table>
  322. ###### `nn.layer.combined.Conv2dBnAct`, `nn.layer.combined.DenseBnAct` move from nn.layer.quant to nn.layer.combined ([!8187](https://gitee.com/mindspore/mindspore/pulls/8187))
  323. Previously Conv2dBnAct and DenseBnAct are in nn.layer.quant, since they are not quant cells, now they are moved to nn.layer.combined. If you import Conv2dBnAct, DenseBnAct from mindspore.nn, then your code doesn't need any change.
  324. <table>
  325. <tr>
  326. <td style="text-align:center"> 1.0.1 </td> <td style="text-align:center"> 1.1.0 </td>
  327. </tr>
  328. <tr>
  329. <td>
  330. ```python
  331. >>> from mindspore.nn.layer.quant import Conv2dBnAct, DenseBnAct
  332. ```
  333. </td>
  334. <td>
  335. ```python
  336. >>> from mindspore.nn import Conv2dBnAct, DenseBnAct
  337. ```
  338. </td>
  339. </tr>
  340. </table>
  341. ###### `nn.layer.conv.Conv2D`, `nn.layer.quant.Conv2dBnFoldQuant`, `nn.layer.quant.Conv2dBnWithoutFoldQuant` change weight shape when group > 1 in Ascend platform ([!9723](https://gitee.com/mindspore/mindspore/pulls/9723))
  342. In Ascend platform, if group > 1, the weight shape of Conv2D change from [in_channels//group, out_channels, kernel_size, kernel_size] to [out_channels, in_channels//group, kernel_size, kernel_size]. Previously, checkpoints of the networks are used, which use Conv2D with group > 1, such as MobileNet, can not be directly used now, need to transpose the first and second axis of the weight.
  343. ### Bug fixes
  344. #### FrontEnd
  345. - [STABLE] Fix the problem of the cse optimization in the situation of control flow. (Ascend/GPU)
  346. #### Auto Parallel
  347. - [STABLE] Resolve the restriction: input and output layouts of Reshape are restricted in tensor redistribution. (Ascend/GPU)
  348. - [STABLE] Resolve the restriction: output strategy should be data parallel in model evaluation. (Ascend/GPU)
  349. #### Executor
  350. - [STABLE] Fix fusion operator compilation cache. (Ascend)
  351. - [STABLE] Fix compilation error of dynamic shape operator. (Ascend)
  352. - [STABLE] Fix bug of pynative cannot insert transdata of node output when node should be spilted in the backend opt.(Ascend)
  353. - [STABLE] Fix the bug of TensorMove and memcpy_async merge to one after backend cse pass (Ascend)
  354. #### DataSet
  355. - [STABLE] Fix cache server hang on RequestFreeTag. (Ascend/GPU/CPU)
  356. - [STABLE] Fix hung when use pyfunc multi-processing. (Ascend/GPU/CPU)
  357. - [STABLE] Fix add multiple parent nodes to tree node cause core dump. (Ascend/GPU/CPU)
  358. ## MindSpore Lite
  359. ### Major Features and Improvements
  360. #### Converter and runtime
  361. 1. Support dynamic shape in MindSpore Lite Converter.
  362. 2. Optimize sub-graph mechanism by dynamically splitting the entire graph into multiple subgraphs based on the operator supported, backend hardware and user configuration.
  363. 3. Support TensorList and TensorList operators such as TensorListFromTensor, TensorListGetItem and so on.
  364. 4. Support BatchMatMul fusion and LSTM fusion in MindSpore Lite Converter.
  365. 5. Support converting model and run inference on Windows operator system.
  366. 6. Support Model(.ms) visualization on Netron.
  367. 7. Support Tensorflow model in MindSpore Lite Converter
  368. 8. Add 86 converter parsers.
  369. 9. Convert aware training model without user’s awareness
  370. 10. Support scalar tensor in MindSpore Lite Converter and Runtime
  371. 11. Support NPU backend on HUAWEI Kirin SoC.[BETA]
  372. 12. Merge timeprofiler into benchmark
  373. #### CPU backend optimization
  374. 1. Add 50+ new operators, including new Op type(like Adder, Gru).
  375. 2. Enhanced performance on armv8.2 supported platform. For example, utilizing sdot instruction more efficiently.
  376. 3. Optimize all operators(fp32, fp16, int8) by implementing multi-thread, SIMD tech as much as possible. Model inference time can reduce at least 20% after these optimizations.
  377. 4. Extending to support operators for x86_64 platform based on SSE/AVX instruction set.
  378. #### OpenCL backend
  379. 1. Add new ops: add 10+ ops, total 58 ops;
  380. 2. Performance optimization: by memory layout optimize, Winograd Convolution select strategyoptimize, SIMT local size optimize, local cache optimize, GPU performance improvement up to 20+% vs MSLITE Version1.0
  381. 3. Add Online Graph optimzation: by fusion Convolution/Matmul/Fullconnection and add/mul/pad/reshape, improve performance up to 50+% for some networks;
  382. 4. Add auto tuning: by online tuning in the graph compilation phase, optimize performance up to 10%;
  383. 5. Add weight quant: support weight quant
  384. 6. Add opencl kernel binary cache: improve Initialization time .
  385. #### Post quantization
  386. MindSpore Lite supports both weight quantization and full quantization. Currently, Weights can be quantized into 1 ~ 16 bits according to user configuration. In internal testing, quantization of networks, such as classification, detection, segmentation and transformer are well supported. To ensure high accuracy of quantized models, MindSpore Lite uses a pipeline quantization method. In the first phase, the weight and activation value are quantized using linear quantization methods, such as MIN-MAX. In the second phase, the quantization error is analyzed, and uses statistical methods to compensate loss caused by fp32 quantization to a fixed point such as Int8 to quantized models. The features of Post-training quantization are:
  387. 1. perchannel asymmetric quantization for weights, such as MAX_MIN and KMEANS
  388. 2. Perlayer symmetric quantization for activation, such as KL and MAX_MIN.
  389. 3. perlayer asymmetrical quantization for activation, such as, RemoveOutlier.
  390. 4. accuracy loss compensation, such as BiasCorrection
  391. | mobilenet_v2 | ACC (ImageNet) |
  392. |---|---|
  393. | FP32 | 71.56% |
  394. |A8W8 | 71.16% |
  395. | A8W8(without BiasCorrection) | 70.74% |
  396. | A8W7 | 71.06% |
  397. | A7W7 | 70.78% |
  398. The above table uses the mobilenet_v2 model from TF official website. Using MindSpore Lite quantization, the precision of A8W8 (8-bit activation value quantization and 8-bit weight quantization) decreases from 0.82% to 0.4% after accuracy loss compensation, for 7-bit quantization, the precision loss is still no more than 1%.
  399. #### Training on Device
  400. Within MindSpore 1.1 release, the MindSpore Lite provides the following Training-on-Device (ToD) capabilities:
  401. 1. Learning from scratch and Transfer Learning strategies are supported
  402. 2. MindSpore based models can be converted and used in training on the device. (Third-party models such as TensorFlow and PyTorch for now cannot be directly imported to the framework)
  403. 3. Grad operations are supported for more than 30 operators such as Dense layers, Convolutions and Batch Normalizations. Momentum, SGD, and ADAM optimizers are supported.
  404. 4. Supports networks such as LeNet, Alexnet, Resnet, MobileNetV1/V2/V3, and EffectiveNet, and provides complete model loading, conversion, and Python training scripts on the device side.
  405. The MindSpore Lite ToD framework is already in use in the newest Huawei Smart TV, providing a unique and personalized user experience as a family entertainment center.
  406. ### API Change
  407. #### API Incompatible Change
  408. ##### C++ API
  409. - [Modify] Context now support multi-context configuration.(Context.h)
  410. - [Modify] Callback is move from lite_session.h into ms_tensor.h.
  411. - [Modify] GetInputsByName in lite_session.h is changed into GetInputsByTensorName
  412. - [Add] add static LiteSession *CreateSession(const char*model_buf, size_t size, const lite::Context *context) in lite_session.h
  413. - [Add] add GetErrorInfo interface returning error message in errorcode.h
  414. - [Delete] Remove model_generated.h, ops_generated.h and headers of FlatBuffers library from interfaces
  415. ##### Java API
  416. - [Add] Implement JNI layer and add Java api for CPU and GPU backend
  417. #### Deprecations
  418. ##### C++ API
  419. Deprecate Interface GetOutputsByNodeName
  420. ### Bug fixes
  421. - [BUGFIX] Fix the bug in sub-graph segmentation
  422. - [BUGFIX] Fix the bug in Tensor getitem in which the ellipsis matches the wrong dim-size.
  423. - [BUGFIX] Fix the bug that activation modification after defining Dense will not take effect.
  424. ### Contributors
  425. zhouyifengCode, huqi, JulyAi, damon0626, chenbo116, rmdyh, davidmc, gray0v0, doitH, Gogery, zymaa, xinyunfan
  426. # MindSpore 1.0.0 Release Notes
  427. ## Major Features and Improvements
  428. ### MindSpore Training and Inference Framework
  429. #### Ascend 910
  430. - New models
  431. - DenseNet121: a dense convolutional neural network, which connects each layer to every other layer in a feed-forward fashion for object recognition on ImageNet dataset.
  432. - UNet2D-Medical: Unet Medical model for 2D image segmentation, Convolutional Networks for Biomedical Image Segmentation on ISBI Challenge database.
  433. - Frontend and user interface
  434. - Second-Order Optimization
  435. - Enable second-order optimization for Bert on Ascend 910, which can achieve a masked lm accuracy of 71.3% in 800 seconds using 8 Ascend 910 (Bert-Large @MLPerf v0.7 dataset).
  436. - New GNN model BGCF
  437. - Bayesian Graph Convolutional Filtering network which naturally incorporate the uncertainty in the user-item interaction graph shows excellent recommendation performance on Amazon-Beauty dataset.
  438. - Add append interface for SequentialCell.
  439. - Add a level `auto` for AMP.
  440. - Executor and performance optimization
  441. - Support quantitative network (Resnet50 & YoloV3 & MobileNetV2).
  442. - Project ease of use optimization: project compilation time optimization, CMakelist regularization, cudnn, cuda independent compilation and installation independent.
  443. - Data processing, augmentation, and save format
  444. - Support GeneratorDataset return string type
  445. #### Other Hardware Support
  446. - GPU platform
  447. - Enable second-order optimization for resnet50 on GPU, which achieve 30% improvement on training time compared to SGD with Momentum (Resnet50 @ImageNet).
  448. #### User interfaces change log
  449. - Remove global object GradOperation in Autodiff([!5011](https://gitee.com/mindspore/mindspore/pulls/5011))
  450. - Remove useless attribute 'name' in Autodiff([!5172](https://gitee.com/mindspore/mindspore/pulls/5172))
  451. - Rectification distributed init([!5350](https://gitee.com/mindspore/mindspore/pulls/5350))
  452. - Move the setting of ParalleMode from train.parallel_utils to context([!5351](https://gitee.com/mindspore/mindspore/pulls/5351))
  453. - Modification of save_checkpoint([!5482](https://gitee.com/mindspore/mindspore/pulls/5482))
  454. - Wrap numpy random seed into an api([!5634](https://gitee.com/mindspore/mindspore/pulls/5634))
  455. - Delete enable_fused_layernorm in some modelzoo scripts([!5665](https://gitee.com/mindspore/mindspore/pulls/5665))
  456. - Move 'multi-subgraphs' interface to internal([!5696](https://gitee.com/mindspore/mindspore/pulls/5696))
  457. - Rename mirror_mean to gradient_mean([!5700](https://gitee.com/mindspore/mindspore/pulls/5700))
  458. - Remove default value of 'group' of DepthWiseConv2d([!5865](https://gitee.com/mindspore/mindspore/pulls/5865))
  459. - Modify interface for function and remove duplicated def([!5958](https://gitee.com/mindspore/mindspore/pulls/5958))
  460. - Unify Conv2d and DepthwiseConv2d([!5916](https://gitee.com/mindspore/mindspore/pulls/5916))
  461. - Modification of SoftmaxCrossEntropyWithLogits([!5502](https://gitee.com/mindspore/mindspore/pulls/5502))
  462. - Change API set_strategy() to shard()([!5991](https://gitee.com/mindspore/mindspore/pulls/5991))
  463. - Move batch_size from bert_cfg_cfg to cfg([!6233](https://gitee.com/mindspore/mindspore/pulls/6233))
  464. - Remove unused parameters from SummaryRecord __init__([!5548](https://gitee.com/mindspore/mindspore/pulls/5548))
  465. - remove sens parameter of TrainOneStepWithLossScaleCell([!5753](https://gitee.com/mindspore/mindspore/pulls/5753))
  466. - optimize the TrainOneStepCell for user's define([!6159](https://gitee.com/mindspore/mindspore/pulls/6159))
  467. - delete seed0 and seed1 of nn.Dropout([!5735](https://gitee.com/mindspore/mindspore/pulls/5735))
  468. - delete DataWrapper([!6101](https://gitee.com/mindspore/mindspore/pulls/6101))
  469. - LSTM API optimization([!6374](https://gitee.com/mindspore/mindspore/pulls/6374))
  470. - Merge P\C\F of ops([!5645](https://gitee.com/mindspore/mindspore/pulls/5645))
  471. - delete SoftmaxCrossEntropyExpand interface([!6607](https://gitee.com/mindspore/mindspore/pulls/6607))
  472. - Adjust GroupNorm interface([!6329](https://gitee.com/mindspore/mindspore/pulls/6329))
  473. - Modify init interface to internal interface([!6651](https://gitee.com/mindspore/mindspore/pulls/6651))
  474. - Log optimization([!5842](https://gitee.com/mindspore/mindspore/pulls/5842))
  475. - Remove useless API dataset.set_dataset_size([!5806](https://gitee.com/mindspore/mindspore/pulls/5806))
  476. - Some of Dataset API add usage parameter([!5605](https://gitee.com/mindspore/mindspore/pulls/5605))
  477. - Change the import path, such as from mindspore.dataset.transforms.vision to mindspore.dataset.vision.transforms([!5384](https://gitee.com/mindspore/mindspore/pulls/5384))
  478. - Rename ImageFolderDatasetV2 to ImageFolderDataset([!5384](https://gitee.com/mindspore/mindspore/pulls/5384))
  479. - Dataset.map parameter optimization([!5384](https://gitee.com/mindspore/mindspore/pulls/5384))
  480. - Add new api dataset.get_col_names([!5384](https://gitee.com/mindspore/mindspore/pulls/5384))
  481. - Add new api dataset.get_col_names([!5384](https://gitee.com/mindspore/mindspore/pulls/5384))
  482. - Remove useless API MindRecord finish([!5580](https://gitee.com/mindspore/mindspore/pulls/5580))
  483. ### MindSpore Lite
  484. - Converter
  485. - Add 6 TFLite op, 7 Caffe op, 1 ONNX op.
  486. - Add support for Windows.
  487. - Support parallel inference of multiple sessions to adapt to more scenarios
  488. - Support 8bits only weight-quantization, most main-stream models has small accuracy loss (less than 0.5%) when compared to non-qunantized fp32 model.
  489. - CPU & GPU
  490. - Add 20 CPU ops,include FP32, int8/uint8, FP16 and int32 ops.
  491. - Add supporting FP16 for GPU, add 14 GPU ops include FP32/FP16.
  492. - Add Buffer/Image2D transform op for GPU
  493. - Performance optimization for CPU ops focus on ARM32.
  494. - Performance optimization for GPU Convolution using winograd.
  495. - Tool & example
  496. - Add object detection Android Demo.
  497. ## Bugfixes
  498. - Models
  499. - fix the constant folding problem in multiply.([!6092](https://gitee.com/mindspore/mindspore/pulls/6092))
  500. - move batch_size from bert_net_cfg to cfg in bert scripts.([!6233](https://gitee.com/mindspore/mindspore/pulls/6233))
  501. - modify the checkpoint file path.([!6137](https://gitee.com/mindspore/mindspore/pulls/6137))
  502. - Python API
  503. - fix semi auto parallel parameter of reshape has another user([!5722](https://gitee.com/mindspore/mindspore/pulls/5722))
  504. - raise ValueError when call hook function in graph mode([!5831](https://gitee.com/mindspore/mindspore/pulls/5831))
  505. - Executor
  506. - fix pynative mode to build temporary nn objects.([!6189](https://gitee.com/mindspore/mindspore/pulls/6189))
  507. - fix the accuracy problem of multiple inputs of multi-card communication operator broadcast.([!6522](https://gitee.com/mindspore/mindspore/pulls/5622))
  508. - fix the problem that the sample distribution interface categorical does not support graph mode.([!5772](https://gitee.com/mindspore/mindspore/pulls/5772))
  509. - fix the random seed failure problem of the polynomial downsampling distribution operator.([!5948](https://gitee.com/mindspore/mindspore/pulls/5948))
  510. - fix unnecessary address binding issues in GPU heterogeneous scenarios.([!6232](https://gitee.com/mindspore/mindspore/pulls/6232))
  511. - GPU platform
  512. - fix for kernel resource leak([!5315](https://gitee.com/mindspore/mindspore/pulls/5315))
  513. - fix for insufficient memory for continuous unit test running([!5617](https://gitee.com/mindspore/mindspore/pulls/5617))
  514. - fix for the memory leak in the sparse slicer([!5578](https://gitee.com/mindspore/mindspore/pulls/5578))
  515. - Data processing
  516. - fix hang when use pyfunc([!6346](https://gitee.com/mindspore/mindspore/pulls/6346))
  517. - fix GPU device queue does not release GIL during resource clean up([!5964](https://gitee.com/mindspore/mindspore/pulls/5964))
  518. - fix hang if scripte exit unnormally([!6441](https://gitee.com/mindspore/mindspore/pulls/6441))
  519. - Third party
  520. - Sqlite : Update sqlite to 3.32.2 to handle [CVE-2020-11656](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11656), [CVE-2020-13871](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13871), [CVE-2020-11655](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655), [CVE-2020-9327](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9327), [CVE-2020-13630](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13630), [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15358), [CVE-2020-13631](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13631), [CVE-2020-13632](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13632), [CVE-2020-13434](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13434), [CVE-2020-13435](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13435), and [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655).
  521. - Libjpeg-turbo : Update libjpeg-turbo to 2.0.4 to handle [CVE-2020-13790](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13790).
  522. ## Contributors
  523. Thanks goes to these wonderful people:
  524. Adel, AGroupofProbiotocs, anthonyaje, anzhengqi, askmiao, baihuawei, baiyangfan, bai-yangfan, bingyaweng, BowenK, buxue, caifubi, CaoJian, caojian05, caozhou, Cathy, changzherui, chenfei, chengxianbin, chenhaozhe, chenjianping, chenzomi, chenzupeng, chujinjin, cj, cjh9368, Corleone, danish, Danish, dayschan, eric, Eric, fary86, fuzhiye, Gaoxiong, gengdongjie, gongdaguo, gukecai, guoqi, gzhcv, hangq, hanhuifeng2020, Harshvardhan, He, heleiwang, hexia, Hoai, HuangBingjian, huangdongrun, huanghui, huangxinjing, huzhifeng, hwjiaorui, Jesse, jianghui58, jiangzhiwen, Jiaqi, jin-xiulang, jinyaohui, jjfeing, John, Jonathan, jonyguo, jzg, kai00, kingfo, kingxian, kpy, kswang, laiyongqiang, leonwanghui, Li, liangchenghui, liangzelang, lichen_101010, lichenever, lihongkang, lilei, limingqi107, ling, linqingke, liubuyu, liuwenhao4, liuxiao78, liuxiao93, liuyang_655, liuzhongkai, Lixia, lixian, liyanliu, liyong, lizhenyu, luoyang, lvchangquan, lvliang, lz, mahdi, Mahdi, maning202007, Margaret_wangrui, mayang, mengyuanli, nhussain, ougongchang, panfengfeng, panyifeng, Payne, Peilin, peixu_ren, Pengyongrong, qianlong, r1chardf1d0, riemann_penn, root, Sheng, shenwei41, simson, Simson, Su, sunsuodong, tao_yunhao, tinazhang, VectorSL, , Wan, wandongdong, wangdongxu, wangmin, wangnan39@huawei.com, wangyue01, wangzhe, wanyiming, Wei, wenchunjiang, wilfChen, WilliamLian, wsc, wukesong, wuweikang, wuxuejian, Xiaoda, xiefangqi, xuanyue, xulei2020, Xun, xuyongfei, yanghaitao, yanghaitao1, yanghaoran, YangLuo, yangruoqi713, yankai, yanzhenxiang2020, yao_yf, yepei6, yeyunpeng, Yi, yoni, yoonlee666, yuchaojie, yujianfeng, yuximiao, zengzitao, Zhang, zhanghaibo5@huawei.com, zhanghuiyao, zhangyihui, zhangz0911gm, zhanke, zhanyuan, zhaodezan, zhaojichen, zhaoting, zhaozhenlong, zhengjun10, zhoufeng, zhousiyi, zhouyaqiang, Zichun, Zirui, Ziyan, zjun, ZPaC
  525. Contributions of any kind are welcome!
  526. # MindSpore 0.7.0-beta Release Notes
  527. ## Major Features and Improvements
  528. ### MindSpore Training and Inference Framework
  529. #### Ascend 910
  530. - New models
  531. - TinyBert: a smaller and faster version of BERT using transformer distillation for natural language understanding on GLUE benchmark.
  532. - SE-ResNet50: add Squeeze-and-Excitation blocks(SE-Blocks) to the resnet50 network to improve channel interdependencies for image classification on ImageNet 2012 dataset.
  533. - Inception V3: the third version of Inception convolutional architectures for image classification on ImageNet 2012 dataset.
  534. - Frontend and user interface
  535. - Embedding operator high-level packaging to support segmented by field for Wide&Deep.
  536. - Load multi-node checkpoint into single-process to support host-device hybrid inference.
  537. - Support Concat/Tile/Strideslice distributed operators.
  538. - Support cumulative gradient and batch training split.
  539. - Support variable parameter input for Cell object.
  540. - Parameter mixed calculation optimization for pynative mode.
  541. - Deep Probabilistic Programming
  542. - Support statistical distributions classes used to generate stochastic tensors.
  543. - Support probabilistic inference algorithms.
  544. - Support BNN layers used to construct BNN in Graph mode.
  545. - Support interfaces for the transformation between BNN and DNN in Graph mode.
  546. - Support uncertainty estimation to estimate epistemic uncertainty and aleatoric uncertainty.
  547. - User interfaces change log
  548. - change base class of parameter([!3473](https://gitee.com/mindspore/mindspore/pulls/3473))
  549. - change binary to mindir([!4258](https://gitee.com/mindspore/mindspore/pulls/4258))
  550. - change export from geir to air([!4269](https://gitee.com/mindspore/mindspore/pulls/4269))
  551. - Init parameter data by default([!3967](https://gitee.com/mindspore/mindspore/pulls/3967))
  552. - change IndexedSlices to RowTensor([!4031](https://gitee.com/mindspore/mindspore/pulls/4031))
  553. - Must set or change parallel mode before any Initializer created([!4801](https://gitee.com/mindspore/mindspore/pulls/4801))
  554. - Executor and performance optimization
  555. - MindSpore graph compilation process performance improved by 20%.
  556. - Decoupling C++ and Python modules to achieve separate compilation of core modules.
  557. - Data processing, augmentation, and save format
  558. - Support automatic data augmentation
  559. - Support GNN distributed cache in single node
  560. - Support ConcatDataset using distributed sampler
  561. #### Other Hardware Support
  562. - GPU platform
  563. - New model supported: VGG16, ResNet101, DeepFM.
  564. - Support some distributed operators in ResNet50 and Wide&Deep.
  565. - Support automatic parallel for Wide&Deep.
  566. - Support function funcs[i](*inputs) (such as switch-case).
  567. - Support distributed training with parameter server.
  568. - Support GPU operator profiling.
  569. - Performance optimization of the distributed training with allreduce.
  570. - Performance optimization of the mixed precision training.
  571. - Performance optimization of the pynative mode.
  572. - Performance optimization of the convolution operator, batch normalization operator.
  573. - CPU platform
  574. - Support MobileNetV2 Re-Training: Re-train the network with different class number.
  575. ### MindSpore Lite
  576. - Converter
  577. - Support third-party models, including TFLite/Caffe/ONNX.
  578. - Add 93 TFLite op.
  579. - Add 24 Caffe op.
  580. - Add 62 ONNX op.
  581. - Add 11 optimized passes, include fusion/const fold.
  582. - Support aware-training and Post-training quantization.
  583. - CPU
  584. - Add 100+ops,support fp32, int8/uint8, FP16 ops
  585. - Support fast convolution algorithms: Sliding Window, Img2col + Gemm, Strassen, Winograd
  586. - Support assembly/neon instruction.
  587. - Support CPU fp16 and sdot on ARM v8.2+.
  588. - GPU
  589. - Add 20+ ops for OpenCL.
  590. - Support image2D/buffer format.
  591. - Optimize online initialization time.
  592. - add optimized convolution1X1/3X3/depthwise/convolution_transposed for OpenCL.
  593. - Tool & example
  594. - Add benchmark and TimeProfile tools.
  595. - Add image classification Android Demo.
  596. ## Bugfixes
  597. - Models
  598. - normalize the readme file([!5410](https://gitee.com/mindspore/mindspore/pulls/5410))
  599. - fix a sink_size bug for transformer([!5393](https://gitee.com/mindspore/mindspore/pulls/5393))
  600. - fix bool type optional for resnet50([!5363](https://gitee.com/mindspore/mindspore/pulls/5363))
  601. - Python API
  602. - improve interface '__bool__' for tensor([!4000](https://gitee.com/mindspore/mindspore/pulls/4000))
  603. - fix GPU-ResizeNearestNeighbor([!3760](https://gitee.com/mindspore/mindspore/pulls/3760))
  604. - fix topK multi dimension grad func([!3711](https://gitee.com/mindspore/mindspore/pulls/3711))
  605. - fix scatterop error msg([!3699](https://gitee.com/mindspore/mindspore/pulls/3699))
  606. - fix bug of cast dtype when using mix_presion in pynative mode([!3730](https://gitee.com/mindspore/mindspore/pulls/3730))
  607. - Executor
  608. - fix etsnet train error when UnsegmentSum's first input shape is (1,) ([!4573](https://gitee.com/mindspore/mindspore/pulls/4573))
  609. - fix bug of result error in while control flow because of unsupporting for value reference ([!4103](https://gitee.com/mindspore/mindspore/pulls/4103))
  610. - fix bug of the output tensor does not carry device data type ([!3774](https://gitee.com/mindspore/mindspore/pulls/3774))
  611. - fix bug of avoiding multi attr value are eliminated in pynative mode ([!4225](https://gitee.com/mindspore/mindspore/pulls/4225))
  612. - fix bug of AssignAdd unable to work normally in multi-cases ([!5171](https://gitee.com/mindspore/mindspore/pulls/5171))
  613. - GPU platform
  614. - improve the environment variable checking for nvcc compiler path ([!5140](https://gitee.com/mindspore/mindspore/pulls/5140))
  615. - fix bug of error in cast operator conversion from fp16 to fp32 ([!4147](https://gitee.com/mindspore/mindspore/pulls/4147))
  616. - fix bug of the array out of bound in case of make_tuple operator ([!5219](https://gitee.com/mindspore/mindspore/pulls/5219))
  617. - Data processing and Pro
  618. - fix GeneratorDataset time out([!3624](https://gitee.com/mindspore/mindspore/pulls/3624))
  619. - fix concat operator get_dataset_size error([!4701](https://gitee.com/mindspore/mindspore/pulls/4701))
  620. - fixing python validator for Repeat Op([!4366](https://gitee.com/mindspore/mindspore/pulls/4366))
  621. - Third party
  622. - Sqlite : Update sqlite to 3.32.2 to handle [CVE-2020-11656](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11656), [CVE-2020-13871](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13871), [CVE-2020-11655](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655), [CVE-2020-9327](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9327), [CVE-2020-13630](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13630), [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15358), [CVE-2020-13631](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13631), [CVE-2020-13632](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13632), [CVE-2020-13434](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13434), [CVE-2020-13435](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13435), and [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655).
  623. - Libjpeg-turbo : Update libjpeg-turbo to 2.0.4 to handle [CVE-2020-13790](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13790).
  624. ## Contributors
  625. Thanks goes to these wonderful people:
  626. Adel, Alexey, andy, andy_wangrui, anthonyaje, anzhengqi, askmiao, avakh, baihuawei, bingyaweng, BowenK, buxue, caifubi, CaoJian, caozhou, Cathy, changzherui, chenfei, chengxianbin, chenhaozhe, chenjianping, chentingting, chenzomi, chenzupeng, chujinjin, cjh9368, Corleone, cristoval, danish, dengyutao, eric, Eric, ervinzhang, etone-chan, fangzehua, fary86, fuzhiye, gengdongjie, genglishuai, Giancarlo, gongdaguo, gukecai, guohongzilong, GuoMengHao, hangq, hanhaocheng, hanhuifeng2020, hanjun996, Harshvardhan, He, heleiwang, hesham, hexia, Hoai, hongxing, huangdongrun, huanghui, huangxinjing, islam_amin, Jesse, jianghui58, jiangzhiwen, jin-xiulang, jinyaohui, jjfeing, John, Jonathan, jonyguo, kai00, kingfo, kpy, kswang, laiyongqiang, leilei_snow, leopz, Li, liangzelang, lianliguang, lichen_101010, lichenever, lihongkang, lilei, limingqi107, ling, lingyunli63, linqingke, lirongzhen1, liubuyu, liuwenhao4, liuxiao78, liuxiao93, liuzhongkai, Lixia, lixian, liyong, lizhenyu, looop5, luoyang, lvchangquan, lvliang, lvwenyuan, lyvette, mahdi, Mahdi, mamba_ni, maning202007, Margaret_wangrui, mayang, meixiaowei, meng_chunyang, ms_yan, nhussain, panbingao, panfengfeng, panyifeng, Payne, Peilin, peixu_ren, pengyongrong, Pengyongrong, qianlong, qujianwei, root, shenwei41, shibeiji, simson, songhonglei413, Su, sunsuodong, suteng, tao_yunhao, TFbunny, tinazhang, tom__chen, tony_liu2, tronzhang, VectorSL, wandongdong, wangdongxu, wanghua, wangmin, wangshaocong, wangzhe, wanyiming, Wei, wenchunjiang, wilfChen, WilliamLian, wsc, wukesong, wuweikang, wuxuejian, wuyongkang, xiefangqi, xuanyue, Xun, xutianchun, xuyongfei, yanghaitao, yangjie159, YangLuo, yangruoqi713, yangyongjie, yangzhenzhang, yankai, yao_yf, yelihua, yeyunpeng, Yi, yoni, yoonlee666, yuchaojie, yujianfeng, yuximiao, zhangxuetong, zhaizhiqiang, Zhang, zhangxinfeng3, zhangxuetong, zhangyihui, zhangz0911gm, zhanke, zhanyuan, zhaodezan, zhaoting, zhaozhenlong, zhengjun10, zhongligeng, zhoufeng, zhousiyi, zhouyaqiang, zhouyuanshen, Zichun, Zirui, zjun, zongha, ZPaC, lijiaqi, liangchenghui, wangminggui
  627. Contributions of any kind are welcome!
  628. # MindSpore 0.6.0-beta Release Notes
  629. ## Major Features and Improvements
  630. ### Ascend 910 Training and Inference Framework
  631. - New models
  632. - There are official, research and community under modelzoo.
  633. - Official is maintained with the newest APIs by MindSpore team, MaskRCNN are added.
  634. - Research is uploaded by researchers for official review, and APIs may not be updated in time.
  635. - Community reprints the relevant links of partner research results.
  636. - Hub added on the same level as modelzoo, synchronous storage of materials needed for official hub web pages which will be launched soon.
  637. - Support pre-trained models, few lines of code can be used to download and load pre-trained models, supporting inference or transfer learning.
  638. - Frontend and user interface
  639. - Supports user side operator compilation and graph execution error rendering.
  640. - Uniform definition dynamic learning rate behavior in optimizers.
  641. - Support IndexSlice in sparse expression.
  642. - Support use parent construct method during construct.
  643. - Support asynchronous execution save checkpoint file.
  644. - Support implicit type conversion in pynative mode.
  645. - User interfaces change log
  646. - unform learning rate behavior in optimizers([!2755](https://gitee.com/mindspore/mindspore/pulls/2755))
  647. - rename operator of sparse optimizer([!3217](https://gitee.com/mindspore/mindspore/pulls/3217))
  648. - move profiler module from mindinsight to mindspore([!3075](https://gitee.com/mindspore/mindspore/pulls/3075))
  649. - VOCDataset output change to multi-columns([!3093](https://gitee.com/mindspore/mindspore/pulls/3093))
  650. - GetDatasize feature([!3212](https://gitee.com/mindspore/mindspore/pulls/3212))
  651. - dataset: modify config api([!2936](https://gitee.com/mindspore/mindspore/pulls/2936))
  652. - Executor and performance optimization
  653. - Decouple C++ and python, so make the architecture more extensible.
  654. - Parameter Server for distributed deep learning supported.
  655. - Serving:a flexible service deployment framework for deep learning models.
  656. - Memory reuse is enhanced, and the batch size of Bert large model is increased from 96 to 160 on a single server.
  657. - Data processing, augmentation, and save format
  658. - Support MindRecord save operator after date processing
  659. - Support automatic fusion operator, such as decode/resize/crop
  660. - Support CSV dataset loading
  661. ### Other Hardware Support
  662. - GPU platform
  663. - New model supported: ResNext50, WarpCTC and GoogLeNet.
  664. - Support hyperparametric search and data enhanced automl on GPU.
  665. - Support Resnet50 automatic parallel in GPU backend.
  666. ## Bugfixes
  667. - Models
  668. - Improved the performance and accuracy on ResNet50([!3456](https://gitee.com/mindspore/mindspore/pulls/3456))
  669. - Fixed the performance test case of bert([!3486](https://gitee.com/mindspore/mindspore/pulls/3486))
  670. - Python API
  671. - Fix assign used in while loop([!2720](https://gitee.com/mindspore/mindspore/pulls/2720))
  672. - Revert optimize the graph output of all nop node.([!2857](https://gitee.com/mindspore/mindspore/pulls/2857))
  673. - Print tensor as numpy.([!2859](https://gitee.com/mindspore/mindspore/pulls/2859))
  674. - Support weight decay for sparse optimizer([!2668](https://gitee.com/mindspore/mindspore/pulls/2668))
  675. - Fix BatchToSpaceND([!2741](https://gitee.com/mindspore/mindspore/pulls/2741))
  676. - Fixing type check mistakes of InplaceAdd and Inplace Sub ops([!2744](https://gitee.com/mindspore/mindspore/pulls/2744]))
  677. - Change order param only equal to group param([!2748](https://gitee.com/mindspore/mindspore/pulls/2748))
  678. - Executor
  679. - The performance of graph with control flow is optimized([!2931](https://gitee.com/mindspore/mindspore/pulls/2931))
  680. - Fix bug of wrong number of tuple layers([!3390](https://gitee.com/mindspore/mindspore/pulls/3390))
  681. - Fix cpu multi graph memory exception([!3631](https://gitee.com/mindspore/mindspore/pulls/3631))
  682. - Enable data sync when calling operator without defining a cell([!3081](https://gitee.com/mindspore/mindspore/pulls/3081))
  683. - Fix argmaxwith value error in pynative mode on GPU([!3082](https://gitee.com/mindspore/mindspore/pulls/3082))
  684. - Fix precision error with fp16 input on pynative mode([!3196](https://gitee.com/mindspore/mindspore/pulls/3196))
  685. - Data processing
  686. - Fix bug of RandomColor and RandomSharpness default parameter checking ([!2833](https://gitee.com/mindspore/mindspore/pulls/2833))
  687. - Fix process hung when training and eval ([!3469](https://gitee.com/mindspore/mindspore/pulls/3469))
  688. - Third party
  689. - Sqlite : Update sqlite to 3.32.2 to handle [CVE-2020-11656](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11656), [CVE-2020-13871](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13871), [CVE-2020-11655](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655), [CVE-2020-9327](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9327), [CVE-2020-13630](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13630), [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15358), [CVE-2020-13631](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13631), [CVE-2020-13632](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13632), [CVE-2020-13434](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13434), [CVE-2020-13435](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13435), and [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655).
  690. - Libjpeg-turbo : Update libjpeg-turbo to 2.0.4 to handle [CVE-2020-13790](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13790).
  691. ## Contributors
  692. Thanks goes to these wonderful people:
  693. Alexey Shevlyakov, avakh, baihuawei, BowenK, buxue, caifubi, caojian05, Cathy Wong, changzherui, chenfei, chengxianbin, chenhaozhe, chenjianping, chentingting, chenzomi, chujinjin, Danish Farid, dayschan, dengwentao, dinghao, etone-chan, fangzehua, fary86, geekun, Giancarlo Colmenares, gong chen, gukecai, guohongzilong, hangangqiang, heleiwang, hesham, He Wei, hexia, hongxing, huangdongrun, huanghui, islam_amin, Jamie Nisbet, Jesse Lee, jiangjinsheng, jiangzhiwen, jinyaohui, jjfeing, jojobugfree, Jonathan Yan, jonyguo, Junhan Hu, Kang, kingfo, kouzhenzhong, kpy, kswang, laiyongqiang, leopz, liangzelang, lichenever, lihongkang, Li Hongzhang, lilei, limingqi107, lirongzhen1, liubuyu, liuchongming74, liuwenhao4, liuxiao, Lixia Chen, liyanliu, liyong, lizhenyu, lvliang, Mahdi, Margaret_wangrui, meixiaowei, ms_yan, nhussain, ougongchang, panfengfeng, panyifeng, peilinwang, Peilin Wang, pkuliuliu, qianlong, rick_sanchez, shibeiji, Shida He, shijianning, simson, sunsuodong, suteng, Tinazhang, Tron Zhang, unknown, VectorSL, wandongdong, wangcong, wangdongxu, wangdongxu6, wanghua, wangnan39, Wei Luning, wenchunjiang, wenkai, wilfChen, WilliamLian, wukesong, Xian Weizhao, Xiaoda Zhang, xiefangqi, xulei2020, xunxue, xutianchun, Yang, yanghaitao, yanghaitao1, yanghaoran, yangjie, yangjie159, YangLuo, Yanjun Peng, yankai, yanzhenxiang2020, yao_yf, Yi Huaijie, yoonlee666, yuchaojie, yujianfeng, zhangzhongpeng, zhangdengcheng, Zhang Qinghua, zhangyinxia, zhangz0911gm, zhaojichen, zhaoting, zhaozhenlong, zhoufeng, zhouneng, zhousiyi, Zirui Wu, Ziyan, zjun, ZPaC, lihongzhang, wangdongxu
  694. Contributions of any kind are welcome!
  695. # MindSpore 0.5.2-beta Release Notes
  696. ## Major Features and Improvements
  697. ### Ascend 910 Training and Inference Framework
  698. - New models
  699. - DenseNet121: a convolution based neural network for the task of image classification on ImageNet 2012 dataset.
  700. ## Bugfixes
  701. - Models
  702. - VGG16,Alexnet,GoogleNet,optimize network for better performance. ([!5539](https://gitee.com/mindspore/mindspore/pulls/5539))
  703. - YOLOV3, fix yolov3_darknet53 dataset bug. ([!5658](https://gitee.com/mindspore/mindspore/pulls/5658))
  704. ## Contributors
  705. Thanks goes to these wonderful people:
  706. Alexey Shevlyakov, avakh, baihuawei, BowenK, buxue, caifubi, caojian05, Cathy Wong, changzherui, chenfei, chengxianbin, chenhaozhe, chenjianping, chentingting, chenzomi, chujinjin, Danish Farid, dayschan, dengwentao, dinghao, etone-chan, fangzehua, fary86, geekun, Giancarlo Colmenares, gong chen, gukecai, guohongzilong, hangangqiang, heleiwang, hesham, He Wei, hexia, hongxing, huangdongrun, huanghui, islam_amin, Jamie Nisbet, Jesse Lee, jiangjinsheng, jiangzhiwen, jinyaohui, jjfeing, jojobugfree, Jonathan Yan, jonyguo, Junhan Hu, Kang, kingfo, kouzhenzhong, kpy, kswang, laiyongqiang, leopz, liangzelang, lichenever, lihongkang, Li Hongzhang, lilei, limingqi107, lirongzhen1, liubuyu, liuchongming74, liuwenhao4, liuxiao, Lixia Chen, liyanliu, liyong, lizhenyu, lvliang, Mahdi, Margaret_wangrui, meixiaowei, ms_yan, nhussain, ougongchang, panfengfeng, panyifeng, peilinwang, Peilin Wang, pkuliuliu, qianlong, rick_sanchez, shibeiji, Shida He, shijianning, simson, sunsuodong, suteng, Tinazhang, Tron Zhang, unknown, VectorSL, wandongdong, wangcong, wangdongxu, wangdongxu6, wanghua, wangnan39, Wei Luning, wenchunjiang, wenkai, wilfChen, WilliamLian, wukesong, Xian Weizhao, Xiaoda Zhang, xiefangqi, xulei2020, xunxue, xutianchun, Yang, yanghaitao, yanghaitao1, yanghaoran, yangjie, yangjie159, YangLuo, Yanjun Peng, yankai, yanzhenxiang2020, yao_yf, Yi Huaijie, yoonlee666, yuchaojie, yujianfeng, zhangzhongpeng, zhangdengcheng, Zhang Qinghua, zhangyinxia, zhangz0911gm, zhaojichen, zhaoting, zhaozhenlong, zhoufeng, zhouneng, zhousiyi, Zirui Wu, Ziyan, zjun, ZPaC, lihongzhang, wangdongxu
  707. Contributions of any kind are welcome!
  708. # MindSpore 0.5.0-beta Release Notes
  709. ## Major Features and Improvements
  710. ### Ascend 910 Training and Inference Framework
  711. - New models
  712. - ResNext50: a simple, highly modularized network architecture using aggregated resdiual transformations for image classification on ImageNet 2012 dataset.
  713. - MASS: a pre-training method for sequence to sequence based language generation tasks on Text Summarization and Conversational Response Generation using News Crawls 2007-2017 dataset, Gigaword corpus and Cornell movie dialog corpus.
  714. - Transformer: a neural network architecture for language understanding on WMT 2014 English-German dataset.
  715. - GCN:Graph Convolutional Networks for the task of classification of nodes in a graph on Cora and Citeseer datasets.
  716. - GAT:an attention-based graph neural network for node classification on Cora and CiteSeer dataset.
  717. - Frontend and user interface
  718. - Support tensor value and assignment of mixed tensor index in graph mode.
  719. - Support tensor comparison, len operator, constexpr syntax, value and assignment of tensor index in pynative mode.
  720. - Support converting MindSpore IR to pb format for infer model.
  721. - Support print operator to write data directly on the hard disk.
  722. - Add the double recursive programming solution for very high speed parallel strategy search in automatic parallel.
  723. - User interfaces change log
  724. - Allow the learning rate of AdamWeightDecayDynamicLR and Lamb to be 0([!1826](https://gitee.com/mindspore/mindspore/pulls/1826))
  725. - Restricting the entire network input parameter is Tensor([!1967](https://gitee.com/mindspore/mindspore/pulls/1967))
  726. - Turn shape and dtype into attributes instead of interfaces([!1919](https://gitee.com/mindspore/mindspore/pulls/1919))
  727. - Delete multitypefungraph([!2116](https://gitee.com/mindspore/mindspore/pulls/2116))
  728. - Refactor the callback module in an encapsulated way, use _CallbackManager instead of_build_callbacks([!2236](https://gitee.com/mindspore/mindspore/pulls/2236))
  729. - Delete EmbeddingLookup([!2163](https://gitee.com/mindspore/mindspore/pulls/2163))
  730. - Checkpoint add model_type([!2517](https://gitee.com/mindspore/mindspore/pulls/2517))
  731. - Executor and performance optimization
  732. - Heterogeneous execution on CPU and Ascend devices supported, and is verified in Wide&Deep model.
  733. - Quantitative training of MobileNetV2, Lenet and Resnet50 on Ascend-910 are supported.
  734. - Support new fusion architecture, which can do fusion optimization across graphs and kernels to improve execution speed.
  735. - Data processing, augmentation, and save format
  736. - Support data processing pipeline performance profiling.
  737. - Support public dataset loading, such as CLUE and Coco.
  738. - Support more text processing, such as more tokenizers and vocab data.
  739. - Support MindRecord padded data.
  740. ### Other Hardware Support
  741. - GPU platform
  742. - New model supported: Bert / Wide&Deep.
  743. - Support setting max device memory.
  744. - CPU platform
  745. - New model supported: LSTM.
  746. ## Bugfixes
  747. - Models
  748. - Bert, Move Bert from `example` to `model_zoo`, optimize network for better performance. ([!1902](https://gitee.com/mindspore/mindspore/pulls/1902))
  749. - VGG16, Move VGG16 from `example` to `model_zoo`, optimize network for better accuracy. ([!2645](https://gitee.com/mindspore/mindspore/pulls/2645))
  750. - Alexnet, modify parameter setting to improve accuracy ([!1364](https://gitee.com/mindspore/mindspore/pulls/2370))
  751. - Wide&Deep, Move Wide&Deep from `example` to `model_zoo`, optimize network for better performance. ([!2221](https://gitee.com/mindspore/mindspore/pulls/2221))
  752. - Python API
  753. - Fix bug in auto cast([!1766](https://gitee.com/mindspore/mindspore/pulls/1766))
  754. - Fix bug of register_backward_hook([!2148](https://gitee.com/mindspore/mindspore/pulls/2148))
  755. - Fix bug of tuple args in pynative mode([!1878](https://gitee.com/mindspore/mindspore/pulls/1878))
  756. - Fix bug of checking numbers of arguments and graph parameters([!1701](https://gitee.com/mindspore/mindspore/pulls/1701))
  757. - Executor
  758. - Fix bug of loading input data repeatedly in pynative mode([!1966](https://gitee.com/mindspore/mindspore/pulls/1966))
  759. - Fix bug of list cannot be used as input in pynative mode([!1765](https://gitee.com/mindspore/mindspore/pulls/1765))
  760. - Fix bug of kernel select ([!2103](https://gitee.com/mindspore/mindspore/pulls/2103))
  761. - Fix bug of pattern matching for batchnorm fusion in the case of auto mix precision.([!1851](https://gitee.com/mindspore/mindspore/pulls/1851))
  762. - Fix bug of generate hccl's kernel info.([!2393](https://gitee.com/mindspore/mindspore/pulls/2393))
  763. - GPU platform
  764. - Fix bug of summary feature invalid([!2173](https://gitee.com/mindspore/mindspore/pulls/2173))
  765. - Data processing
  766. - Fix bug of Cifar dataset reading([!2096](https://gitee.com/mindspore/mindspore/pulls/2096))
  767. - Fix bug of C++ behavior in RandomCropAndResize([!2026](https://gitee.com/mindspore/mindspore/pulls/2026))
  768. - Fix the bug of mindrecord shuffle([!2420](https://gitee.com/mindspore/mindspore/pulls/2420))
  769. - Third party
  770. - Sqlite : Update sqlite to 3.32.2 to handle [CVE-2020-11656](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11656), [CVE-2020-13871](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13871), [CVE-2020-11655](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655), [CVE-2020-9327](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9327), [CVE-2020-13630](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13630), [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15358), [CVE-2020-13631](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13631), [CVE-2020-13632](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13632), [CVE-2020-13434](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13434), [CVE-2020-13435](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13435), and [CVE-2020-15358](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11655).
  771. ## Contributors
  772. Thanks goes to these wonderful people:
  773. Alexey Shevlyakov, avakh, baihuawei, BowenK, buxue, caifubi, caojian05, Cathy Wong, changzherui, chenfei, chengxianbin, chenhaozhe, chenjianping, chentingting, chenzomi, chujinjin, Danish Farid, dayschan, dengwentao, dinghao, etone-chan, fangzehua, fary86, geekun, Giancarlo Colmenares, gong chen, gukecai, guohongzilong, hangangqiang, heleiwang, hesham, He Wei, hexia, hongxing, huangdongrun, huanghui, islam_amin, Jamie Nisbet, Jesse Lee, jiangjinsheng, jiangzhiwen, jinyaohui, jjfeing, jojobugfree, Jonathan Yan, jonyguo, Junhan Hu, Kang, kingfo, kouzhenzhong, kpy, kswang, laiyongqiang, leopz, liangzelang, lichenever, lihongkang, Li Hongzhang, lilei, limingqi107, lirongzhen1, liubuyu, liuchongming74, liuwenhao4, liuxiao, Lixia Chen, liyanliu, liyong, lizhenyu, lvliang, Mahdi, Margaret_wangrui, meixiaowei, ms_yan, nhussain, ougongchang, panfengfeng, panyifeng, peilinwang, Peilin Wang, pkuliuliu, qianlong, rick_sanchez, shibeiji, Shida He, shijianning, simson, sunsuodong, suteng, Tinazhang, Tron Zhang, unknown, VectorSL, wandongdong, wangcong, wangdongxu, wangdongxu6, wanghua, wangnan39, Wei Luning, wenchunjiang, wenkai, wilfChen, WilliamLian, wukesong, Xian Weizhao, Xiaoda Zhang, xiefangqi, xulei2020, xunxue, xutianchun, Yang, yanghaitao, yanghaitao1, yanghaoran, yangjie, yangjie159, YangLuo, Yanjun Peng, yankai, yanzhenxiang2020, yao_yf, Yi Huaijie, yoonlee666, yuchaojie, yujianfeng, zhangzhongpeng, zhangdengcheng, Zhang Qinghua, zhangyinxia, zhangz0911gm, zhaojichen, zhaoting, zhaozhenlong, zhoufeng, zhouneng, zhousiyi, Zirui Wu, Ziyan, zjun, ZPaC, lihongzhang, wangdongxu
  774. Contributions of any kind are welcome!
  775. # MindSpore 0.3.1-alpha Release Notes
  776. ## Major Features and Improvements
  777. ### Ascend 910 Training and Inference Framework
  778. - Frontend and User Interface
  779. - Independent model init interface.
  780. - Data processing, augmentation, and save format
  781. - Support sample padding for minddataset.
  782. ## Bugfixes
  783. - Python API
  784. - Fix bugs in the lars optimizer([!1894](https://gitee.com/mindspore/mindspore/pulls/1894))
  785. - Data processing
  786. - Fix accuracy problem of RandomCropDecodeResize ([!2340](https://gitee.com/mindspore/mindspore/pulls/2340))
  787. # Release 0.3.0-alpha
  788. ## Major Features and Improvements
  789. ### Ascend 910 Training and Inference Framework
  790. - New models
  791. - DeepFM: a factorization-machine based neural network for CTR prediction on Criteo dataset.
  792. - DeepLabV3: significantly improves over our previous DeepLab versions without DenseCRF post-processing and attains comparable performance with other state-of-art models on the PASCAL VOC 2007 semantic image segmentation benchmark.
  793. - Faster-RCNN: towards real-time object detection with region proposal networks on COCO 2017 dataset.
  794. - SSD: a single stage object detection methods on COCO 2017 dataset.
  795. - GoogLeNet: a deep convolutional neural network architecture codenamed Inception V1 for classification and detection on CIFAR-10 dataset.
  796. - Wide&Deep: jointly trained wide linear models and deep neural networks for recommender systems on Criteo dataset.
  797. - Frontend and User Interface
  798. - Complete numpy advanced indexing method. Supports value and assignment through tensor index.
  799. - Some optimizers support separating parameter groups. Different parameter groups can set different `learning_rate` and `weight_decay`.
  800. - Support setting submodule's logging level independently, e.g. you can set logging level of module `A` to warning and set logging level of module `B` to info.
  801. - Support weights to be compiled according to shape to solve the problem of large memory overhead.
  802. - Add some operators implement and grammar support in pynative mode. To be consistent with graph mode.
  803. - User interfaces change log
  804. - Learning rate and weight decay making group params([!637](https://gitee.com/mindspore/mindspore/pulls/637))
  805. - Support weights to be compiled according to shape([!1015](https://gitee.com/mindspore/mindspore/pulls/1015))
  806. - delete some context param([!1100](https://gitee.com/mindspore/mindspore/pulls/1100))
  807. - ImageSummary/ScalarSummary/TensorSummary/HistogramSummary([!1329](https://gitee.com/mindspore/mindspore/pulls/1329))([!1425](https://gitee.com/mindspore/mindspore/pulls/1425))
  808. - Executor and Performance Optimization
  809. - Support doing evaluation while in training process, so that the accuracy of training can be easily obtained.
  810. - Enable second-order optimization for resnet50, which can achieve 75.9% accuracy in 45 epochs (Resnet50 @ImageNet).
  811. - Optimize pynative implementation and improve it's execution performance.
  812. - Optimize summary record implementation and improve its performance.
  813. - Data processing, augmentation, and save format
  814. - Support simple text processing, such as tokenizer/buildvocab/lookup.
  815. - Support padding batch.
  816. - Support split or concat dataset.
  817. - Support MindDataset reading from file list.
  818. ### Other Hardware Support
  819. - GPU platform
  820. - New models supported: MobileNetV2, MobileNetV3.
  821. - Support mixed precision training.
  822. - Support device memory swapping.
  823. ## Bugfixes
  824. - Python API
  825. - An exception to the broadcast input data type check([!712](https://gitee.com/mindspore/mindspore/pulls/712))
  826. - Fix issues assignsub return value 0([!1036](https://gitee.com/mindspore/mindspore/pulls/1036))
  827. - Fix issue Conv2dBackpropInput bprop should return 3 instead of 2 items([!1001](https://gitee.com/mindspore/mindspore/pulls/1001))
  828. - Fix sens shape error of TrainOneStepWithLossScaleCell([!1050](https://gitee.com/mindspore/mindspore/pulls/1050))
  829. - Fix BatchNormGrad operator([!1344](https://gitee.com/mindspore/mindspore/pulls/1344))
  830. - Executor
  831. - Fix dropout,topK and addn errors in PyNative mode ([!1285](https://gitee.com/mindspore/mindspore/pulls/1285), [!1138](https://gitee.com/mindspore/mindspore/pulls/1138), [!1033](https://gitee.com/mindspore/mindspore/pulls/1033)).
  832. - Fix memory leaks after execution in PyNatvie mode ([!1201](https://gitee.com/mindspore/mindspore/pulls/1201)).
  833. - Fix HCCL failure in some special scenes ([!1204](https://gitee.com/mindspore/mindspore/pulls/1204), [!1252](https://gitee.com/mindspore/mindspore/pulls/1252)).
  834. - Fix SSD network when Select failed, can't find kernel info([!1449](https://gitee.com/mindspore/mindspore/pulls/1449)).
  835. - Fix Topk operator selection strategy bug between aicore and aicpu([!1367](https://gitee.com/mindspore/mindspore/pulls/1367)).
  836. - Fix input memory size of 'assign' op unequal in control sink mode when assigning a data from one child graph to another child graph([!802](https://gitee.com/mindspore/mindspore/pulls/802)).
  837. - Fix allreduce ir inconsistency([!989](https://gitee.com/mindspore/mindspore/pulls/989)).
  838. - GPU platform
  839. - Fix summary for gradient collection ([!1364](https://gitee.com/mindspore/mindspore/pulls/1364))
  840. - Fix the slice operator ([!1489](https://gitee.com/mindspore/mindspore/pulls/1489))
  841. - Data processing
  842. - Fix memory problems of GeneratorDataset of sub-process ([!907](https://gitee.com/mindspore/mindspore/pulls/907))
  843. - Fix getting data timeout when training the cifar10 dataset under the lenet([!1391](https://gitee.com/mindspore/mindspore/pulls/1391))
  844. ## Contributors
  845. Thanks goes to these wonderful people:
  846. Alexey Shevlyakov, Amir Lashkari, anthony, baihuawei, biffex, buxue, caifubi, candanzg, caojian05, Cathy Wong, changzherui, chenfei, chengxianbin, chenhaozhe, chenzomi, chujinjin, cristoval, dengwentao, eric, etone-chan, fary86, gaojing, gengdongjie, gongchen, guohongzilong, guozhijian, heleiwang, hesham, He Wei, Hoai Linh Tran, hongxing, huangdongrun, huanghui, Jamie Nisbet, Jesse Lee, jiangjinsheng, jiangzhiwen, jinyaohui, jjfeing, jonwe, jonyguo, Junhan Hu, Kang, kingfo, kswang, laiyongqiang, leopz, lichenever, lihongkang, limingqi107, liubuyu, liuliyan2, liuwenhao4, liuxiao, liuxiao, liyong, lizhenyu, lvliang, Margaret_wangrui, meixiaowei, ms_yan, Nat Sutyanyong, ougongchang, panfengfeng, panyifeng, Peilin Wang, peixu_ren, qianlong, rick_sanchez, seatea, sheng, shijianning, simson, sunsuodong, Tinazhang, VectorSL, wandongdong, wangcong, wanghua, wangnan39, Wei Luning, wenchunjiang, wilfChen, WilliamLian, wsc, wukesong, wuxuejian, Xiaoda Zhang, xiefangqi, xulei2020, Yang, yangjie159, yangruoqi713, yangyongjie, yangzhenzhang, Yanjun Peng, yanzhenxiang2020, yao_yf, Yi Huaijie, yoonlee666, yujianfeng, YuJianfeng, yvetteliu, zhangdengcheng, Zhang Qinghua, zhangz0911gm, zhaojichen, zhaoting, zhaozhenlong, zhoufeng, zhouneng, zhousiyi, zhouyuanshen, Zirui Wu, Ziyan, zjun, ZPaC, lihongzhang
  847. Contributions of any kind are welcome!
  848. # MindSpore 0.2.0-alpha Release Notes
  849. ## Major Features and Improvements
  850. ### Ascend 910 Training and Inference Framework
  851. - New models
  852. - MobileNetV2: Inverted Residuals and Linear Bottlenecks.
  853. - ResNet101: Deep Residual Learning for Image Recognition.
  854. - Frontend and User Interface
  855. - Support for all python comparison operators.
  856. - Support for math operators **,//,%. Support for other python operators like and/or/not/is/is not/ in/ not in.
  857. - Support for the gradients of function with variable arguments.
  858. - Support for tensor indexing assignment for certain indexing type.
  859. - Support for dynamic learning rate.
  860. - User interfaces change log
  861. - DepthwiseConv2dNative, DepthwiseConv2dNativeBackpropFilter, DepthwiseConv2dNativeBackpropInput([!424](https://gitee.com/mindspore/mindspore/pulls/424))
  862. - ReLU6, ReLU6Grad([!224](https://gitee.com/mindspore/mindspore/pulls/224))
  863. - GeneratorDataset([!183](https://gitee.com/mindspore/mindspore/pulls/183))
  864. - VOCDataset([!477](https://gitee.com/mindspore/mindspore/pulls/477))
  865. - MindDataset, PKSampler([!514](https://gitee.com/mindspore/mindspore/pulls/514))
  866. - map([!506](https://gitee.com/mindspore/mindspore/pulls/506))
  867. - Conv([!226](https://gitee.com/mindspore/mindspore/pulls/226))
  868. - Adam([!253](https://gitee.com/mindspore/mindspore/pulls/253))
  869. - _set_fusion_strategy_by_idx,_set_fusion_strategy_by_size([!189](https://gitee.com/mindspore/mindspore/pulls/189))
  870. - CheckpointConfig([!122](https://gitee.com/mindspore/mindspore/pulls/122))
  871. - Constant([!54](https://gitee.com/mindspore/mindspore/pulls/54))
  872. - Executor and Performance Optimization
  873. - Support parallel execution of data prefetching and forward/backward computing.
  874. - Support parallel execution of gradient aggregation and forward/backward computing in distributed training scenarios.
  875. - Support operator fusion optimization.
  876. - Optimize compilation process and improve the performance.
  877. - Data processing, augmentation, and save format
  878. - Support multi-process of GeneratorDataset/PyFunc for high performance
  879. - Support variable batchsize
  880. - Support new Dataset operators, such as filter,skip,take,TextLineDataset
  881. ### Other Hardware Support
  882. - GPU platform
  883. - Use dynamic memory pool by default on GPU.
  884. - Support parallel execution of computation and communication.
  885. - Support continuous address allocation by memory pool.
  886. - CPU platform
  887. - Support for windows 10 OS.
  888. ## Bugfixes
  889. - Models
  890. - Fix mixed precision bug for VGG16 model ([!629](https://gitee.com/mindspore/mindspore/pulls/629)).
  891. - Python API
  892. - Fix ControlDepend operator bugs on CPU and GPU ([!396](https://gitee.com/mindspore/mindspore/pulls/396)).
  893. - Fix ArgMinWithValue operator bugs ([!338](https://gitee.com/mindspore/mindspore/pulls/338)).
  894. - Fix Dense operator bugs on PyNative mode ([!276](https://gitee.com/mindspore/mindspore/pulls/276)).
  895. - Fix MatMul operator bugs on PyNative mode ([!288](https://gitee.com/mindspore/mindspore/pulls/288)).
  896. - Executor
  897. - Fix operator selection bugs and make it general ([!300](https://gitee.com/mindspore/mindspore/pulls/300)).
  898. - Fix memory reuse bug for GetNext op ([!291](https://gitee.com/mindspore/mindspore/pulls/291)).
  899. - GPU platform
  900. - Fix memory allocation in multi-graph scenarios ([!444](https://gitee.com/mindspore/mindspore/pulls/444)).
  901. - Fix bias_add_grad under fp16 precision ([!598](https://gitee.com/mindspore/mindspore/pulls/598)).
  902. - Fix support for fp16 kernels on nvidia 1080Ti([!571](https://gitee.com/mindspore/mindspore/pulls/571)).
  903. - Fix parsing of tuple type parameters ([!316](https://gitee.com/mindspore/mindspore/pulls/316)).
  904. - Data processing
  905. - Fix TypeErrors about can't pickle mindspore._c_dataengine.DEPipeline objects([!434](https://gitee.com/mindspore/mindspore/pulls/434)).
  906. - Add TFRecord file verification([!406](https://gitee.com/mindspore/mindspore/pulls/406)).
  907. ## Contributors
  908. Thanks goes to these wonderful people:
  909. Alexey_Shevlyakov, Cathy, Chong, Hoai, Jonathan, Junhan, JunhanHu, Peilin, SanjayChan, StrawNoBerry, VectorSL, Wei, WeibiaoYu, Xiaoda, Yanjun, YuJianfeng, ZPaC, Zhang, ZhangQinghua, ZiruiWu, amongo, anthonyaje, anzhengqi, biffex, caifubi, candanzg, caojian05, casgj, cathwong, ch-l, chang, changzherui, chenfei, chengang, chenhaozhe, chenjianping, chentingting, chenzomi, chujinjin, dengwentao, dinghao, fanglei, fary86, flywind, gaojing, geekun, gengdongjie, ghzl, gong, gongchen, gukecai, guohongzilong, guozhijian, gziyan, h.farahat, hesham, huangdongrun, huanghui, jiangzhiwen, jinyaohui, jjfeing, jojobugfree, jonathan_yan, jonyguo, jzw, kingfo, kisnwang, laiyongqiang, leonwanghui, lianliguang, lichen, lichenever, limingqi107, liubuyu, liuxiao, liyong, liyong126, lizhenyu, lupengcheng, lvliang, maoweiyong, ms_yan, mxm, ougongchang, panfengfeng, panyifeng, pengyanjun, penn, qianlong, seatea, simson, suteng, thlinh, vlne-v1, wangchengke, wanghua, wangnan39, wangqiuliang, wenchunjiang, wenkai, wukesong, xiefangqi, xulei, yanghaitao, yanghaoran, yangjie159, yangzhenzhang, yankai10, yanzhenxiang2020, yao_yf, yoonlee666, zhangbuxue, zhangz0911gm, zhangzheng, zhaojichen, zhaoting, zhaozhenlong, zhongligeng, zhoufeng, zhousiyi, zjun, zyli2020, yuhuijun, limingqi107, lizhenyu, chenweifeng.
  910. Contributions of any kind are welcome!
  911. # MindSpore 0.1.0-alpha Release Notes
  912. ## Main Features
  913. ### Ascend 910 Training and Inference Framework
  914. - Recommended OS: Ubuntu 16.04 (or later) or EulerOS 2.5 or EulerOS 2.8
  915. - Python version: 3.7.5
  916. - Preset models
  917. - ResNet-50: residual structure-based convolutional neural network (CNN) for image classification, which is widely used.
  918. - AlexNet: classic CNN for image classification, achieving historical results in ImageNet LSVRC-2012.
  919. - LeNet: classic CNN for image classification, which was proposed by Yann LeCun.
  920. - VGG16: classic CNN for image classification, which was proposed by Oxford Visual Geometry Group.
  921. - YoloV3: real-time object detection network.
  922. - NEZHA: BERT-based Chinese pre-training network produced by Huawei Noah's Ark Laboratory.
  923. - Execution modes
  924. - Graph mode: provides graph optimization methods such as memory overcommitment, IR fusion, and buffer fusion to achieve optimal execution performance.
  925. - PyNative mode: single-step execution mode, facilitating process debugging.
  926. - Debugging capability and methods
  927. - Save CheckPoints and Summary data during training.
  928. - Support asynchronous printing.
  929. - Dump the computing data.
  930. - Support profiling analysis of the execution process performance.
  931. - Distributed execution
  932. - Support AllReduce, AllGather, and BroadCast collective communication.
  933. - AllReduce data parallel: Each device obtains different training data, which accelerates the overall training process.
  934. - Collective communication-based layerwise parallel: Models are divided and allocated to different devices to solve the problem of insufficient memory for large model processing and improve the training speed.
  935. - Automatic parallel mode: The better data and model parallel mode can be predicted based on the cost model. It is recommended that this mode be used on ResNet series networks.
  936. - Automatic differentiation
  937. - Implement automatic differentiation based on Source to Source.
  938. - Support distributed scenarios and automatic insertion of reverse communication operators.
  939. - Data processing, augmentation, and save format
  940. - Load common datasets such as ImageNet, MNIST, CIFAR-10, and CIFAR-100.
  941. - Support common data loading pipeline operations, such as shuffle, repeat, batch, map, and sampler.
  942. - Provide basic operator libraries to cover common CV scenarios.
  943. - Support users to customize Python data augmentation operators through the Pyfunc mechanism.
  944. - Support the access of user-defined datasets through the GeneratorDataset mechanism.
  945. - Provide the MindSpore data format, data aggregation and storage, random access example, data partition, efficient parallel read, user-defined index, and dataset search.
  946. - Convert user datasets to the MindSpore data format.
  947. - After data processing and augmentation, provide training applications in feed and graph modes.
  948. - FP32/16 mixed precision computation, supporting automatic and manual configuration
  949. - Provide common operators such as nn, math, and array, which can be customized.
  950. ### Inference Deployment
  951. - Deploy models in MindSpore format on the Ascend 310 platform for inference.
  952. - Save models in ONNX format.
  953. - Support saving models in LITE format and running models based on the lightweight inference framework.
  954. - Recommended OS: Android 4.3 or later
  955. - Supported network type: LeNet
  956. - Provide the generalization operators generated by TVM and operators generated after specific networks are tuned.
  957. ### Other Hardware Support
  958. - GPU platform training
  959. - Recommended OS: Ubuntu 16.04
  960. - CUDA version: 9.2 or 10.1
  961. - CuDNN version: 7.6 or later
  962. - Python version: 3.7.5
  963. - NCCL version: 2.4.8-1
  964. - OpenMPI version: 3.1.5
  965. - Supported models: AlexNet, LeNet, and LSTM
  966. - Supported datasets: MNIST and CIFAR-10
  967. - Support data parallel.
  968. - CPU platform training
  969. - Recommended OS: Ubuntu 16.04
  970. - Python version: 3.7.5
  971. - Supported model: LeNet
  972. - Supported dataset: MNIST
  973. - Provide only the stand-alone operation version.
  974. ## Peripherals and Tools
  975. - [MindSpore Official Website](https://www.mindspore.cn/)
  976. - [MindInsight Visualization Debugging and Optimization](https://gitee.com/mindspore/mindinsight)
  977. - [MindArmour Model Security Hardening Package](https://gitee.com/mindspore/mindarmour)
  978. - [GraphEngine Computational Graph Engine](https://gitee.com/mindspore/graphengine)