Skip to main content

An Automated Tool for Improving Code Quality Through Variable Name Refinement with Language Models

Project description

VarWizard


  1. Introduction

VarWizard is a language model-based tool to help generate more meaningful variable names in source code than the original version. It supports 10 programming languages: c, cpp, java, javascript, go, python, php, c_sharp, ruby, rust.

  1. Installation

You can easily install this package by the command

    pip install varwizard
  1. Usage

    • Command-line

    You can use VarWizard by running the command

varwizard [--model-name {bloom-560m, codet5-base} (default: bloom-560m)]
            --input INPUT --lang {c,cpp,java,php,go,javascript,ruby,rust,python,c_sharp} 
            [--output-path OUTPUT_PATH (default: None)] [--max-input-len MAX_INPUT_LEN (default: 400)]
            [--device DEVICE (default: cpu)] [--penalty-alpha PENALTY_ALPHA (default: 0.6)] [--top-k TOP_K (default: 4)] [--max-new-tokens MAX_NEW_TOKENS (default: 100)]

Details for each argument can be found by varwizard --help

  • Python API

    Another way is to Python methods. Here is a simple example of VarWizard.

from varwizard import VarWizard

model = VarWizard(model_name = "codet5-base")
code = """
function chunkData(str, chunk) {
  var chunk = [];
  var length = str.length;
  var i = 0;
  for (; i < length; i += chunk) {
    if (i + chunk < length) {
      chunk.push(str.substring(i, i + chunk));
    } else {
      chunk.push(str.substring(i, length));
    }
  }
  return chunk;
}
"""
print(model.make_new_code(code, 'javascript', device = 'cuda:0'))

VarWizard produces the output

function chunkData(str, chunk) {
  var chunk = [];
  var length = str.length;
  var i = 0;
  for (; i < length; i += chunk) {
    if (i + chunk < length) {
      chunk.push(str.substring(i, i + chunk));
    } else {
      chunk.push(str.substring(i, length));
    }
  }
  return chunk;
}
  1. Playground: You can play at the link: https://varwizard.loca.lt. At the first time to access, you may need to enter: 4.193.50.237
  2. Examples

There are some examples for varWizard's usage. We can navigate to the folder $examples$ and then go to any subfolder to run the script.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

varwizard-0.2.2.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

varwizard-0.2.2-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

File details

Details for the file varwizard-0.2.2.tar.gz.

File metadata

  • Download URL: varwizard-0.2.2.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.9.16 Linux/5.15.0-1037-azure

File hashes

Hashes for varwizard-0.2.2.tar.gz
Algorithm Hash digest
SHA256 a00466ad12299a2cb07a85b9436d5c2cd45cbd4acebc042250c206589528b564
MD5 e9c2e946042e2ed42817d435c50a3088
BLAKE2b-256 7fd6ae9bc48ddd0eae0e3b39e5837e4aa803ad9c924eb08035cf6c85079017a0

See more details on using hashes here.

File details

Details for the file varwizard-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: varwizard-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.9.16 Linux/5.15.0-1037-azure

File hashes

Hashes for varwizard-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c40f397a269e8cac531397719a2391b57398886ee417153109db26d5f16624aa
MD5 e687ba9983f916500d95fa4929fcf33a
BLAKE2b-256 65ae05b48221e8f370cc5ce59b214956a2e804351baffa4799ffe68ec5d581f0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page