Vibration Suppression: Using External Particle Dampers to Mitigate PCB Vibrations

Vibration Suppression: Using External Particle Dampers to Mitigate PCB Vibrations

Abstract Particle damping is an effective passive vibration control method and has been a research hotspot in recent years. This paper introduces the new application of particle damping capsules on printed circuit boards (PCBs) and the development of radial basis function neural networks to accurately predict acceleration responses. The study compares this neural network’s predictions … Read more

Why Do Autonomous Vehicles Need NPU? Is GPU Not Enough?

Why Do Autonomous Vehicles Need NPU? Is GPU Not Enough?

Image CPU,GPU,NPU Comparison, from the internet Can Pure GPU Achieve Autonomous Driving? Technically, a pure GPU can achieve a certain level of autonomous driving, but it has significant shortcomings and is difficult to meet the demands of high-level autonomous driving. GPU can handle the parallel computing tasks required for autonomous driving (such as sensor data … Read more

Six Papers from NPU-ASLP Laboratory Accepted at ASRU2025

Six Papers from NPU-ASLP Laboratory Accepted at ASRU2025

As a flagship international conference in the field of speech-related research, ASRU2025 (IEEE Workshop on Automatic Speech Recognition and Understanding) will be held from December 6-10 in Honolulu, Hawaii. The theme of IEEE ASRU2025 is “Towards the New Era of Speech Understanding,” focusing on gathering academia and industry to discuss new developments in the speech … Read more

Practical Guide to LoRA Fine-Tuning: Step-by-Step Instructions for Building Domain-Specific AI (Includes Code)

Practical Guide to LoRA Fine-Tuning: Step-by-Step Instructions for Building Domain-Specific AI (Includes Code)

“ Limited GPU memory, tight budget, and want a large model to learn new skills? LoRA allows you to “make a little change for a big difference” by training only a small number of parameters, enabling rapid fine-tuning of models for specialized domains. This article guides you through the LoRA fine-tuning process from principles to … Read more

Accelerating YOLOv4 Neural Network Inference on NVIDIA Jetson Nano Using TensorRT

Accelerating YOLOv4 Neural Network Inference on NVIDIA Jetson Nano Using TensorRT

This article is reprinted from: Note: The code may not be fully visible on mobile, you can swipe left and right to view the code! 1How to Use YOLOv4 First, you need to set up the darknet environment by downloading the darknet GitHub repository: $ git clone https://github.com/AlexeyAB/darknet.git $ cd darknet Next, you need to … Read more

Neural Network Control and MATLAB Simulation Case Analysis

Neural Network Control and MATLAB Simulation Case Analysis

Disclaimer 1. Copyright Statement: Some content in this article is sourced from the internet, and the copyright belongs to the original author. However, due to numerous reprints, it may not be possible to confirm the true original author. If there is any infringement, please contact us through this platform or provide written evidence, and we … Read more

New AI Architecture Achieves Inference Speed 100 Times Faster Than Large Language Models with Just 1000 Training Samples

New AI Architecture Achieves Inference Speed 100 Times Faster Than Large Language Models with Just 1000 Training Samples

Singapore-based AI startup Sapient Intelligence has developed a Hierarchical Reasoning Model (HRM) that matches or even surpasses the performance of large language models on complex reasoning tasks while significantly reducing data and memory requirements. This architecture mimics the dual-system operation of the human brain, working in tandem through a high-level abstract planning module and a … Read more

Pure Vision + Neural Networks vs. Multi-Sensor Fusion

Pure Vision + Neural Networks vs. Multi-Sensor Fusion

On July 14, Li Yanhong stated at a Baidu executive meeting that Robotaxi (autonomous driving taxis) must switch to a pure vision approach to have a chance, announcing that Baidu’s autonomous driving service platform, Luobo Kuaipao, will completely abandon the multi-sensor fusion route and fully transition to a pure vision technology solution. In the technical … Read more

The Complete Set of Neural Network DSP Cores Finally Comes Together

The Complete Set of Neural Network DSP Cores Finally Comes Together

Click on the above “StarryHeavensAbove” to stay updated ↑ First, let’s look at the news: “SANTA CLARA, Calif., May 3, 2017 – VeriSilicon Holdings Co., Ltd. (VeriSilicon), a Silicon Platform as a Service (SiPaaS®) company, today announces VIP8000, a highly scalable and programmable processor for computer vision and artificial intelligence. It delivers over 3 Tera … Read more

Matlab Quick Exercise 4.3.1: Surface Plot Based on Data

Matlab Quick Exercise 4.3.1: Surface Plot Based on Data

Last issue’s answer: 4.2.3 Parametric Function Plotting Matlab Quick Exercise 4.2.3 Parametric Function Plotting [Reference Video31.17] The program is as follows: xt=@(t)t; yt=@(t)sin(t); zt=@(t)exp(t); fplot3(xt,yt,zt) Running result: ——————— Non-glamorous dividing line —————————4.3 Three-Dimensional Surface Plot 4.3.1Surface Plot Based on Data Plotting the image:f(x,y)= x^2+y^2,-5≤x≤5,1≤y≤11 (The answer will be announced in the next issue)Recommended popular content … Read more