(subject)
| 37 | return valid_substrings |
| 38 | |
| 39 | def format_subject(subject): |
| 40 | l = subject.split("_") |
| 41 | s = "" |
| 42 | for entry in l: |
| 43 | s += " " + entry |
| 44 | return s |
| 45 | |
| 46 | def format_example(df, idx, include_answer=True): |
| 47 | prompt = df.iloc[idx, 0] |
nothing calls this directly
no outgoing calls
no test coverage detected