ina-foss / inaFaceAnalyzer

INA's library with pretrained models for gender and age prediction from faces.
Other
19 stars 9 forks source link

svm_classifier.joblib: replaced the model svm_classifier.joblib saved… #7

Closed itanghiu closed 3 years ago

itanghiu commented 3 years ago

svm_classifier.joblib: The current svm_classifier.joblib is not compatible with latest version of sklearn. I replaced the model svm_classifier.joblib saved with sklearn 0.21 with model saved with sklearn 0.24,

inafaceGender.py:
replaced ' import sklearn.externals.joblib as extjoblib (sklearn 0.21) , which is deprecated and does not work with latest sversion of sklearn with import joblib as jblib (skearn 0.24)

tutorial.ipynb: the "per_frames" parameter does not exist in the detect_with_tracking method. I replaced "per_frames" with "subsamp_coeff"

DavidDoukhan commented 3 years ago

several modifications related to this issue were done in the master branch. Thanks for your suggestions !