We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Below is my code, could someone help me to resolve this issue.
import numpy as np #import pandas as pd #import matplotlib.pyplot as plt import sklearn import pickle import cv2
haar = cv2.CascadeClassifier('./model/haarcascade_frontalface_default.xml')
mean = pickle.load(open('./model/mean_preprocess.pickle','rb')) model_svm = pickle.load(open('./model/model_svm.pickle','rb')) model_pca = pickle.load(open('./model/pca_50.pickle','rb'))
The text was updated successfully, but these errors were encountered:
the same error
Sorry, something went wrong.
No branches or pull requests
Below is my code, could someone help me to resolve this issue.
import numpy as np
#import pandas as pd
#import matplotlib.pyplot as plt
import sklearn
import pickle
import cv2
haar = cv2.CascadeClassifier('./model/haarcascade_frontalface_default.xml')
pickle files
mean = pickle.load(open('./model/mean_preprocess.pickle','rb'))
model_svm = pickle.load(open('./model/model_svm.pickle','rb'))
model_pca = pickle.load(open('./model/pca_50.pickle','rb'))
The text was updated successfully, but these errors were encountered: