list(map(f, x))
(f: Callable, x: Iterable)
| 66 | |
| 67 | |
| 68 | def lmap(f: Callable, x: Iterable) -> List: |
| 69 | """list(map(f, x))""" |
| 70 | return list(map(f, x)) |
| 71 | |
| 72 | |
| 73 | def calculate_bleu(output_lns, refs_lns, **kwargs) -> dict: |
no outgoing calls
no test coverage detected