molfeat.trans.fp
FPVecFilteredTransformer
¶
Bases: FPVecTransformer
Fingerprint molecule transformer with columns filters applying to the featurized vector when fit
is called
Source code in molfeat/trans/fp.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
|
__init__(kind='ecfp:4', length=2000, occ_threshold=0, del_invariant=False, n_jobs=1, verbose=False, dtype=np.float32, **params)
¶
Molecular to vector featurization with filtering applied
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kind |
str
|
Name of the fingerprints (one supported fingerprints: see self.AVAILABLE_FPS). Defaults to "ecfp4". |
'ecfp:4'
|
length |
int
|
Length of the fingerprint. Defaults to 2000. |
2000
|
occ_threshold |
float
|
Minimum proportion a columns need to be non null to be kept. |
0
|
del_invariant |
bool
|
Whether to delete columns that are invariant. |
False
|
n_jobs |
int
|
Number of jobs. Defaults to 1. |
1
|
verbose |
bool
|
Verbosity level. Defaults to False. |
False
|
dtype |
Callable
|
Data type. Defaults to np.float32. |
float32
|
params |
dict
|
Any additional parameters to the fingerprint function |
{}
|
Source code in molfeat/trans/fp.py
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
|
fit(X, y=None, **fit_params)
¶
Fit the current transformer on given dataset.
The goal of fitting is for example to identify nan columns values that needs to be removed from the dataset
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
List[Union[Mol, str]]
|
input list of molecules |
required |
y |
list
|
Optional list of molecular properties. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
self |
MolTransformer instance after fitting |
Source code in molfeat/trans/fp.py
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
|
FPVecTransformer
¶
Bases: MoleculeTransformer
Molecular fingerprinter that computes various fingerprints and descriptors regularly used in QSAR modeling.
Note
For fingerprints with a radius parameter, you can provide the radius using the notation "fp:radius". For example "Morgan Circular 2" can be written as "morgan:2". Under the hood, morgan and ecfp fingerprints are equated with the proper radius/diameter adjustment.
For counting fingerprints, you just need to add the '-count' suffix to the name of the fingerprint. For example: "morgan-count:2"
Source code in molfeat/trans/fp.py
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 47 48 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 91 92 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 138 139 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 |
|
__init__(kind='ecfp:4', length=2000, n_jobs=1, verbose=False, dtype=np.float32, parallel_kwargs=None, **params)
¶
Molecular to vector fingerprinter
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kind |
str
|
Name of the fingerprints (one supported fingerprints: see self.AVAILABLE_FPS). Defaults to "ecfp4". |
'ecfp:4'
|
length |
int
|
Length of the fingerprint. Defaults to 2000. |
2000
|
n_jobs |
int
|
Number of jobs. Defaults to 1. |
1
|
verbose |
bool
|
Verbosity level. Defaults to False. |
False
|
dtype |
Callable
|
Data type. Defaults to np.float32. |
float32
|
parallel_kwargs |
dict
|
Optional arguments to pass to dm.parallelized when required. Defaults to None. |
None
|
params |
dict
|
Any additional parameters to the fingerprint function |
{}
|
Source code in molfeat/trans/fp.py
44 45 46 47 48 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 91 |
|
__len__()
¶
Compute featurizer length
Source code in molfeat/trans/fp.py
93 94 95 96 97 |
|