From 775637919e150577855995a945205cd9f786e495 Mon Sep 17 00:00:00 2001 From: linlin Date: Mon, 5 Oct 2020 16:36:55 +0200 Subject: [PATCH] New translations __init__.py (Chinese Simplified) --- lang/zh/gklearn/__init__.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lang/zh/gklearn/__init__.py diff --git a/lang/zh/gklearn/__init__.py b/lang/zh/gklearn/__init__.py new file mode 100644 index 0000000..08ca4ed --- /dev/null +++ b/lang/zh/gklearn/__init__.py @@ -0,0 +1,21 @@ +# -*-coding:utf-8 -*- +""" +gklearn + +This package contains 4 sub packages : + * c_ext : binders to C++ code + * ged : allows to compute graph edit distance between networkX graphs + * kernels : computation of graph kernels, ie graph similarity measure compatible with SVM + * notebooks : examples of code using this library + * utils : Diverse computation on graphs +""" + +# info +__version__ = "0.1" +__author__ = "Benoit Gaüzère" +__date__ = "November 2017" + +# import sub modules +# from gklearn import c_ext +# from gklearn import ged +# from gklearn import utils