


New research reveals the potential of quantum Monte Carlo to surpass neural networks in breaking through limitations, and a Nature sub-issue details the latest progress
After four months, another collaborative work between ByteDance Research and Chen Ji’s research group at the School of Physics at Peking University has been published in top international publications Nature Communications: the paper "Towards the ground state of molecules via diffusion Monte Carlo on neural networks 》Combines the neural network with the diffusion Monte Carlo method, greatly improving the computational accuracy, efficiency and system scale of the neural network method in quantum chemistry-related tasks, becoming the latest SOTA.
-
Paper link:
https://www.nature.com/articles/s41467-023-37609-3 - ##Code address:
##https://github.com/bytedance/jaqmc Introduction
The diffusion Monte Carlo method is one of the commonly used methods in the field of quantum chemistry to accurately calculate the ground state energy of molecules and materials. By combining it with the diffusion Monte Carlo method, the authors significantly improved the computational accuracy and efficiency of the neural network SOTA method in quantum chemistry. In addition, the author also proposed an extrapolation method based on empirical linear relationships, which greatly improved the calculation of molecular binding energy. Overall, this computational framework serves as a high-precision method for solving quantum many-body problems and provides a more powerful tool for in-depth understanding of the properties of chemical molecules.
Quantum Monte Carlo method based on neural network
The diffusion Monte Carlo method is one of the classic high-precision algorithms in the field of quantum chemistry. It has excellent characteristics such as high accuracy, good parallelizability, and is suitable for large-scale calculations. In addition, diffusion Monte Carlo can break through the limitations of the expression ability of neural networks and use projection algorithms to surpass the accuracy of the variational Monte Carlo method.
In this work, the author combines SOTA's neural network (FermiNet) as a trial wave function with the diffusion Monte Carlo method. The new calculation method significantly improves the accuracy and reduces the number of required calculation steps compared to FermiNet. The diffusion Monte Carlo software designed and implemented in this work is neural network friendly, GPU friendly, and parallel friendly. It can be combined with a wide range of neural network wave functions to automatically improve its accuracy and efficiency.
Calculation results
1. Atom
Use neural network to perform calculation on large molecular systems During quantum Monte Carlo calculations, due to limitations in computing power, the expression capabilities of the neural networks that can be used are also subject to certain limitations. To simulate this scenario, the authors used only two layers of neural networks to study the second and third rows of atoms. The calculation results show that as the system becomes larger, the accuracy of the variational Monte Carlo method becomes worse and worse, while the accuracy improvement brought by the diffusion Monte Carlo method becomes more and more obvious.
2. Molecule The author also verified the effectiveness of the neural network-based diffusion Monte Carlo method on a series of molecular systems, including nitrogen molecules, cyclobutadiene and double water molecules. Significant improvements in computational accuracy were observed on all tested systems. 3. Benzene ring and biphenyl ring This work Before its publication, the neural network wave function method based on variational Monte Carlo in the field of quantum chemistry had only dealt with small molecules within 30 electrons. This work applies the neural network wave function method to systems with 42 to 84 electrons, namely benzene rings and biphenyl rings, for the first time. The calculation results show that the diffusion Monte Carlo method is significantly better than the variational Monte Carlo method in accuracy, and can achieve the same or better accuracy with one order of magnitude fewer calculation steps.
##4. Linear relationship and extrapolation method
When the author examined the energy corresponding to different training stages of the neural network, he found that the calculation results of variational Monte Carlo and diffusion Monte Carlo were empirical in many systems. linear relationship (left picture below). Using this linear relationship to extrapolate the dissociation energy calculation of the diphenyl ring significantly improves the calculation accuracy and obtains results that are consistent with chemical experiments (right picture below).
This work shows that the diffusion Monte Carlo method based on neural networks is superior in both accuracy and efficiency. for the variational Monte Carlo method. The author's open-source diffusion Monte Carlo code can be quickly combined with the continuously innovative neural networks [4,5] in the field of quantum chemistry to empower the research community. In addition, the diffusion Monte Carlo method can also be combined with a series of methods such as periodic neural networks [6] and neural networks with pseudopotentials [7] that deal with real solids to improve computing effects on corresponding tasks.
The above is the detailed content of New research reveals the potential of quantum Monte Carlo to surpass neural networks in breaking through limitations, and a Nature sub-issue details the latest progress. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



General Matrix Multiplication (GEMM) is a vital part of many applications and algorithms, and is also one of the important indicators for evaluating computer hardware performance. In-depth research and optimization of the implementation of GEMM can help us better understand high-performance computing and the relationship between software and hardware systems. In computer science, effective optimization of GEMM can increase computing speed and save resources, which is crucial to improving the overall performance of a computer system. An in-depth understanding of the working principle and optimization method of GEMM will help us better utilize the potential of modern computing hardware and provide more efficient solutions for various complex computing tasks. By optimizing the performance of GEMM

WORD is a powerful word processor. We can use word to edit various texts. In Excel tables, we have mastered the calculation methods of addition, subtraction and multipliers. So if we need to calculate the addition of numerical values in Word tables, How to subtract the multiplier? Can I only use a calculator to calculate it? The answer is of course no, WORD can also do it. Today I will teach you how to use formulas to calculate basic operations such as addition, subtraction, multiplication and division in tables in Word documents. Let's learn together. So, today let me demonstrate in detail how to calculate addition, subtraction, multiplication and division in a WORD document? Step 1: Open a WORD, click [Table] under [Insert] on the toolbar, and insert a table in the drop-down menu.

How to use Python's count() function to calculate the number of an element in a list requires specific code examples. As a powerful and easy-to-learn programming language, Python provides many built-in functions to handle different data structures. One of them is the count() function, which can be used to count the number of elements in a list. In this article, we will explain how to use the count() function in detail and provide specific code examples. The count() function is a built-in function of Python, used to calculate a certain

Given two strings str_1 and str_2. The goal is to count the number of occurrences of substring str2 in string str1 using a recursive procedure. A recursive function is a function that calls itself within its definition. If str1 is "Iknowthatyouknowthatiknow" and str2 is "know" the number of occurrences is -3. Let us understand through examples. For example, input str1="TPisTPareTPamTP", str2="TP"; output Countofoccurrencesofasubstringrecursi

In C#, there is a Math class library, which contains many mathematical functions. These include the function Math.Pow, which calculates powers, which can help us calculate the power of a specified number. The usage of the Math.Pow function is very simple, you only need to specify the base and exponent. The syntax is as follows: Math.Pow(base,exponent); where base represents the base and exponent represents the exponent. This function returns a double type result, that is, the power calculation result. Let's

Introduction The Java program for calculating the area of a triangle using determinants is a concise and efficient program that can calculate the area of a triangle given the coordinates of three vertices. This program is useful for anyone learning or working with geometry, as it demonstrates how to use basic arithmetic and algebraic calculations in Java, as well as how to use the Scanner class to read user input. The program prompts the user for the coordinates of three points of the triangle, which are then read in and used to calculate the determinant of the coordinate matrix. Use the absolute value of the determinant to ensure the area is always positive, then use a formula to calculate the area of the triangle and display it to the user. The program can be easily modified to accept input in different formats or to perform additional calculations, making it a versatile tool for geometric calculations. ranks of determinants

A popular general-purpose programming language is Python. It is used in a variety of industries, including desktop applications, web development, and machine learning. Fortunately, Python has a simple and easy-to-understand syntax that is suitable for beginners. In this article, we will use Python to calculate the sum of the right diagonal of a matrix. What is a matrix? In mathematics, we use a rectangular array or matrix to describe a mathematical object or its properties. It is a rectangular array or table containing numbers, symbols, or expressions arranged in rows and columns. . For example -234512367574 Therefore, this is a matrix with 3 rows and 4 columns, expressed as a 3*4 matrix. Now, there are two diagonals in the matrix, the primary diagonal and the secondary diagonal

We will demonstrate how to calculate total scores and percentages using a Java program. Total score refers to the sum of all available scores, while the term percentage refers to the calculated score divided by the total score and multiplied by the resulting number 100. percentage_of_marks=(obtained_marks/total_marks)×100 Example 1 This is a Java program that demonstrates how to calculate total scores and percentages. //JavaProgramtodemonstratehowisTotalmarksandPercentagescalculatedimportjava.io.*;publicclassTotalMarks_
