(schema, config)
| 155 | |
| 156 | @staticmethod |
| 157 | def check_params(schema, config): |
| 158 | GLTorchGraph.check_edges(schema, config.get("edges")) |
| 159 | GLTorchGraph.check_node_features(schema, config.get("node_features")) |
| 160 | GLTorchGraph.check_edge_features(schema, config.get("edge_features")) |
| 161 | GLTorchGraph.check_node_labels(schema, config.get("node_labels")) |
| 162 | GLTorchGraph.check_random_node_split(config.get("random_node_split")) |
| 163 | GLTorchGraph.check_edge_weights(schema, config.get("edge_weights")) |
| 164 | |
| 165 | @staticmethod |
| 166 | def transform_config(config): |
no test coverage detected