Views
No views yet
small: contains below 50k instances of various string length and only contains slicing operations, i.e. all python operations expressable with s[i:j:s] (which also includes string reversal).
small10: like small, but only strings to length 10small15: like small, but only strings to length 15small20: like small, but only strings to length 20input: input string, i.e. the string and the string operationoutput: output of the string operationcode: code for running the string operation in python,res_var: name of the result variableoperation: kind of operation:
step_x for s[::x]char_at_x for s[x]slice_x:y for s[x:y]slice_step_x:y:z for s[x:y:z]slice_reverse_i:j:k for s[i:i+j][::k]data contain additional metadata information about the dataset.prompt describes possible prompts based on that data splitted into input prompts / output prompts