aifixcode-model / README.md
khulnasoft's picture
Update README.md
a029535 verified
|
raw
history blame
737 Bytes

AI FixCode Model πŸ› οΈ

A Transformer-based code fixing model trained on diverse buggy β†’ fixed code pairs. Built using CodeT5, this model identifies and corrects syntactic and semantic errors in source code.

πŸ“Œ Model Details

  • Base Model: Salesforce/codet5p-220m
  • Type: Seq2Seq (Encoder-Decoder)
  • Trained On: Custom dataset with real-world buggy β†’ fixed examples.
  • Languages: Python (initially), can be expanded to JS, Go, etc.

πŸ”§ Intended Use

Input a buggy function or script and receive a syntactically and semantically corrected version.

Example:

# Input:
def add(x, y)
 return x + y

# Output:
def add(x, y):
    return x + y