()
| 69 | |
| 70 | |
| 71 | def test_agc_cora(): |
| 72 | args = get_default_args_agc(dataset="cora", model="agc", mw="agc_mw", dw="node_classification_dw") |
| 73 | args.model_type = "both" |
| 74 | args.cluster_method = "spectral" |
| 75 | args.max_iter = 1 |
| 76 | ret = train(args) |
| 77 | assert ret["nmi"] >= 0 |
| 78 | |
| 79 | |
| 80 | def test_daegc_cora(): |
no test coverage detected