nok / sklearn-porter

Transpile trained scikit-learn estimators to C, Java, JavaScript and others.
BSD 3-Clause "New" or "Revised" License
1.28k stars 170 forks source link

FIX: SVC's gamma = 'scale' representation #83

Open elainexmas opened 3 years ago

elainexmas commented 3 years ago

If gamma is 'scale', use the computed value stored on the estimator object, rather than repr of the string 'scale'.

reference: https://github.com/scikit-learn/scikit-learn/blob/main/sklearn/svm/_base.py#L206-L210