File size: 153 Bytes
feb3d02 | 1 2 3 4 5 6 |
def preprocess_input(text):
text = text.replace(", ", ",").replace(",", ", ")
text = text.replace(": ", ":").replace(":", ": ")
return text
|
feb3d02 | 1 2 3 4 5 6 |
def preprocess_input(text):
text = text.replace(", ", ",").replace(",", ", ")
text = text.replace(": ", ":").replace(":", ": ")
return text
|