當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python sklearn DictionaryLearning用法及代碼示例


本文簡要介紹python語言中 sklearn.decomposition.DictionaryLearning 的用法。

用法:

class sklearn.decomposition.DictionaryLearning(n_components=None, *, alpha=1, max_iter=1000, tol=1e-08, fit_algorithm='lars', transform_algorithm='omp', transform_n_nonzero_coefs=None, transform_alpha=None, n_jobs=None, code_init=None, dict_init=None, verbose=False, split_sign=False, random_state=None, positive_code=False, positive_dict=False, transform_max_iter=1000)

字典學習。

查找在對擬合數據進行稀疏編碼時表現良好的字典(一組原子)。

解決優化問題:

(U^*,V^*) = argmin 0.5 || X - U V ||_Fro^2 + alpha * || U ||_1,1
            (U,V)
            with || V_k ||_2 <= 1 for all  0 <= k < n_components

||.||_Fro 代表 Frobenius 範數,||.||_1,1 代表entry-wise 矩陣範數,它是矩陣中所有條目的絕對值之和。

在用戶指南中閱讀更多信息。

參數

n_components整數,默認=無

要提取的字典元素的數量。如果無,則 n_components 設置為 n_features

alpha浮點數,默認=1.0

稀疏性控製參數。

max_iter整數,默認=1000

要執行的最大迭代次數。

tol浮點數,默認=1e-8

數值誤差的容差。

fit_algorithm{‘lars’, ‘cd’},默認='lars'
  • 'lars' :使用最小角度回歸方法解決套索問題( lars_path );
  • 'cd' :使用坐標下降法計算 Lasso 解( Lasso )。如果估計的組件稀疏,Lars 會更快。
transform_algorithm{‘lasso_lars’, ‘lasso_cd’,‘lars’, ‘omp’,‘threshold’},默認='omp'

用於轉換數據的算法:

  • 'lars':使用最小角度回歸法( lars_path );
  • 'lasso_lars' :使用 Lars 計算 Lasso 解決方案。
  • 'lasso_cd' :使用坐標下降法計算 Lasso 解( Lasso )。如果估計的組件稀疏,'lasso_lars' 會更快。
  • 'omp' :使用正交匹配追蹤來估計稀疏解。
  • 'threshold' :將投影 dictionary * X' 中小於 alpha 的所有係數壓縮為零。
transform_n_nonzero_coefs整數,默認=無

解的每列中要定位的非零係數的數量。這僅由 algorithm='lars'algorithm='omp' 使用。如果 None ,那麽 transform_n_nonzero_coefs=int(n_features / 10)

transform_alpha浮點數,默認=無

如果 algorithm='lasso_lars'algorithm='lasso_cd' ,則 alpha 是應用於 L1 範數的懲罰。如果 algorithm='threshold'alpha 是閾值的絕對值,低於該值係數將被壓縮為零。如果 None ,則默認為 alpha

n_jobsint 或無,默認=無

要運行的並行作業數。 None 表示 1,除非在 joblib.parallel_backend 上下文中。 -1 表示使用所有處理器。有關詳細信息,請參閱詞匯表。

code_initndarray 形狀(n_samples,n_components),默認=None

代碼的初始值,用於熱重啟。僅在 code_initdict_init 不是 None 時使用。

dict_initndarray 形狀(n_components,n_features),默認=None

字典的初始值,用於熱重啟。僅在 code_initdict_init 不是 None 時使用。

verbose布爾,默認=假

控製過程的詳細程度。

split_sign布爾,默認=假

是否將稀疏特征向量拆分為其負部分和正部分的串聯。這可以提高下遊分類器的性能。

random_stateint、RandomState 實例或無,默認=無

用於在未指定 dict_init 時初始化字典,在 shuffle 設置為 True 時隨機打亂數據,以及更新字典。傳遞 int 以獲得跨多個函數調用的可重現結果。請參閱術語表。

positive_code布爾,默認=假

查找代碼時是否強製執行積極性。

positive_dict布爾,默認=假

查找字典時是否強製執行積極性。

transform_max_iter整數,默認=1000

algorithm='lasso_cd''lasso_lars' 時要執行的最大迭代次數。

屬性

components_ndarray 形狀(n_components,n_features)

從數據中提取的字典原子

error_數組

每次迭代的誤差向量

n_features_in_int

擬合期間看到的特征數。

feature_names_in_ndarray 形狀(n_features_in_,)

擬合期間看到的特征名稱。僅當 X 具有全為字符串的函數名稱時才定義。

n_iter_int

運行的迭代次數。

參考

J. Mairal、F. Bach、J. Ponce、G. Sapiro,2009:稀疏編碼的在線字典學習 (https://www.di.ens.fr/sierra/pdfs/icml09.pdf)

例子

>>> import numpy as np
>>> from sklearn.datasets import make_sparse_coded_signal
>>> from sklearn.decomposition import DictionaryLearning
>>> X, dictionary, code = make_sparse_coded_signal(
...     n_samples=100, n_components=15, n_features=20, n_nonzero_coefs=10,
...     random_state=42,
... )
>>> dict_learner = DictionaryLearning(
...     n_components=15, transform_algorithm='lasso_lars', random_state=42,
... )
>>> X_transformed = dict_learner.fit_transform(X)

我們可以檢查 X_transformed 的稀疏程度:

>>> np.mean(X_transformed == 0)
0.87...

我們可以比較稀疏編碼信號重構誤差的平均平方歐幾裏得範數與原始信號的平方歐幾裏得範數:

>>> X_hat = X_transformed @ dict_learner.components_
>>> np.mean(np.sum((X_hat - X) ** 2, axis=1) / np.sum(X ** 2, axis=1))
0.08...

相關用法


注:本文由純淨天空篩選整理自scikit-learn.org大神的英文原創作品 sklearn.decomposition.DictionaryLearning。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。