(s)
| 52 | |
| 53 | |
| 54 | def clean(s): |
| 55 | clean_toks = ['\n', '\t'] |
| 56 | for tok in clean_toks: |
| 57 | s = s.replace(tok, ' ') |
| 58 | return s |
| 59 | |
| 60 | def downsampling(task_idx_real, curr_task_seq): |
| 61 | # Downsampling Task 26 and 29 |
no outgoing calls
no test coverage detected