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