此條目
包含指南或教學內容 。 (2018年1月8日 ) 請藉由移除或重寫指南段落來改善條目,或在討論頁 提出討論。
匹配追求 ,是一個將高複雜度的信號以較簡單的訊號來近似的過程,也就是在多維空間中,將高維度的資訊投影到較低維度的生成空間 ,藉此降低一個信號所需的展開項目。
簡單來說,就是用盡可能少的基元,進行線性組合來逼近原訊號。
一個有N個基元的近似訊號為
f
(
t
)
≈
f
^
N
(
t
)
=
∑
n
=
1
N
a
n
b
n
(
t
)
{\displaystyle f(t)\approx {\hat {f}}_{N}(t)=\sum _{n=1}^{N}a_{n}b_{n}(t)}
其
a
n
{\displaystyle a_{n}}
為各基元的權重。而與原訊號
f
{\displaystyle f}
的近似誤差為
R
{\displaystyle R}
,表示為
R
=
f
(
t
)
−
f
^
(
t
)
{\displaystyle R=f(t)-{\hat {f}}(t)}
匹配追求並不會賦予子空間
D
{\displaystyle D}
的每個基元一個權重
a
n
{\displaystyle a_{n}}
,意即有些基底會捨棄不用,藉此降低所需空間,相反的,匹配追求會基於貪婪演算法 ,盡可能的用較少的基元,來降低誤差
R
{\displaystyle R}
。核心思想為自子空間
D
{\displaystyle D}
中選擇一個和訊號
f
{\displaystyle f}
內積值最大的基元
b
i
{\displaystyle b_{i}}
,將基元乘上適當的權重
a
i
{\displaystyle a_{i}}
並從原訊號中減去,接著再次進行以上二步驟。以此往復實行運算,直到原訊號被解析,也就是近似誤差
R
{\displaystyle R}
趨近於0。
現假設有一組基元
b
0
(
t
)
,
b
1
(
t
)
,
b
2
(
t
)
,
b
3
(
t
)
.
.
.
.
.
.
b
N
(
t
)
{\displaystyle b_{0}(t),b_{1}(t),b_{2}(t),b_{3}(t)......b_{N}(t)}
源自於字典
D
{\displaystyle D}
,這組
b
n
(
t
)
{\displaystyle b_{n}(t)}
組成一個過完備性 (Over-complete)、非正交集合。
壓縮感知的問題在此即為:
能不能找到最小的
|
|
a
|
|
0
{\displaystyle ||a||_{0}}
(
a
k
{\displaystyle a_{k}}
不為0的個數,
∀
k
=
{
1
,
2
,
.
.
.
,
N
}
{\displaystyle \forall k=\{1,2,...,N\}}
),使得近似訊號
f
^
{\displaystyle {\hat {f}}}
等於
f
{\displaystyle f}
。
f
(
t
)
=
∑
m
a
m
b
m
(
t
)
{\displaystyle f(t)=\sum _{m}a_{m}b_{m}(t)}
很明顯的,自然界中訊號大多只能以近似方式逼近,因此改為求
min
|
|
a
|
|
0
∫
|
|
f
(
t
)
−
∑
m
a
m
b
m
(
t
)
|
|
2
d
t
<
t
h
r
e
s
h
o
l
d
{\displaystyle \min _{||a||_{0}}\int ||f(t)-\sum _{m}a_{m}b_{m}(t)||^{2}dt<threshold}
然而,這個最佳化問題是NP困難 ,無法在線性多項式時間內找到解答,因此使用匹配追求的近似解來求解。
min
∫
|
|
f
(
t
)
−
∑
m
a
m
b
m
(
t
)
|
|
2
d
t
, such that
|
|
a
|
|
0
≤
N
{\displaystyle \min \int ||f(t)-\sum _{m}a_{m}b_{m}(t)||^{2}dt{\text{ , such that }}||a||_{0}\leq N}
輸入: 原訊號
f
(
t
)
{\displaystyle f(t)}
輸出: 所需權重
a
n
{\displaystyle a_{n}}
與其對應的基元
b
n
{\displaystyle b_{n}}
初始化:
n
←
0
{\displaystyle n\leftarrow 0}
f
^
(
t
)
←
f
(
t
)
{\displaystyle {\hat {f}}(t)\leftarrow f(t)}
反覆:
尋找
m
{\displaystyle m}
使得內積
∫
f
^
(
t
)
b
m
∗
(
t
)
d
t
{\displaystyle \int {\hat {f}}(t)b_{m}^{*}(t)dt}
最大
令
ϕ
n
(
t
)
←
b
m
(
t
)
{\displaystyle \phi _{n}(t)\leftarrow b_{m}(t)}
令
μ
n
←
∫
f
^
(
t
)
b
m
∗
(
t
)
d
t
{\displaystyle \mu _{n}\leftarrow \int {\hat {f}}(t)b_{m}^{*}(t)dt}
f
^
(
t
)
←
f
^
(
t
)
−
μ
n
ϕ
n
(
t
)
{\displaystyle {\hat {f}}(t)\leftarrow {\hat {f}}(t)-\mu _{n}\phi _{n}(t)}
n
←
n
+
1
{\displaystyle n\leftarrow n+1}
直到中止條件發生:
問題一:
f
^
(
t
)
=
0
{\displaystyle {\hat {f}}(t)=0}
問題二:
∫
f
^
(
t
)
2
(
t
)
d
t
<
t
h
r
e
s
h
o
l
d
{\displaystyle \int {\hat {f}}(t)^{2}(t)dt<threshold}
問題三:
n
=
N
{\displaystyle n=N}
結束
有鑑於匹配追求的限制條件以及貪婪演算法在特定情況上造成不適當的基元選擇,S.S.Chen等人於1998年提出的基底追求。[ 1] 若將匹配追求想成,從一個"空"的集合中,在每次迭代中慢慢增加一個基元來構成近似訊號,基底追求則可以想成,從一個完整的基元集合,慢慢減少基元數量。
現假設有一組基元
b
0
(
t
)
,
b
1
(
t
)
,
b
2
(
t
)
,
b
3
(
t
)
.
.
.
.
.
.
b
N
(
t
)
{\displaystyle b_{0}(t),b_{1}(t),b_{2}(t),b_{3}(t)......b_{N}(t)}
源自於字典
D
{\displaystyle D}
,這組
b
n
(
t
)
{\displaystyle b_{n}(t)}
組成一個過完備性(Over-complete)、非正交集合。不同於匹配追求,將原先所求的0級範數 (
|
|
a
|
|
0
{\displaystyle ||a||_{0}}
),改為求其絕對值
|
|
a
|
|
1
=
|
a
0
|
+
|
a
1
|
+
|
a
2
|
+
|
a
3
|
+
.
.
.
.
.
.
+
|
a
N
|
{\displaystyle ||a||_{1}=|a_{0}|+|a_{1}|+|a_{2}|+|a_{3}|+......+|a_{N}|}
。
在此情況下,基底追求對於壓縮感知問題的解法亦能細分為三大問題:
能不能找到最小的
|
|
a
|
|
1
{\displaystyle ||a||_{1}}
,使得近似訊號
f
^
{\displaystyle {\hat {f}}}
等於
f
{\displaystyle f}
。
f
(
t
)
=
∑
m
a
m
b
m
(
t
)
{\displaystyle f(t)=\sum _{m}a_{m}b_{m}(t)}
同理,自然界中訊號大多只能以近似方式逼近,因此改為求
min
|
|
a
|
|
1
∫
|
|
f
(
t
)
−
∑
m
a
m
b
m
(
t
)
|
|
2
d
t
<
t
h
r
e
s
h
o
l
d
{\displaystyle \min _{||a||_{1}}\int ||f(t)-\sum _{m}a_{m}b_{m}(t)||^{2}dt<threshold}
這個最佳化問題依舊是NP困難,因此可使用基底追求的近似解來求解。
min
∫
|
|
f
(
t
)
−
∑
m
a
m
b
m
(
t
)
|
|
2
d
t
, such that
|
|
a
|
|
1
≤
N
{\displaystyle \min \int ||f(t)-\sum _{m}a_{m}b_{m}(t)||^{2}dt{\text{ , such that }}||a||_{1}\leq N}
Three-Parameter Atoms [ 編輯 ]
f
(
t
)
≈
f
^
(
t
)
=
∑
a
t
0
,
f
0
,
σ
φ
t
0
,
f
0
,
σ
(
t
)
{\displaystyle f(t)\approx {\hat {f}}(t)=\sum a_{t_{0},f_{0},\sigma }\varphi _{t_{0},f_{0},\sigma }(t)}
where
φ
t
0
,
f
0
,
σ
(
t
)
=
2
1
/
4
σ
1
/
2
e
j
2
π
f
0
t
−
π
(
t
−
t
0
)
2
σ
2
{\displaystyle \varphi _{t_{0},f_{0},\sigma }(t)={\frac {2^{1/4}}{\sigma ^{1/2}}}e^{j2\pi f_{0}t-{\frac {\pi (t-t_{0})^{2}}{\sigma ^{2}}}}}
近似訊號
f
^
{\displaystyle {\hat {f}}}
是
N
=
3
{\displaystyle N=3}
的特例,由三個基元組合而成,每個基元由
t
0
{\displaystyle t_{0}}
決定在時間軸上的中心位置,
f
0
{\displaystyle f_{0}}
決定在頻率軸上的中心位置,以及由
σ
{\displaystyle \sigma }
選擇縮放尺度的大小。
由於
φ
t
0
,
f
0
,
σ
{\displaystyle \varphi _{t_{0},f_{0},\sigma }}
是非正交集合,
a
t
0
,
f
0
,
σ
{\displaystyle a_{t_{0},f_{0},\sigma }}
需要透過匹配追求來求得。
Four-Parameter Atoms(Chirplet) [ 2] [ 編輯 ]
f
(
t
)
≈
f
^
(
t
)
=
∑
a
t
0
,
f
0
,
σ
,
η
⋅
φ
t
0
,
f
0
,
σ
,
η
(
t
)
{\displaystyle f(t)\approx {\hat {f}}(t)=\sum a_{t_{0},f_{0},\sigma ,\eta }\cdot \varphi _{t_{0},f_{0},\sigma ,\eta }(t)}
where
φ
t
0
,
f
0
,
σ
,
η
(
t
)
=
2
1
/
4
σ
1
/
2
e
j
2
π
(
f
0
t
+
η
2
t
2
)
−
π
(
t
−
t
0
)
2
σ
2
{\displaystyle \varphi _{t_{0},f_{0},\sigma ,\eta }(t)={\frac {2^{1/4}}{\sigma ^{1/2}}}e^{j2\pi (f_{0}t+{\frac {\eta }{2t^{2}}})-{\frac {\pi (t-t_{0})^{2}}{\sigma ^{2}}}}}
近似訊號
f
^
{\displaystyle {\hat {f}}}
是
N
=
4
{\displaystyle N=4}
的特例,由四個基元組合而成,每個基元由
t
0
{\displaystyle t_{0}}
決定在時間軸上的中心位置,
f
0
{\displaystyle f_{0}}
決定在頻率軸上的中心位置,以及
σ
{\displaystyle \sigma }
選擇縮放尺度的大小和
η
{\displaystyle \eta }
控制啁啾率。
同理,由於
φ
t
0
,
f
0
,
σ
,
η
{\displaystyle \varphi _{t_{0},f_{0},\sigma ,\eta }}
是非正交集合,
a
t
0
,
f
0
,
σ
,
η
{\displaystyle a_{t_{0},f_{0},\sigma ,\eta }}
需要透過匹配追求來求得。
1. Jian-Jiun Ding, Time frequency analysis and wavelet transform class note, Department of Electrical Engineering, National Taiwan University (NTU), Taipei, Taiwan, 2017.
^ Chen, S. S.; Donoho, D. L.; Saunders, M. A. Atomic Decomposition by Basis Pursuit. SIAM Journal on Scientific Computing. 1998, 20 (1): 33–61. doi:10.1137/S003614450037906X .
^ Bultan, A. A four-parameter atomic decomposition of chirplets. IEEE Transactions on Signal Processing. 1999, 47 (3): 731–745. doi:10.1109/78.747779 .