Didn't explore much, but it seems alpaca-lora has better results for coding tasks. One example I've used was: "Implement quicksort in python.". This is the result with Code alpaca:
def quicksort(arr):
if len(arr) <= 1:
return arr
pivot = arr[0]
left = [arr[i] for i in range(1, len(arr)) if arr[i] < pivot]
right = [arr[i] for i in range(1, len(arr)) if arr[i] > pivot]
return quicksort(left) + [pivot] + quicksort(right)
Shorter and much cleaner, not to mention it works (code alpaca version is broken). Also it matches what ChatGPT generates for me.