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.

README.md 1.1 kB

7 years ago
7 years ago
7 years ago
7 years ago
1234567891011121314151617181920212223242526272829303132
  1. # py-graph
  2. a python package for graph kernels.
  3. ## requirements
  4. * numpy - 1.13.3
  5. * scipy - 1.0.0
  6. * matplotlib - 2.1.0
  7. * networkx - 2.0
  8. * sklearn - 0.19.1
  9. * tabulate - 0.8.2
  10. ## results with minimal RMSE for each kernel on dataset Asyclic
  11. | Kernels | RMSE(℃) | std(℃) | parameter |
  12. |---------------|:---------:|:--------:|-------------:|
  13. | shortest path | 36.400524 | 5.352940 | - |
  14. | marginalized | 17.8991 | 6.59104 | p_quit = 0.1 |
  15. | path | 14.270816 | 6.366698 | - |
  16. | WL subtree | 9.01403 | 6.35786 | height = 1 |
  17. ## updates
  18. ### 2017.12.20
  19. * ADD Weisfeiler-Lehman subtree kernel and its result on dataset Asyclic. - linlin
  20. ### 2017.12.07
  21. * ADD mean average path kernel and its result on dataset Asyclic. - linlin
  22. * ADD delta kernel. - linlin
  23. * MOD reconstruction the code of marginalized kernel. - linlin
  24. ### 2017.12.05
  25. * ADD marginalized kernel and its result. - linlin
  26. * ADD list required python packages in file README.md. - linlin
  27. ### 2017.11.24
  28. * ADD shortest path kernel and its result. - linlin

A Python package for graph kernels, graph edit distances and graph pre-image problem.