Qwen2.5-Coder-1.5B QLoRA · Unsloth Training loss 2.14 → 0.13
COMPUTE WS-TAX = WS-PRICE * WS-TAX-RATE
from decimal import Decimal ws_tax = Decimal(str(ws_price)) * Decimal(str(ws_tax_rate))
MOVE WS-CUSTOMER-NAME TO WS-OUTPUT-NAME
ws_output_name = ws_customer_name
IF WS-BALANCE > ZERO PERFORM CREDIT-ROUTINE END-IF
if ws_balance > 0:
credit_routine()
PERFORM VARYING WS-IDX FROM 1 BY 1
UNTIL WS-IDX > WS-MAX
ADD 1 TO WS-TOTAL
END-PERFORM
for ws_idx in range(1, ws_max + 1):
ws_total += 1