


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 size of a Bootstrap list depends on the size of the container that contains the list, not the list itself. Using Bootstrap's grid system or Flexbox can control the size of the container, thereby indirectly resizing the list items.

Nested lists in Bootstrap require the use of Bootstrap's grid system to control the style. First, use the outer layer <ul> and <li> to create a list, then wrap the inner layer list in <div class="row> and add <div class="col-md-6"> to the inner layer list to specify that the inner layer list occupies half the width of a row. In this way, the inner list can have the right one

How to add icons to the Bootstrap list: directly stuff the icon into the list item <li>, using the class name provided by the icon library (such as Font Awesome). Use the Bootstrap class to align icons and text (for example, d-flex, justify-content-between, align-items-center). Use the Bootstrap tag component (badge) to display numbers or status. Adjust the icon position (flex-direction: row-reverse;), control the style (CSS style). Common error: The icon does not display (not

When converting strings to objects in Vue.js, JSON.parse() is preferred for standard JSON strings. For non-standard JSON strings, the string can be processed by using regular expressions and reduce methods according to the format or decoded URL-encoded. Select the appropriate method according to the string format and pay attention to security and encoding issues to avoid bugs.

Bootstrap 5 list style changes are mainly due to detail optimization and semantic improvement, including: the default margins of unordered lists are simplified, and the visual effects are cleaner and neat; the list style emphasizes semantics, enhancing accessibility and maintainability.

Bootstrap's mesh system is a rule for quickly building responsive layouts, consisting of three main classes: container (container), row (row), and col (column). By default, 12-column grids are provided, and the width of each column can be adjusted through auxiliary classes such as col-md-, thereby achieving layout optimization for different screen sizes. By using offset classes and nested meshes, layout flexibility can be extended. When using a grid system, make sure that each element has the correct nesting structure and consider performance optimization to improve page loading speed. Only by in-depth understanding and practice can we master the Bootstrap grid system proficiently.

Efficiently process 7 million records and create interactive maps with geospatial technology. This article explores how to efficiently process over 7 million records using Laravel and MySQL and convert them into interactive map visualizations. Initial challenge project requirements: Extract valuable insights using 7 million records in MySQL database. Many people first consider programming languages, but ignore the database itself: Can it meet the needs? Is data migration or structural adjustment required? Can MySQL withstand such a large data load? Preliminary analysis: Key filters and properties need to be identified. After analysis, it was found that only a few attributes were related to the solution. We verified the feasibility of the filter and set some restrictions to optimize the search. Map search based on city

Overview: There are many ways to center images using Bootstrap. Basic method: Use the mx-auto class to center horizontally. Use the img-fluid class to adapt to the parent container. Use the d-block class to set the image to a block-level element (vertical centering). Advanced method: Flexbox layout: Use the justify-content-center and align-items-center properties. Grid layout: Use the place-items: center property. Best practice: Avoid unnecessary nesting and styles. Choose the best method for the project. Pay attention to the maintainability of the code and avoid sacrificing code quality to pursue the excitement
