Normalization API
Basic Normalizations
L1, L2, Max Normalizations
Normalize a sparse matrix along rows or columns using L1, L2, or max-norm.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X
|
spmatrix
|
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_matrix
|
Normalized CSR matrix. |
Source code in similaripy/normalization.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
TF-IDF and BM25 Families
TF-IDF
Apply TF-IDF normalization to a sparse matrix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X
|
spmatrix
|
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_matrix
|
TF-IDF normalized CSR matrix. |
Source code in similaripy/normalization.py
140 141 142 143 144 145 146 147 148 149 150 151 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 |
|
BM25 Normalization
Apply BM25 normalization to a sparse matrix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X
|
spmatrix
|
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_matrix
|
BM25-normalized CSR matrix. |
Source code in similaripy/normalization.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
|
BM25+ Normalization
Apply BM25+ normalization to a sparse matrix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X
|
spmatrix
|
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_matrix
|
BM25+ normalized CSR matrix. |
Source code in similaripy/normalization.py
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
|