WO2022178908A1 - 神经网络的剪枝方法及其剪枝装置、存储介质 - Google Patents
神经网络的剪枝方法及其剪枝装置、存储介质 Download PDFInfo
- Publication number
- WO2022178908A1 WO2022178908A1 PCT/CN2021/078455 CN2021078455W WO2022178908A1 WO 2022178908 A1 WO2022178908 A1 WO 2022178908A1 CN 2021078455 W CN2021078455 W CN 2021078455W WO 2022178908 A1 WO2022178908 A1 WO 2022178908A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- value
- neural network
- layer
- residual layer
- importance
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Ceased
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
- G06N3/082—Learning methods modifying the architecture, e.g. adding, deleting or silencing nodes or connections
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/045—Combinations of networks
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/0464—Convolutional networks [CNN, ConvNet]
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/0495—Quantised networks; Sparse networks; Compressed networks
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
- G06N3/09—Supervised learning
Definitions
- the invention belongs to the technical field of machine learning, and in particular, relates to a pruning method of a neural network, a pruning device, and a computer-readable storage medium.
- Deep learning is currently widely used in various industries, but in many real-world applications, the deployment of deep learning networks is a big challenge. On the one hand, deep learning network parameters are huge, and the demand for memory is very high. On the other hand, deep learning requires a lot of computation. Especially the commonly used convolutional neural network, which has a large number of redundant parameters, often requires network pruning.
- the basic idea of network pruning is to use the different importance of different parameters to prune those redundant parameters to make the network more streamlined and reduce storage occupation and calculation amount.
- the idea of pruning for parameter importance is to establish an evaluation standard, then sort the parameters of the network according to the evaluation standard, set a threshold, and then prune those network parameters that are smaller than the threshold.
- the network is pruned by the scaling factor of the BN layer, and the scaling factor with a small pruning value corresponds to the convolution kernel.
- the selection of the scaling factor depends on a global threshold we set for all layers of the entire network, which is defined as a ratio of all scaling factor values. For example, we will cut 70% of the channels in the entire network, then we first set the scaling factor Sort by absolute value, and then take 70% of the scaling factors sorted from small to large as the threshold.
- the existing technology seems to be universal, but has an obvious defect, that is, it does not take into account the specificity of the network structure, the difference of different layers of the network and the interpretability of the method.
- different network structures are different, and their sensitivity to parameters is also different, so all networks cannot be treated equally.
- the network is a hierarchical learning process from front to back, and the sensitivity of parameters in this process is also changing, and the front and rear parameters of the network cannot be treated equally.
- interpretability of the method which current methods cannot give convincing explanations.
- the technical problem solved by the present invention is: how to provide a general and interpretable neural network pruning method.
- a method for pruning a neural network includes:
- the target neural network includes several residual layers
- test sample Use the test sample set to evaluate the importance of each residual layer layer by layer, and obtain the importance degree value of each residual layer;
- the importance of each residual layer is evaluated layer by layer using the test sample set, and the method for obtaining the importance level value of each residual layer includes:
- test sample set to test the performance index value of the target neural network before and after the convolution kernel of each residual layer is replaced to zero, and calculate the change value of the performance index of the target neural network;
- the importance value of the residual layer is the first degree value; when the change value of the performance index is greater than or equal to the preset change value, the importance of the residual layer is The degree value is a second degree value, wherein the first degree value is greater than the threshold value and the second degree value is less than the threshold value.
- the performance index value includes any one or more of precision rate, precision rate, recall rate, Dice value, and Iou value.
- the application also discloses a neural network pruning device, the pruning device includes:
- the evaluation unit is used to evaluate the importance of each residual layer by using the test sample set, and obtain the importance degree value of each residual layer;
- the pruning unit is used to remove the residual layer whose importance value is less than the threshold to obtain the pruned target neural network
- the training unit is used to train the pruned target neural network by using the training sample set to optimize the parameters of the pruned target neural network.
- the evaluation unit is specifically used for:
- test sample set to test the performance index value of the target neural network before and after the convolution kernel of the residual layer is replaced by zero, and calculate the change value of the performance index of the target neural network;
- the evaluation unit when the performance index change value is less than the preset change value, the evaluation unit is further configured to set the importance degree value of the residual layer to the first degree value; when the performance index change value is greater than or equal to the preset change value When the value is , the evaluation unit is further configured to set the importance degree value of the residual layer to a second degree value, wherein the first degree value is greater than the threshold value, and the second degree value is smaller than the threshold value.
- the performance index value includes any one or more of precision rate, precision rate, recall rate, Dice value, and Iou value.
- the present application also discloses a computer-readable storage medium, where the computer-readable storage medium stores a neural network pruning program, and when the neural network pruning program is executed by a processor, implements the above-mentioned neural network pruning method.
- the present application also discloses a computer device, the computer device comprising a computer-readable storage medium, a processor, and a neural network pruning program stored in the computer-readable storage medium, the neural network pruning program When executed by the processor, the above-mentioned pruning method of the neural network is realized.
- the invention discloses a neural network pruning method, which has the following technical effects compared with the traditional pruning method:
- FIG. 1 is a flowchart of a method for pruning a neural network according to Embodiment 1 of the present invention
- FIG. 2 is a schematic diagram of detailed steps of a method for pruning a neural network according to Embodiment 1 of the present invention
- FIG. 3 is a schematic diagram of a partial structure of a target neural network according to Embodiment 1 of the present invention.
- FIG. 4 is a schematic diagram of a neural network pruning device according to Embodiment 2 of the present invention.
- FIG. 5 is a schematic diagram of a computer device according to Embodiment 4 of the present invention.
- the existing neural network pruning algorithm does not consider the specificity of the network structure and the differences of different network layers, resulting in the algorithm not having generality and interpretability
- this scheme first uses the test sample set to evaluate each residual layer of the target neural network after training, and obtains the importance level value of each residual layer, and then sets the importance level value less than The residual layer of the threshold is removed, and other parameters are kept unchanged to obtain the pruned target neural network, which can test the reusability of the parameters of each layer of the network layer by layer. The importance of each parameter improves the generality and interpretability of the pruning method.
- the neural network pruning method of the first embodiment includes the following steps:
- Step S10 Obtain a trained target neural network, where the target neural network includes several residual layers.
- Step S20 Use the test sample set to evaluate the importance of each residual layer layer by layer, and obtain the importance degree value of each residual layer.
- Step S30 Remove the residual layer whose importance value is less than the threshold to obtain the pruned target neural network.
- Step S40 Use the training sample set to train the pruned target neural network to optimize the parameters of the pruned target neural network.
- the target neural network is a ResNet network as an example.
- the network structure of ResNet includes a short connection structure and several residual layers.
- the short connection structure is mainly responsible for information storage, and the residual layer is mainly responsible for fine-tuning the learned information. Because all the learned information is stored in the short connection, the residual layer responsible for fine-tuning the information is relatively unimportant relative to the information storage structure, so a part of the residual layer can be deleted.
- the short-connection feature decomposition layer is responsible for decomposing and combining the features learned above, and is the most important part of a layer block (continuous layers with the same number of features are called a layer block).
- the short-connection feature decomposition layer is responsible for decomposing and combining the information learned from the previous layer block, and more importantly, storing the learned information.
- Step S10 uses the training set to train the target neural network to obtain the trained target neural network.
- step S20 the importance of each residual layer is evaluated layer by layer using the test sample set, and obtaining the importance level value of each residual layer includes the following steps:
- Step S21 Replace the convolution kernel of the residual layer with zero layer by layer
- Step S22 use the test sample set to test the performance index value of the target neural network after the convolution kernel of each residual layer is replaced by zero, and calculate the change value of the performance index of the target neural network;
- Step S23 Determine the importance level value of the residual layer according to the change value of the performance index.
- step S20 mainly applies the zero-replacement convolution kernel operation.
- ResNet residual units have various forms and can be expressed as follows:
- x l+1 ⁇ (x l +BN( ⁇ (BN(x l *w' l ))*w′′ l ))
- x l , x l+1 represent the input and output feature maps of the lth and l+1st residual units, respectively;
- x' l+1 , x" l+1 , x"' l+1 represent the output feature map of the l+1th residual unit performing zero-replacement in different ways;
- w' l , w" l respectively represent the first convolution kernel and the second convolution kernel of the lth residual unit
- BN Batch normalization
- ⁇ activation function
- ⁇ ', ⁇ ", and ⁇ "' represent the biases of different BN layers of the lth residual unit, respectively.
- the importance degree of the residual layer is the first degree value; when the change value of the performance index is greater than or equal to the preset change value, the importance degree of the residual layer is The value is a second degree value, wherein the first degree value is greater than the threshold value and the second degree value is less than the threshold value.
- the performance index value is defined according to the task. For example, for the classification task, it can be the precision rate, accuracy rate, and recall rate. For the segmentation task, it can be the Dice value and the Iou value (intersection over union, intersection ratio). Exemplarily, the performance index value is selected as the accuracy rate. When the accuracy rate change value is less than 5%, the importance of the residual layer is low and can be deleted. When the accuracy rate change value is greater than or equal to 5%, Then the residual layer has a high degree of importance and cannot be deleted. The above step S20 is repeated until the importance level value of each residual layer is determined.
- step S30 the residual layer whose importance degree value is the second degree value is removed to obtain the pruned target neural network.
- the target neural network needs to be further trained using the training sample set to optimize the parameters of the target neural network.
- the neural network pruning method provided in the first embodiment uses the test sample set to evaluate each residual layer of the target neural network after training, and obtains the importance value of each residual layer.
- the residual layer whose importance value is less than the threshold is removed, and other parameters are kept unchanged to obtain the pruned target neural network, so that the reusability of the parameters of each layer of the network can be tested layer by layer, and the performance of the results on the test set is intuitive.
- the importance of each parameter of each layer is given, which improves the generality and interpretability of the pruning method.
- the second embodiment provides a neural network pruning device, where the pruning device includes an acquisition unit 100 , an evaluation unit 200 , a pruning unit 300 and a training unit 400 .
- the obtaining unit 100 is used to obtain the trained target neural network, and the target neural network includes several residual layers;
- the evaluating unit 200 is used to evaluate the importance of each residual layer by using the test sample set, and obtain each layer The importance level value of the residual layer;
- the pruning unit 300 is used to remove the residual layer whose importance level value is less than the threshold to obtain the pruned target neural network;
- the training unit 400 is used to train the pruned neural network using the training sample set target neural network to optimize the parameters of the pruned target neural network.
- the evaluation unit 200 is specifically configured to: replace the convolution kernel of the residual layer with zero; use the test sample set to test the performance index value of the target neural network before and after the convolution kernel of the residual layer is replaced with zero. , and calculate the change value of the performance index of the target neural network; determine the importance degree value of the residual layer according to the change value of the performance index.
- the evaluating unit 200 is further configured to set the importance degree value of the residual layer to the first degree value; when the change value of the performance index is greater than or equal to the preset change value, The evaluation unit 200 is further configured to set the importance degree value of the residual layer to a second degree value, wherein the first degree value is greater than the threshold value, and the second degree value is smaller than the threshold value.
- Embodiment 3 of the present application further discloses a computer-readable storage medium, where the computer-readable storage medium stores a pruning program of a neural network, and when the pruning program of the neural network is executed by a processor, realizes the above-mentioned neural network The pruning method of the network.
- the terminal includes a processor 12 , an internal bus 13 , a network interface 14 , and a computer-readable storage medium 11 .
- the processor 12 reads the corresponding computer program from the computer-readable storage medium and then executes it, forming a request processing device on a logical level.
- the computer-readable storage medium 11 stores a neural network pruning program, and when the neural network pruning program is executed by a processor, implements the above-mentioned neural network pruning method.
- Computer-readable storage media includes both persistent and non-permanent, removable and non-removable media, and storage of information can be implemented by any method or technology.
- Information may be computer readable instructions, data structures, modules of programs, or other data.
- Examples of computer-readable storage media include, but are not limited to, phase-change memory (PRAM), static random access memory (SRAM), dynamic random access memory (DRAM), other types of random access memory (RAM), read-only memory Memory (ROM), Electrically Erasable Programmable Read Only Memory (EEPROM), Flash Memory or other memory technology, Compact Disc Read Only Memory (CD-ROM), Digital Versatile Disc (DVD) or other optical storage , magnetic cassettes, disk storage, quantum memory, graphene-based storage media or other magnetic storage devices or any other non-transmission media that can be used to store information that can be accessed by computing devices.
- PRAM phase-change memory
- SRAM static random access memory
- DRAM dynamic random access memory
- RAM random access memory
- ROM read-only memory Memory
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Health & Medical Sciences (AREA)
- Computing Systems (AREA)
- Biomedical Technology (AREA)
- Biophysics (AREA)
- Computational Linguistics (AREA)
- Data Mining & Analysis (AREA)
- Evolutionary Computation (AREA)
- Life Sciences & Earth Sciences (AREA)
- Molecular Biology (AREA)
- Artificial Intelligence (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Mathematical Physics (AREA)
- Software Systems (AREA)
- Health & Medical Sciences (AREA)
- Feedback Control In General (AREA)
- Management, Administration, Business Operations System, And Electronic Commerce (AREA)
Abstract
Description
Claims (12)
- 一种神经网络的剪枝方法,其中,所述剪枝方法包括:获取训练完成的目标神经网络,所述目标神经网络包括若干残差层;利用测试样本集逐层评估每一层残差层的重要性,获得每一层残差层的重要性程度值;将重要性程度值小于阈值的残差层去除,获得剪枝后的目标神经网络;利用训练样本集训练剪枝后的目标神经网络,以优化剪枝后的目标神经网络的参数。
- 根据权利要求1所述的神经网络的剪枝方法,其中,利用测试样本集逐层评估每一层残差层的重要性,获得每一层残差层的重要性程度值的方法包括:逐层将残差层的卷积核替换为零;利用测试样本集测试各个残差层的卷积核替换为零之前和之后的目标神经网络的性能指标值,并计算得到目标神经网络的性能指标变化值;根据性能指标变化值确定残差层的重要性程度值。
- 根据权利要求2所述的神经网络的剪枝方法,其中,当性能指标变化值小于预设变化值时,残差层的重要性程度值为第一程度值;当性能指标变化值大于或等于预设变化值时,残差层的重要性程度值为第二程度值,其中所述第一程度值大于所述阈值,所述第二程度值小于所述阈值。
- 根据权利要求2所述的神经网络的剪枝方法,其中,所述性能指标值包括精确率、准确率、召回率、Dice值、Iou值中的任意一种或多种。
- 一种神经网络的剪枝装置,其中,所述剪枝装置包括:获取单元,用于获取训练完成的目标神经网络,所述目标神经网络包括若干残差层;评估单元,用于利用测试样本集评估每一层残差层的重要性,获得每一层残差层的重要性程度值;剪枝单元,用于将重要性程度值小于阈值的残差层去除,获得剪枝后的目 标神经网络;训练单元,用于利用训练样本集训练剪枝后的目标神经网络,以优化剪枝后的目标神经网络的参数。
- 根据权利要求5所述的神经网络的剪枝装置,其中,所述评估单元具体用于:逐层将残差层的卷积核替换为零;利用测试样本集测试各个残差层的卷积核替换为零之前和之后的目标神经网络的性能指标值,并计算得到目标神经网络的性能指标变化值;根据性能指标变化值确定残差层的重要性程度值。
- 根据权利要求6所述的神经网络的剪枝装置,其中,当性能指标变化值小于预设变化值时,所述评估单元还用于将残差层的重要性程度值设置为第一程度值;当性能指标变化值大于或等于预设变化值时,所述评估单元还用于将残差层的重要性程度值为第二程度值,其中所述第一程度值大于所述阈值,所述第二程度值小于所述阈值。
- 根据权利要求6所述的神经网络的剪枝装置,其中,所述性能指标值包括精确率、准确率、召回率、Dice、Iou值中的任意一种或多种。
- 一种计算机可读存储介质,其中,所述计算机可读存储介质存储有神经网络的剪枝程序,所述神经网络的剪枝程序被处理器执行时实现权利要求1所述的神经网络的剪枝方法。
- 根据权利要求6所述的计算机可读存储介质,其中,利用测试样本集逐层评估每一层残差层的重要性,获得每一层残差层的重要性程度值的方法包括:逐层将残差层的卷积核替换为零;利用测试样本集测试各个残差层的卷积核替换为零之前和之后的目标神经网络的性能指标值,并计算得到目标神经网络的性能指标变化值;根据性能指标变化值确定残差层的重要性程度值。
- 根据权利要求10所述的计算机可读存储介质,其中,当性能指标变化值小于预设变化值时,残差层的重要性程度值为第一程度值;当性能指标变 化值大于或等于预设变化值时,残差层的重要性程度值为第二程度值,其中所述第一程度值大于所述阈值,所述第二程度值小于所述阈值。
- 根据权利要求2所述的计算机可读存储介质,其中,所述性能指标值包括精确率、准确率、召回率、Dice值、Iou值中的任意一种或多种。
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN202110216506.6A CN114970851A (zh) | 2021-02-26 | 2021-02-26 | 神经网络的剪枝方法及其剪枝装置、存储介质、设备 |
| CN202110216506.6 | 2021-02-26 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2022178908A1 true WO2022178908A1 (zh) | 2022-09-01 |
Family
ID=82972722
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/CN2021/078455 Ceased WO2022178908A1 (zh) | 2021-02-26 | 2021-03-01 | 神经网络的剪枝方法及其剪枝装置、存储介质 |
Country Status (2)
| Country | Link |
|---|---|
| CN (1) | CN114970851A (zh) |
| WO (1) | WO2022178908A1 (zh) |
Cited By (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN116227575A (zh) * | 2023-02-27 | 2023-06-06 | 上海瑾盛通信科技有限公司 | 模型剪枝方法、装置、电子设备及存储介质 |
Citations (6)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20190244103A1 (en) * | 2018-02-07 | 2019-08-08 | Royal Bank Of Canada | Robust pruned neural networks via adversarial training |
| CN110689113A (zh) * | 2019-09-19 | 2020-01-14 | 浙江大学 | 一种基于大脑共识主动性的深度神经网络压缩方法 |
| CN111008640A (zh) * | 2019-10-17 | 2020-04-14 | 平安科技(深圳)有限公司 | 图像识别模型训练及图像识别方法、装置、终端及介质 |
| CN111291637A (zh) * | 2020-01-19 | 2020-06-16 | 中国科学院上海微系统与信息技术研究所 | 一种基于卷积神经网络的人脸检测方法、装置及设备 |
| CN112052951A (zh) * | 2020-08-31 | 2020-12-08 | 北京中科慧眼科技有限公司 | 一种剪枝神经网络方法、系统、设备及可读存储介质 |
| CN112149797A (zh) * | 2020-08-18 | 2020-12-29 | Oppo(重庆)智能科技有限公司 | 神经网络结构优化方法和装置、电子设备 |
-
2021
- 2021-02-26 CN CN202110216506.6A patent/CN114970851A/zh active Pending
- 2021-03-01 WO PCT/CN2021/078455 patent/WO2022178908A1/zh not_active Ceased
Patent Citations (6)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20190244103A1 (en) * | 2018-02-07 | 2019-08-08 | Royal Bank Of Canada | Robust pruned neural networks via adversarial training |
| CN110689113A (zh) * | 2019-09-19 | 2020-01-14 | 浙江大学 | 一种基于大脑共识主动性的深度神经网络压缩方法 |
| CN111008640A (zh) * | 2019-10-17 | 2020-04-14 | 平安科技(深圳)有限公司 | 图像识别模型训练及图像识别方法、装置、终端及介质 |
| CN111291637A (zh) * | 2020-01-19 | 2020-06-16 | 中国科学院上海微系统与信息技术研究所 | 一种基于卷积神经网络的人脸检测方法、装置及设备 |
| CN112149797A (zh) * | 2020-08-18 | 2020-12-29 | Oppo(重庆)智能科技有限公司 | 神经网络结构优化方法和装置、电子设备 |
| CN112052951A (zh) * | 2020-08-31 | 2020-12-08 | 北京中科慧眼科技有限公司 | 一种剪枝神经网络方法、系统、设备及可读存储介质 |
Cited By (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN116227575A (zh) * | 2023-02-27 | 2023-06-06 | 上海瑾盛通信科技有限公司 | 模型剪枝方法、装置、电子设备及存储介质 |
Also Published As
| Publication number | Publication date |
|---|---|
| CN114970851A (zh) | 2022-08-30 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| CN109598287B (zh) | 基于深度卷积生成对抗网络样本生成的外观瑕疵检测方法 | |
| WO2022120901A1 (zh) | 基于特征金字塔的图像检测模型的训练方法、介质和设备 | |
| US12106466B2 (en) | Photographing condition determining method for metal structure, photographing method for metal structure, phase classification method for metal structure, photographing condition determining device for metal structure, photographing device for metal structure, phase classification device for metal structure, material property estimating method for metal material, and material property estimating device for metal material | |
| CN112381791A (zh) | 一种基于3d点云的螺栓松动检测方法 | |
| CN118193955B (zh) | 一种压气机气动噪声获取方法、装置、介质及产品 | |
| WO2022166294A1 (zh) | 一种目标检测方法和装置 | |
| CN116109627B (zh) | 基于迁移学习和小样本学习缺陷检测方法、装置及介质 | |
| WO2022166293A1 (zh) | 一种目标检测方法和装置 | |
| CN109726195A (zh) | 一种数据增强方法及装置 | |
| CN118397001B (zh) | 一种基于图像处理的铌钛毛细管质量检测方法及系统 | |
| CN115293223A (zh) | 深度学习中相位解缠的细节损失优化方法及系统、存储介质 | |
| WO2022178908A1 (zh) | 神经网络的剪枝方法及其剪枝装置、存储介质 | |
| CN113362437A (zh) | 一种点云重采样方法、系统、存储介质及设备 | |
| CN111127439A (zh) | 车辆轮胎的胎纹检测方法、装置、电子设备及存储介质 | |
| CN117809060A (zh) | 一种商标侵权检测方法和系统 | |
| US12057336B2 (en) | Estimating heights of defects in a wafer by scaling a 3D model using an artificial neural network | |
| CN118097320B (zh) | 一种双分支的晶圆sem缺陷图分类和分割方法、系统 | |
| CN115479904B (zh) | 一种饲料单宁快速检测方法及系统 | |
| CN118537497A (zh) | 一种大规模点云的加权泊松盘重采样方法、设备及介质 | |
| CN117635521A (zh) | 基于改进yolox的金属表面缺陷检测方法及系统 | |
| CN116737681A (zh) | 一种实时异常日志检测方法、装置、计算机设备和存储介质 | |
| JP2024540704A (ja) | カーボンブラックの三次元分析のためのシステム、デバイス及び方法 | |
| CN120339549A (zh) | 基于网格对象的模型分割方法及设备 | |
| CN118967847B (zh) | 一种三维网格模型压缩方法、设备、存储介质及产品 | |
| CN120876660B (zh) | 基于改进gan的图像生成模型构建、应用方法及装置 |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 21927343 Country of ref document: EP Kind code of ref document: A1 |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 21927343 Country of ref document: EP Kind code of ref document: A1 |
|
| 32PN | Ep: public notification in the ep bulletin as address of the adressee cannot be established |
Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205 DATED 11/01/2024) |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 21927343 Country of ref document: EP Kind code of ref document: A1 |