(dataset, model, dw="graph_classification_dw", mw="graph_classification_mw")
| 28 | |
| 29 | |
| 30 | def get_default_args_graph_clf(dataset, model, dw="graph_classification_dw", mw="graph_classification_mw"): |
| 31 | args = get_default_args(dataset=dataset, model=model, dw=dw, mw=mw) |
| 32 | for key, value in default_dict.items(): |
| 33 | args.__setattr__(key, value) |
| 34 | return args |
| 35 | |
| 36 | |
| 37 | def add_diffpool_args(args): |
no test coverage detected