


Authors from Tsinghua University ranked first, with more than ten manuscripts accepted by multiple people: NeurIPS 2022 statistics are released
As one of the most prestigious AI academic conferences in the world, NeurIPS is an important event in the academic community every year and is usually held in December every year. The content discussed at the conference includes deep learning, computer vision, large-scale machine learning, learning theory, optimization, sparse theory and many other subdivisions.
This year's NeurIPS is the 36th and will be held for two weeks from November 28th to December 9th. The first week will be an in-person meeting at the Ernest N. Morial Convention Center in New Orleans, USA, and the second week will be an online meeting.
In late September, NeurIPS announced this year’s paper acceptance status. This year, a total of 10,411 papers were submitted from all walks of life, 2,672 of which were accepted. The rate is 25.6%. Compared with last year, the number of submissions continues to increase.
Yesterday, Sanagno, a PhD in data science from ETH Zurich, compiled information related to NeurIPS 2022, including the ranking of individual manuscripts, the ranking of institutions, and the most frequently used papers in titles and abstracts. vocabulary.
## Project address: https://github.com/sanagno/neurips_2022_statistics
The first is the ranking of individual manuscripts. The first one is Bernhard Schölkopf, Director of the Max Planck Institute for Intelligent Systems, who accepted 13 papers;
is tied for 1st place. The second ones are Stefano Ermon, associate professor of the Department of Computer Science at Stanford University, Zhangyang Wang, assistant professor at the University of Texas at Austin, and Sergey Levine, associate professor at the University of California, Berkeley, who accepted 12 papers.
Tie for third place are Tongliang Liu, director of the Artificial Intelligence Center of the University of Sydney, Volkan Cevher, associate professor of the LIONS laboratory of the Ecole Polytechnique Fédérale de Lausanne, and Han, assistant professor of computer science at Hong Kong Baptist University. Bo Han, Junchi Yan, associate professor at Shanghai Jiao Tong University, and Bo Li, assistant professor at the University of Illinois at Urbana-Champaign, accepted 11 papers.
The second is the ranking of the number of manuscripts by institutions. Except for institutions without affiliation (no affiliation), the top three are Tsinghua, Stanford and University of California.
Another statistical result shows that if you only look at the first author, Tsinghua University has 85 articles ranked first by the institution, and Stanford University and Google ranked second and third.
##Source https://github.com/SGEthan/NeurIPS2022_Paper_Retrieving
Finally, the top five words with the most occurrences in the title are Multi, Training, Self, Optimal and Learning, and the top five words in the abstract are learning, model, data, models and methods.
The above is the detailed content of Authors from Tsinghua University ranked first, with more than ten manuscripts accepted by multiple people: NeurIPS 2022 statistics are released. 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

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().

A strategy to avoid errors caused by default in C switch statements: use enums instead of constants, limiting the value of the case statement to a valid member of the enum. Use fallthrough in the last case statement to let the program continue to execute the following code. For switch statements without fallthrough, always add a default statement for error handling or provide default behavior.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

In C language, you can use !!x, but it only uses two Boolean conversions, and it is more concise and efficient to use x directly.

The default statement is crucial in the switch case statement because it provides a default processing path that ensures that a block of code is executed when the variable value does not match any case statement. This prevents unexpected behavior or errors and enhances the robustness of the code.

The logical non-operator (!) has the priority next to parentheses, which means that in expressions, it will precede most other operators. Understanding priority not only requires rote memorization, but more importantly, understanding the logic and potential pitfalls behind it to avoid undetectable errors in complex expressions. Adding brackets can clarify expression intent, improve code clarity and maintainability, and prevent unexpected behavior.

!x Understanding !x is a logical non-operator in C language. It booleans the value of x, that is, true changes to false, false changes to true. But be aware that truth and falsehood in C are represented by numerical values rather than boolean types, non-zero is regarded as true, and only 0 is regarded as false. Therefore, !x deals with negative numbers the same as positive numbers and is considered true.

The value range of char in C language depends on the implementation method: signed char: -128 to 127 Unsigned char: 0 to 255 The specific range is affected by computer architecture and compiler options. By default, char is set to a signed type.
