Papers I found intresting

ImageNet Classification with Deep Convolutional Neural Networks

This paper discussed the problem of image classification on a subset of the ImageNet data set, the LSRVC-2010. It introduces AlexNet, a deep Convolutional Neural Network architecture, which won the 2012 ImageNet competition, significantly advancing deep learning.

DreamFusion: Text-to-3D using 2D diffusion

This paper presents a method called DreamFusion, for generating 3D models from text descriptions by leveraging pre-trained 2D diffusion models. Models like ImageGen can generate 2D images based on text descriptions. DreamFusion adapts these models to create 3D objects.

BrepGen: A B-rep Generative Diffusion Model

This paper uses a diffusion-based generative model to present BrepGen, a method for directly generating 3D CAD models in the Boundary Representation (B-rep) format. The key to BrepGen is using a hierarchical tree structure to represent the Brep geometry and topology. The root of the tree is the entire solid structure and the child nodes are the components such as its edges, vertices, and faces. Thus the geometry is maintained in the nodes of the tree and the topology is encoded implicitly through node duplication. BrepGen opens up the possibility of generating more complex and realistic shapes, as it can generate free-form and doubly curved surfaces. This opens up new possibilities for automating and improving the CAD design workflow. You can find the original paper here

Playing Atari with Deep Reinforcement Learning

This paper introduces a new model by combining deep learning with reinforcement learning, specifically to handle high dimensional inputs like raw images. The researchers developed the Deep Q-networks, which uses convolutional neural networks to process high-dimensional data. This is used to train an agent to play Atari games, without any game specific information.

ImageNet Classification with Deep Convolutional Neural Networks

This paper tackles the challenge of training very deep neural networks, which often suffer from vanishing and exploding gradients, leading to a degradation problem where performance worsens as layers increase. The researchers address this problem by using a residual learning framework. Instead of approximating a function H(x), they approximate F(x) = H(x) - x.