0% found this document useful (0 votes)
34 views1 page

Deep Learning Abstract

The document discusses automated code generation using machine learning and deep learning techniques. Past approaches like RNNs for code completion and Seq2Seq models for code translation laid the foundation for current advancements. The research evaluates using an RNN to automatically generate Python code and tests the ability of the RNN model to produce compilable code.

Uploaded by

ts.avs.aur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Deep Learning Abstract

The document discusses automated code generation using machine learning and deep learning techniques. Past approaches like RNNs for code completion and Seq2Seq models for code translation laid the foundation for current advancements. The research evaluates using an RNN to automatically generate Python code and tests the ability of the RNN model to produce compilable code.

Uploaded by

ts.avs.aur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

AUTOMATED CODE GENERATION (PYTHON)

ABSTRACT:
The evolution of Deep Learning has witnessed a growing demand for automation in the
generation of code, a pivotal element of Artificial Intelligence.
Automated code generation endeavors to reduce human intervention in the code-writing
process by employing a diverse set of machine learning and deep learning techniques. These
techniques, including early attempts such as expert systems and rule-based programming in the
1970s and 1980s, have since evolved to encompass a broader array of algorithms. Past
approaches like recurrent neural networks (RNNs), which were used for code completion and
code comment generation, and sequence-to-sequence (Seq2Seq) models for code translation, laid
the foundation for contemporary advancements.
Deep Learning is an emerging field in Artificial Intelligence that uses biologically inspired neural
networks to recognize patterns in the natural world. These neural networks have an amazing
ability to process large amounts of data and learn from them. Recurrent Neural Networks (RNN)
are used in applications involving natural language processing like text translations and text
generation. This research evaluates the effectiveness of a RNN to be able to automatically
generate programming code. Programming languages are different from natural languages in that
they have unique structure and syntax. The goal for this research is to conduct experiments on a
character RNN model with for Python programming language and evaluate the results by testing
and analyzing the ability for the RNN to automatically produce code that can compile.

You might also like