Normalization API
L1, L2, Max Normalizations
normalize
normalize(X: sparray, norm: str = 'l2', axis: int = 1, inplace: bool = False) -> sps.csr_array
Normalize a sparse matrix along rows or columns using L1, L2, or max-norm.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
sparray
|
Input sparse matrix. |
required |
norm
|
str
|
Normalization method ('l1', 'l2', or 'max'). |
'l2'
|
axis
|
int
|
Normalize rows (1) or columns (0). |
1
|
inplace
|
bool
|
Whether to modify the matrix in place. |
False
|
Returns:
| Type | Description |
|---|---|
csr_array
|
Normalized CSR matrix. |
Source code in similaripy/normalization.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | |
TF-IDF
tfidf
tfidf(X: sparray, axis: int = 1, logbase: float = e, tf_mode: str = 'sqrt', idf_mode: str = 'smooth', inplace: bool = False) -> sps.csr_array
Apply TF-IDF normalization to a sparse matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
sparray
|
Input sparse matrix. |
required |
axis
|
int
|
Normalize rows (1) or columns (0). |
1
|
logbase
|
float
|
Logarithm base. |
e
|
tf_mode
|
str
|
Term frequency mode. |
'sqrt'
|
idf_mode
|
str
|
Inverse document frequency mode. |
'smooth'
|
inplace
|
bool
|
Modify the matrix in place. |
False
|
Returns:
| Type | Description |
|---|---|
csr_array
|
TF-IDF normalized CSR matrix. |
Source code in similaripy/normalization.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | |
BM25
bm25
bm25(X: sparray, axis: int = 1, k1: float = 1.2, b: float = 0.75, logbase: float = e, tf_mode: str = 'raw', idf_mode: str = 'bm25', inplace: bool = False) -> sps.csr_array
Apply BM25 normalization to a sparse matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
sparray
|
Input sparse matrix. |
required |
axis
|
int
|
Normalize rows (1) or columns (0). |
1
|
k1
|
float
|
Term saturation parameter. |
1.2
|
b
|
float
|
Length normalization parameter. |
0.75
|
logbase
|
float
|
Logarithm base. |
e
|
tf_mode
|
str
|
Term frequency mode ('raw', 'log', 'sqrt', etc.). |
'raw'
|
idf_mode
|
str
|
Inverse document frequency mode ('bm25', 'smooth', etc.). |
'bm25'
|
inplace
|
bool
|
Modify the matrix in place. |
False
|
Returns:
| Type | Description |
|---|---|
csr_array
|
BM25-normalized CSR matrix. |
Source code in similaripy/normalization.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
BM25+
bm25plus
bm25plus(X: sparray, axis: int = 1, k1: float = 1.2, b: float = 0.75, delta: float = 1.0, logbase: float = e, tf_mode: str = 'raw', idf_mode: str = 'bm25', inplace: bool = False) -> sps.csr_array
Apply BM25+ normalization to a sparse matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
sparray
|
Input sparse matrix. |
required |
axis
|
int
|
Normalize rows (1) or columns (0). |
1
|
k1
|
float
|
Term saturation parameter. |
1.2
|
b
|
float
|
Length normalization parameter. |
0.75
|
delta
|
float
|
BM25+ boosting parameter. |
1.0
|
logbase
|
float
|
Logarithm base. |
e
|
tf_mode
|
str
|
Term frequency mode. |
'raw'
|
idf_mode
|
str
|
Inverse document frequency mode. |
'bm25'
|
inplace
|
bool
|
Modify the matrix in place. |
False
|
Returns:
| Type | Description |
|---|---|
csr_array
|
BM25+ normalized CSR matrix. |
Source code in similaripy/normalization.py
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | |