Unsupervised Translation of Programming Languages
arXiv:2006.03511
Abstract
A transcompiler, also known as source-to-source translator, is a system that converts source code from a high-level programming language (such as C++ or Python) to another. Transcompilers are primarily used for interoperability, and to port codebases written in an obsolete or deprecated language (e.g. COBOL, Python 2) to a modern one. They typically rely on handcrafted rewrite rules, applied to the source code abstract syntax tree. Unfortunately, the resulting translations often lack readability, fail to respect the target language conventions, and require manual modifications in order to work properly. The overall translation process is timeconsuming and requires expertise in both the source and target languages, making code-translation projects expensive. Although neural models significantly outperform their rule-based counterparts in the context of natural language translation, their applications to transcompilation have been limited due to the scarcity of parallel data in this domain. In this paper, we propose to leverage recent approaches in unsupervised machine translation to train a fully unsupervised neural transcompiler. We train our model on source code from open source GitHub projects, and show that it can translate functions between C++, Java, and Python with high accuracy. Our method relies exclusively on monolingual source code, requires no expertise in the source or target languages, and can easily be generalized to other programming languages. We also build and release a test set composed of 852 parallel functions, along with unit tests to check the correctness of translations. We show that our model outperforms rule-based commercial baselines by a significant margin.
References in corpus (8)
- Sequence to Sequence Learning with Neural Networks
- Cross-lingual Language Model Pretraining
- Dual Learning for Machine Translation
- MASS: Masked Sequence to Sequence Pre-training for Language Generation
- On Using Monolingual Corpora in Neural Machine Translation
- Learning Python Code Suggestion with a Sparse Pointer Network
- A parallel corpus of Python functions and documentation strings for automated code documentation and code generation
- Towards Neural Decompilation
Cited by in corpus (19)
- Evaluating Large Language Models Trained on Code
- CodeXGLUE: A Machine Learning Benchmark Dataset for Code Understanding and Generation
- CodeBLEU: a Method for Automatic Evaluation of Code Synthesis
- Unified Pre-training for Program Understanding and Generation
- A Survey on Self-supervised Pre-training for Sequential Transfer Learning in Neural Networks
- CoTexT: Multi-task Learning with Code-Text Transformer
- Energy-Based Models for Code Generation under Compilability Constraints
- Report of the Workshop on Program Synthesis for Scientific Computing
- Automating Program Structure Classification
- Distilling Transformers for Neural Cross-Domain Search
- Svar: A Tiny C++ Header Brings Unified Interface for Multiple programming Languages
- Neural Circuit Synthesis from Specification Patterns
- RPT: Effective and Efficient Retrieval of Program Translations from Big Code
- Text Classification for Task-based Source Code Related Questions
- Formal Fields: A Framework to Automate Code Generation Across Domains
- The test set for the TransCoder system
- Using Document Similarity Methods to create Parallel Datasets for Code Translation
- Jointly Learning to Repair Code and Generate Commit Message
- DeepMutants: Training neural bug detectors with contextual mutations