텍스트 분류 문제 (정서 분석)를 다루고 있습니다. scikit에 어떤 옵션이 있는지 알고 싶습니다. 기능에 "중요도"로 "가중치"를 추가하는 방법을 배우십시오. Scikits Learn : 선형 커널 SVM의 특징 가중치
coef_ array, shape = [n_class-1, n_features]
Weights asigned to the features (coefficients in the primal problem).
This is only available in the case of linear kernel.coef_ is readonly property derived from dual_coef_ and support_vectors_
그러나,이 속성은 읽기 전용 것 같습니다 : 나는 아래에 정의, 문서를 확인하고
the attribute "coefs" of SVC을 발견했다.
깔끔하고 감사합니다. –