evaluation_imports: Dictionary ( key = module name , value = alias ) with python modules used in the evaluation.
()
| 6 | import importlib |
| 7 | |
| 8 | def evaluation_imports(): |
| 9 | """ |
| 10 | evaluation_imports: Dictionary ( key = module name , value = alias ) with python modules used in the evaluation. |
| 11 | """ |
| 12 | return { |
| 13 | 'Polygon':'plg', |
| 14 | 'numpy':'np' |
| 15 | } |
| 16 | |
| 17 | def default_evaluation_params(): |
| 18 | """ |