You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

structure.py 302 B

1234567891011
  1. from autogl.datasets import build_dataset_from_name
  2. data = build_dataset_from_name('cora')
  3. from autogl.module.preprocessing.structure_engineering._structure_engineer import *
  4. fes=[GCNJaccard,GCNSVD]
  5. for fe in fes:
  6. print(f'Doing {fe}')
  7. fe = fe()
  8. data=fe.fit_transform(data,inplace=False)