29 Downloads Updated 1 month ago
ollama run oisee/qwen-coder-abap:v3
Updated 1 month ago
1 month ago
1524b99ba1ad · 4.7GB ·
Fine-tuned Qwen2.5-Coder-7B for modern ABAP development.
Generates clean, modern ABAP 7.4+ code while avoiding legacy patterns.
| Field | Value |
|---|---|
| Base Model | Qwen2.5-Coder-7B-Instruct |
| Fine-tuning | ORPO (Odds Ratio Preference Optimization) |
| Training Data | 1k+ ABAP preference pairs |
| Quantization | Q4_K_M |
| License | Apache 2.0 |
ollama run oisee/qwen-coder-abap "Convert READ TABLE to modern ABAP"
Promotes modern ABAP patterns:
DATA(lv_var) = valuelt_table[ key = value ]NEW zcl_class( param = value )|Hello { lv_name }|VALUE #( ( id = 1 ) ( id = 2 ) )FILTER #( lt_data WHERE status = 'A' )Avoids legacy patterns:
Input:
Convert: READ TABLE lt_data INTO ls_row WITH KEY id = 1.
Output:
DATA(ls_row) = lt_data[ id = 1 ].
| Metric | Base Model | Fine-tuned |
|---|---|---|
| Modern patterns | 18 | 23 |
| Legacy patterns | 7 | 2 |
| Net score | +11 | +21 |
| Inference time | 74.7s | 23.5s |
Apache 2.0 (inherited from Qwen2.5-Coder)