medcat.components.addons.meta_cat.ml_utils
Classes:
Functions:
-
create_batch_piped_data–Creates a batch given data and start/end that denote batch size,
-
eval_model–Evaluate a trained model on the provided data
-
predict–Predict on data used in the meta_cat.pipe
-
print_report–Prints some basic stats during training
-
set_all_seeds– -
split_list_train_test–Shuffle and randomly split data
-
train_model–Trains a LSTM model and BERT with autocheckpoints
Attributes:
EvalModelResults
module-attribute
EvalModelResults = TypedDict('EvalModelResults', {'precision': float, 'recall': float, 'f1': float, 'examples': dict, 'confusion matrix': DataFrame})
FocalLoss
FocalLoss(alpha=None, gamma=2)
Bases: Module
Methods:
-
forward–
Attributes:
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
180 181 182 183 | |
alpha
instance-attribute
alpha = alpha
gamma
instance-attribute
gamma = gamma
forward
forward(inputs, targets)
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
185 186 187 188 189 | |
create_batch_piped_data
create_batch_piped_data(data: list[tuple[list[int], int, Optional[int]]], start_ind: int, end_ind: int, device: Union[device, str], pad_id: int) -> tuple[Tensor, list[int], Tensor, Optional[Tensor]]
Creates a batch given data and start/end that denote batch size, will also add padding and move to the right device.
Parameters:
-
(datalist[tuple[list[int], int, Optional[int]]]) –Data in the format: [[<[input_ids]>,
, Optional[int]], ...], the third column is optional and represents the output label -
(start_indint) –Start index of this batch
-
(end_indint) –End index of this batch
-
(deviceUnion[device, str]) –Where to move the data
-
(pad_idint) –Padding index
Returns:
-
x(Tensor) –Same as data, but subsetted and as a tensor
-
cpos(list[int]) –Center positions for the data
-
attention_mask(Tensor) –Indicating padding mask for the data
-
y(Optional[Tensor]) –class label of the data
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
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 | |
eval_model
eval_model(model: Module, data: list, config: ConfigMetaCAT, tokenizer: TokenizerWrapperBase) -> EvalModelResults
Evaluate a trained model on the provided data
Parameters:
-
(modelModule) –The model.
-
(datalist) –The data.
-
(configConfigMetaCAT) –The MetaCAT config.
-
(tokenizerTokenizerWrapperBase) –The tokenizer.
Returns:
-
dict(EvalModelResults) –Results (precision, recall, f1, examples, confusion matrix)
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | |
predict
predict(model: Module, data: list[tuple[list[int], int, Optional[int]]], config: ConfigMetaCAT) -> tuple[list[int], list[float]]
Predict on data used in the meta_cat.pipe
Parameters:
-
(modelModule) –The model.
-
(datalist[tuple[list[int], int, Optional[int]]]) –Data in the format: [[
, ], ...] -
(configConfigMetaCAT) –Configuration for this meta_cat instance.
Returns:
-
predictions(list[int]) –For each row of input data a prediction
-
confidence(list[float]) –For each prediction a confidence value
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
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 | |
print_report
print_report(epoch: int, running_loss: list, all_logits: list, y: Any, name: str = 'Train') -> None
Prints some basic stats during training
Parameters:
-
(epochint) –Number of epochs.
-
(running_losslist) –The loss
-
(all_logitslist) –List of logits
-
(yAny) –The y array.
-
(namestr, default:'Train') –The name of the report. Defaults to Train.
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | |
set_all_seeds
set_all_seeds(seed: int) -> None
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
28 29 30 31 | |
split_list_train_test
Shuffle and randomly split data
Parameters:
-
(datalist) –The data.
-
(test_sizefloat) –The test size.
-
(shufflebool, default:True) –Whether to shuffle the data. Defaults to True.
Returns:
-
tuple(tuple) –The train data, and the test data.
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
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 | |
train_model
train_model(model: Module, data: list, config: ConfigMetaCAT, save_dir_path: Optional[str] = None) -> dict
Trains a LSTM model and BERT with autocheckpoints
Parameters:
-
(modelModule) –The model
-
(datalist) –The data.
-
(configConfigMetaCAT) –MetaCAT config.
-
(save_dir_pathOptional[str], default:None) –The save dir path if required. Defaults to None.
Returns:
-
dict(dict) –The classification report for the winner.
Raises:
-
Exception–If auto-save is enabled but no save dir path is provided.
Source code in medcat-v2/medcat/components/addons/meta_cat/ml_utils.py
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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | |