BinaryFBetaScore metric
Bases: FBetaScore
Computes F-Beta score on binary structures.
Formula:
This is the weighted harmonic mean of precision and recall.
Its output range is [0, 1]. It operates at a field level
and can be used for multi-class and multi-label classification.
Each field of y_true and y_pred should be booleans or floats between [0, 1].
If the fields are floats, it uses the threshold parameter for deciding
if the values are 0 or 1.
Example:
class MultiClassClassification(synalinks.DataModel):
label_1: bool = synalinks.Field(
description="The first label",
)
label_2: bool = synalinks.Field(
description="The second label",
)
label_3: bool = synalinks.Field(
description="The third label",
)
# OR you can also use floats between 0 and 1
# The `Score`, enforce a float between 0.0 and 1.0 using constrained decoding
class MultiClassClassification(synalinks.DataModel):
label_1: synalinks.Score = synalinks.Field(
description="The first label",
)
label_2: synalinks.Score = synalinks.Field(
description="The second label",
)
label_3: synalinks.Score = synalinks.Field(
description="The third label",
)
Compilation example:
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
average
|
str
|
Type of averaging to be performed across per-class results
in the multi-class case.
Acceptable values are |
None
|
beta
|
float
|
Determines the weight of given to recall
in the harmonic mean between precision and recall (see pseudocode
equation above). Defaults to |
1.0
|
threshold
|
float
|
(Optional) Float representing the threshold for deciding
whether prediction values are 1 or 0. Elements of |
0.5
|
name
|
str
|
(Optional) string name of the metric instance. |
'binary_fbeta_score'
|
in_mask
|
list
|
(Optional) list of keys to keep to compute the metric. |
None
|
out_mask
|
list
|
(Optional) list of keys to remove to compute the metric. |
None
|
in_mask_pattern
|
str
|
(Optional) Regex pattern; fields whose names match
are kept (combined with |
None
|
out_mask_pattern
|
str
|
(Optional) Regex pattern; fields whose names match
are dropped (combined with |
None
|
Source code in synalinks/src/metrics/f_score_metrics.py
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 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 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 | |
get_config()
Return the serializable config of the metric.
Returns:
| Type | Description |
|---|---|
dict
|
The config dict. |