deletion_risk_analysis
Deletion risk analysis for model references.
Provides functions to analyze models for deletion risk. Identifies issues like missing downloads, non-preferred hosts, low usage, etc.
UsageTrend
Bases: BaseModel
Usage trend metrics comparing different time periods.
Ratios help identify model momentum and activity patterns.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
model_config
class-attribute
instance-attribute
day_to_month_ratio
class-attribute
instance-attribute
Ratio of day usage to month usage (day/month). None if month usage is zero.
BackendVariationStats
Bases: BaseModel
Per-backend statistics for a text generation model in deletion risk context.
Provides breakdown of workers and usage by backend (aphrodite, koboldcpp, canonical). Used in ungrouped deletion risk view to show backend-specific details for each model.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
model_config
class-attribute
instance-attribute
variant_name
instance-attribute
Full model name as reported by Horde API (may include backend prefix).
worker_count
class-attribute
instance-attribute
Number of workers serving this backend variant.
performance
class-attribute
instance-attribute
Performance metric for this backend variant.
usage_day
class-attribute
instance-attribute
Usage count for the past day from this backend.
usage_month
class-attribute
instance-attribute
Usage count for the past month from this backend.
DeletionRiskFlags
Bases: BaseModel
Flags indicating potential reasons for model deletion.
Each flag represents a specific issue that might warrant model removal. Aligned with frontend expectations for consistent presentation.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
model_config
class-attribute
instance-attribute
zero_usage_day
class-attribute
instance-attribute
Model has no usage in the past day.
zero_usage_month
class-attribute
instance-attribute
Model has no usage in the past month.
zero_usage_total
class-attribute
instance-attribute
Model has no usage in total (all time).
no_active_workers
class-attribute
instance-attribute
Model has zero active workers (from Horde API data).
has_multiple_hosts
class-attribute
instance-attribute
Model downloads are distributed across multiple file hosts.
has_non_preferred_host
class-attribute
instance-attribute
Model is hosted on non-preferred file hosts (non-HuggingFace).
has_unknown_host
class-attribute
instance-attribute
Model has download URLs with unknown or unparseable hosts.
no_download_urls
class-attribute
instance-attribute
Model has no download URLs, empty download list, or invalid URLs.
missing_description
class-attribute
instance-attribute
Model lacks a description field.
missing_baseline
class-attribute
instance-attribute
Model lacks baseline information (for applicable categories).
low_usage
class-attribute
instance-attribute
Model has very low usage (threshold defined by LOW_USAGE_THRESHOLD constant).
any_flags
Check if any deletion risk flags are set.
Returns:
-
bool–True if at least one flag is set, False otherwise.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
flag_count
Count the number of flags set.
Returns:
-
int–Number of deletion risk flags that are True.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
FlagValidatorService
Service providing reusable flag validation methods.
All methods are static and stateless for efficient reuse.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
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 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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | |
validate_downloads
staticmethod
validate_downloads(
downloads: list[Any] | None,
preferred_hosts: list[str] | None = None,
category: MODEL_REFERENCE_CATEGORY | None = None,
) -> tuple[bool, bool, bool, bool]
Validate download URLs and return related flags.
Parameters:
-
downloads(list[Any] | None) –List of download records to validate.
-
preferred_hosts(list[str] | None, default:None) –List of preferred file hosts. If None, uses settings.
-
category(MODEL_REFERENCE_CATEGORY | None, default:None) –Model category - if text_generation and ignore setting is True, returns all False.
Returns:
-
tuple[bool, bool, bool, bool]–Tuple of (no_download_urls, has_multiple_hosts, has_non_preferred_host, has_unknown_host)
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
validate_description
staticmethod
validate_baseline
staticmethod
validate_statistics
staticmethod
validate_statistics(
statistics: CombinedModelStatistics | None,
category_total_usage: int,
low_usage_threshold: float | None = None,
category: MODEL_REFERENCE_CATEGORY | None = None,
) -> tuple[bool, bool, bool, bool, bool]
Validate Horde API statistics and usage data.
Parameters:
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
low_usage_threshold(float | None, default:None) –Percentage threshold for low usage. If None, uses settings default.
-
category(MODEL_REFERENCE_CATEGORY | None, default:None) –Model category for category-specific thresholds.
Returns:
-
tuple[bool, bool, bool, bool, bool]–Tuple of (zero_usage_day, zero_usage_month, zero_usage_total, no_active_workers, low_usage)
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
DeletionRiskFlagsBuilder
Builder for composing DeletionRiskFlags with type-safe methods.
Provides a fluent interface for setting flags without magic strings.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
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 402 403 404 405 | |
__init__
Initialize the builder with default flag values.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
with_download_flags
with_download_flags(
no_download_urls: bool,
has_multiple_hosts: bool,
has_non_preferred_host: bool,
has_unknown_host: bool,
) -> DeletionRiskFlagsBuilder
Set download-related flags.
Parameters:
-
no_download_urls(bool) –Whether model has no download URLs.
-
has_multiple_hosts(bool) –Whether downloads span multiple hosts.
-
has_non_preferred_host(bool) –Whether downloads use non-preferred hosts.
-
has_unknown_host(bool) –Whether any download URLs couldn't be parsed.
Returns:
-
DeletionRiskFlagsBuilder–Self for method chaining.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
with_missing_description
Set missing_description flag.
Parameters:
-
missing(bool) –Whether description is missing.
Returns:
-
DeletionRiskFlagsBuilder–Self for method chaining.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
with_missing_baseline
Set missing_baseline flag.
Parameters:
-
missing(bool) –Whether baseline is missing.
Returns:
-
DeletionRiskFlagsBuilder–Self for method chaining.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
with_statistics_flags
with_statistics_flags(
zero_usage_day: bool,
zero_usage_month: bool,
zero_usage_total: bool,
no_active_workers: bool,
low_usage: bool,
) -> DeletionRiskFlagsBuilder
Set statistics-related flags.
Parameters:
-
zero_usage_day(bool) –Whether day usage is zero.
-
zero_usage_month(bool) –Whether month usage is zero.
-
zero_usage_total(bool) –Whether total usage is zero.
-
no_active_workers(bool) –Whether worker count is zero.
-
low_usage(bool) –Whether usage is below threshold.
Returns:
-
DeletionRiskFlagsBuilder–Self for method chaining.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
build
Build the final DeletionRiskFlags object.
Returns:
-
DeletionRiskFlags–DeletionRiskFlags with all accumulated flag values.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
ModelDeletionRiskInfo
Bases: BaseModel
Deletion risk information for a single model.
Contains model metadata along with deletion risk assessment and usage statistics.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
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 | |
model_config
class-attribute
instance-attribute
deletion_risk_flags
instance-attribute
Flags indicating potential deletion risks.
risk_score
class-attribute
instance-attribute
Total number of deletion risk flags (0 = no risk).
worker_count
class-attribute
instance-attribute
Number of active workers serving this model.
usage_day
class-attribute
instance-attribute
Usage count for the past day.
usage_month
class-attribute
instance-attribute
Usage count for the past month.
usage_total
class-attribute
instance-attribute
Total usage count (all time).
usage_hour
class-attribute
instance-attribute
Usage count for the past hour (will be populated when alternative Horde API sources become available).
usage_minute
class-attribute
instance-attribute
Usage count for the past minute (will be populated when alternative Horde API sources become available).
usage_percentage_of_category
class-attribute
instance-attribute
Percentage of category's total monthly usage.
usage_trend
instance-attribute
Usage trend comparing different time periods.
cost_benefit_score
class-attribute
instance-attribute
Cost-benefit metric: usage per GB (usage_month / size_gb). Only for models with size info.
size_gb
class-attribute
instance-attribute
Model size in gigabytes (if available).
baseline
class-attribute
instance-attribute
Model baseline (if applicable).
nsfw
class-attribute
instance-attribute
Whether model is NSFW (if applicable).
has_description
class-attribute
instance-attribute
Whether model has a description.
download_count
class-attribute
instance-attribute
Number of download entries.
download_hosts
class-attribute
instance-attribute
List of download host domains.
backend_variations
class-attribute
instance-attribute
Per-backend statistics for text generation models (ungrouped view).
flag_count
property
is_critical
property
Determine if model is in critical state.
For text_generation: usage_month < threshold AND worker_count < threshold For other models: zero month usage AND no active workers (original logic)
Returns:
-
bool–True if model meets critical criteria.
has_warning
property
Determine if model has warning-level issues.
Warnings include host-related issues or download problems.
Returns:
-
bool–True if model has warning-level flags.
CategoryDeletionRiskSummary
Bases: BaseModel
Summary statistics for a category deletion risk analysis.
Aggregates deletion risk information across all models in a category.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
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 | |
model_config
class-attribute
instance-attribute
total_models
class-attribute
instance-attribute
Total number of models in the category.
models_at_risk
class-attribute
instance-attribute
Number of models with at least one deletion risk flag.
models_critical
class-attribute
instance-attribute
Number of models in critical state (zero month usage AND no workers).
models_with_warnings
class-attribute
instance-attribute
Number of models with warning-level issues (host/download problems).
models_with_zero_day_usage
class-attribute
instance-attribute
Number of models with zero usage in the past day.
models_with_zero_month_usage
class-attribute
instance-attribute
Number of models with zero usage in the past month.
models_with_zero_total_usage
class-attribute
instance-attribute
Number of models with zero usage all-time.
models_with_no_active_workers
class-attribute
instance-attribute
Number of models with no active workers.
models_with_no_downloads
class-attribute
instance-attribute
Number of models without download URLs.
models_with_non_preferred_hosts
class-attribute
instance-attribute
Number of models on non-preferred hosts.
models_with_multiple_hosts
class-attribute
instance-attribute
Number of models with downloads across multiple hosts.
models_with_low_usage
class-attribute
instance-attribute
Number of models with very low usage (< 0.1% of category).
average_risk_score
class-attribute
instance-attribute
Average risk score across all models.
category_total_month_usage
class-attribute
instance-attribute
Total monthly usage for the entire category.
from_risk_models
classmethod
Calculate summary statistics from risk models.
Parameters:
-
risk_models(list[ModelDeletionRiskInfo]) –List of ModelDeletionRiskInfo objects.
Returns:
-
CategoryDeletionRiskSummary–CategoryDeletionRiskSummary with aggregate statistics.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
CategoryDeletionRiskResponse
Bases: BaseModel
Complete deletion risk response for a category.
Contains both per-model deletion risk information and aggregate summary.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
model_config
class-attribute
instance-attribute
category_total_month_usage
class-attribute
instance-attribute
Total monthly usage for the entire category.
total_count
class-attribute
instance-attribute
Total number of models in the category (before pagination/filtering).
returned_count
class-attribute
instance-attribute
Number of models returned in this response (after pagination/filtering).
offset
class-attribute
instance-attribute
Starting index for pagination (0 if not paginated).
limit
class-attribute
instance-attribute
Maximum number of models per page (None if not paginated).
models
instance-attribute
List of deletion risk information for each model.
DeletionRiskFlagsHandler
Abstract handler for creating DeletionRiskFlags from specific model record types.
Subclasses should implement type-specific flag generation logic.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
can_handle
Check if this handler can process the given model record.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True if this handler can process the model record type.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_flags
create_flags(
*,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
) -> DeletionRiskFlags
Create DeletionRiskFlags for a model record.
Parameters:
-
model_record(GenericModelRecord) –The model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
Returns:
-
DeletionRiskFlags–DeletionRiskFlags object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
ImageGenerationDeletionRiskFlagsHandler
Bases: DeletionRiskFlagsHandler
Handler for image generation model deletion risk flags creation.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
can_handle
Check if this handler can process the given model record.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True if the model record is an ImageGenerationModelRecord.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
_create_flags_impl
_create_flags_impl(
model_record: ImageGenerationModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
) -> DeletionRiskFlags
Analyze an image generation model and determine deletion risk flags.
Parameters:
-
model_record(ImageGenerationModelRecord) –Typed image generation model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics (worker_count, usage_stats).
-
category_total_usage(int) –Total monthly usage for the category (for percentage calculations).
Returns:
-
DeletionRiskFlags–DeletionRiskFlags with appropriate flags set.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_flags
create_flags(
*,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
) -> DeletionRiskFlags
Create DeletionRiskFlags for an image generation model.
Parameters:
-
model_record(GenericModelRecord) –The image generation model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
Returns:
-
DeletionRiskFlags–DeletionRiskFlags object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
TextGenerationDeletionRiskFlagsHandler
Bases: DeletionRiskFlagsHandler
Handler for text generation model deletion risk flags creation.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
can_handle
Check if this handler can process the given model record.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True if the model record is a TextGenerationModelRecord.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
_create_flags_impl
_create_flags_impl(
model_record: TextGenerationModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
) -> DeletionRiskFlags
Analyze a text generation model and determine deletion risk flags.
Parameters:
-
model_record(TextGenerationModelRecord) –Typed text generation model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics (worker_count, usage_stats).
-
category_total_usage(int) –Total monthly usage for the category (for percentage calculations).
Returns:
-
DeletionRiskFlags–DeletionRiskFlags with appropriate flags set.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_flags
create_flags(
*,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
) -> DeletionRiskFlags
Create DeletionRiskFlags for a text generation model.
Parameters:
-
model_record(GenericModelRecord) –The text generation model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
Returns:
-
DeletionRiskFlags–DeletionRiskFlags object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
GenericDeletionRiskFlagsHandler
Bases: DeletionRiskFlagsHandler
Fallback handler for unsupported model record types.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
can_handle
Check if this handler can process the given model record.
This handler accepts all model records as a fallback.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True (accepts all model records).
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_flags
create_flags(
*,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
) -> DeletionRiskFlags
Create DeletionRiskFlags for a generic/unsupported model type.
Parameters:
-
model_record(GenericModelRecord) –The generic model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
Returns:
-
DeletionRiskFlags–DeletionRiskFlags object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
DeletionRiskFlagsFactory
Factory for creating DeletionRiskFlags objects with extensible handler support.
Handlers are registered and checked in order. The first handler that can process a model record type will be used to create the deletion risk flags.
Examples:
# Using default handlers
factory = DeletionRiskFlagsFactory.create_default()
flags = factory.create_flags(
model_record=image_model_record,
statistics=stats,
category_total_usage=10000,
)
# Adding custom handler
factory.register_handler(CustomDeletionRiskFlagsHandler())
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 | |
__init__
Initialize the factory with optional handlers.
Parameters:
-
handlers(list[DeletionRiskFlagsHandler] | None, default:None) –List of handlers to use. If None, no handlers are registered.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_default
classmethod
Create a factory with default handlers for standard model types.
Returns:
-
DeletionRiskFlagsFactory–DeletionRiskFlagsFactory with default handlers registered.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
register_handler
Register a new handler.
Handlers are checked in registration order. Register more specific handlers before generic ones.
Parameters:
-
handler(DeletionRiskFlagsHandler) –The handler to register.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_flags
create_flags(
*,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
) -> DeletionRiskFlags
Create DeletionRiskFlags for a model record using the appropriate handler.
Parameters:
-
model_record(GenericModelRecord) –The model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
Returns:
-
DeletionRiskFlags–DeletionRiskFlags object.
Raises:
-
ValueError–If no handler can process the model record type.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
ModelDeletionRiskInfoHandler
Abstract handler for creating ModelDeletionRiskInfo from specific model record types.
Subclasses should implement type-specific extraction and flag generation logic.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 | |
can_handle
Check if this handler can process the given model record.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True if this handler can process the model record type.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_risk_info
create_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Create ModelDeletionRiskInfo for a model record.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –The model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown (text models only).
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
_build_risk_info
staticmethod
_build_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
flags: DeletionRiskFlags,
baseline: str | None,
nsfw: bool | None,
size_bytes: int | None,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Build ModelDeletionRiskInfo from common components.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –Any model record type.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
flags(DeletionRiskFlags) –Deletion risk flags.
-
baseline(str | None) –Model baseline (if applicable).
-
nsfw(bool | None) –Whether model is NSFW (if applicable).
-
size_bytes(int | None) –Model size in bytes (if available).
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown.
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 | |
ImageGenerationModelDeletionRiskHandler
Bases: ModelDeletionRiskInfoHandler
Handler for image generation model deletion risk info creation.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 | |
__init__
Initialize the handler with optional flags factory.
Parameters:
-
flags_factory(DeletionRiskFlagsFactory | None, default:None) –Optional factory for creating deletion risk flags. If None, uses default factory.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
can_handle
Check if this handler can process the given model record.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True if the model record is an ImageGenerationModelRecord.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_risk_info
create_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Create ModelDeletionRiskInfo for an image generation model.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –The image generation model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
include_backend_variations(bool, default:False) –Ignored for image models (always False).
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
_build_risk_info
staticmethod
_build_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
flags: DeletionRiskFlags,
baseline: str | None,
nsfw: bool | None,
size_bytes: int | None,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Build ModelDeletionRiskInfo from common components.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –Any model record type.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
flags(DeletionRiskFlags) –Deletion risk flags.
-
baseline(str | None) –Model baseline (if applicable).
-
nsfw(bool | None) –Whether model is NSFW (if applicable).
-
size_bytes(int | None) –Model size in bytes (if available).
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown.
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 | |
TextGenerationModelDeletionRiskHandler
Bases: ModelDeletionRiskInfoHandler
Handler for text generation model deletion risk info creation.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 | |
__init__
Initialize the handler with optional flags factory.
Parameters:
-
flags_factory(DeletionRiskFlagsFactory | None, default:None) –Optional factory for creating deletion risk flags. If None, uses default factory.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
can_handle
Check if this handler can process the given model record.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True if the model record is a TextGenerationModelRecord.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_risk_info
create_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Create ModelDeletionRiskInfo for a text generation model.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –The text generation model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown.
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
_build_risk_info
staticmethod
_build_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
flags: DeletionRiskFlags,
baseline: str | None,
nsfw: bool | None,
size_bytes: int | None,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Build ModelDeletionRiskInfo from common components.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –Any model record type.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
flags(DeletionRiskFlags) –Deletion risk flags.
-
baseline(str | None) –Model baseline (if applicable).
-
nsfw(bool | None) –Whether model is NSFW (if applicable).
-
size_bytes(int | None) –Model size in bytes (if available).
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown.
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 | |
GenericModelDeletionRiskHandler
Bases: ModelDeletionRiskInfoHandler
Fallback handler for unsupported model record types.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 | |
can_handle
Check if this handler can process the given model record.
This handler accepts all model records as a fallback.
Parameters:
-
model_record(GenericModelRecord) –The model record to check.
Returns:
-
bool–True (accepts all model records).
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_risk_info
create_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Create ModelDeletionRiskInfo for a generic/unsupported model type.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –The generic model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
include_backend_variations(bool, default:False) –Ignored for generic models.
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
_build_risk_info
staticmethod
_build_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
flags: DeletionRiskFlags,
baseline: str | None,
nsfw: bool | None,
size_bytes: int | None,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Build ModelDeletionRiskInfo from common components.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –Any model record type.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
flags(DeletionRiskFlags) –Deletion risk flags.
-
baseline(str | None) –Model baseline (if applicable).
-
nsfw(bool | None) –Whether model is NSFW (if applicable).
-
size_bytes(int | None) –Model size in bytes (if available).
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown.
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 | |
ModelDeletionRiskInfoFactory
Factory for creating ModelDeletionRiskInfo objects with extensible handler support.
Handlers are registered and checked in order. The first handler that can process a model record type will be used to create the risk info.
Examples:
# Using default handlers
factory = ModelDeletionRiskInfoFactory.create_default()
risk_info = factory.create_risk_info(
model_name="my_model",
model_record=image_model_record,
statistics=stats,
category_total_usage=10000,
category=MODEL_REFERENCE_CATEGORY.image_generation,
)
# Adding custom handler
factory.register_handler(CustomModelRiskHandler())
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 | |
__init__
Initialize the factory with optional handlers.
Parameters:
-
handlers(list[ModelDeletionRiskInfoHandler] | None, default:None) –List of handlers to use. If None, no handlers are registered.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_default
classmethod
Create a factory with default handlers for standard model types.
Returns:
-
ModelDeletionRiskInfoFactory–ModelDeletionRiskInfoFactory with default handlers registered.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
register_handler
Register a new handler.
Handlers are checked in registration order. Register more specific handlers before generic ones.
Parameters:
-
handler(ModelDeletionRiskInfoHandler) –The handler to register.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_risk_info
create_risk_info(
*,
model_name: str,
model_record: GenericModelRecord,
statistics: CombinedModelStatistics | None,
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
include_backend_variations: bool = False,
) -> ModelDeletionRiskInfo
Create ModelDeletionRiskInfo for a model record using the appropriate handler.
Parameters:
-
model_name(str) –The model name.
-
model_record(GenericModelRecord) –The model record.
-
statistics(CombinedModelStatistics | None) –Optional Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown (text models only).
Returns:
-
ModelDeletionRiskInfo–ModelDeletionRiskInfo object.
Raises:
-
ValueError–If no handler can process the model record type.
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
analyze_models
analyze_models(
model_records: dict[str, GenericModelRecord]
| dict[str, ImageGenerationModelRecord]
| dict[str, TextGenerationModelRecord],
model_statistics: dict[str, CombinedModelStatistics],
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
include_backend_variations: bool = False,
) -> list[ModelDeletionRiskInfo]
Analyze model records and statistics to create deletion risk information.
Parameters:
-
model_records(dict[str, GenericModelRecord] | dict[str, ImageGenerationModelRecord] | dict[str, TextGenerationModelRecord]) –Dictionary of model names to typed model records.
-
model_statistics(dict[str, CombinedModelStatistics]) –Dictionary of model names to Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the entire category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown (text models only).
Returns:
-
list[ModelDeletionRiskInfo]–List of ModelDeletionRiskInfo sorted by usage (descending).
Source code in src/horde_model_reference/analytics/deletion_risk_analysis.py
create_deletion_risk_response
create_deletion_risk_response(
model_records: dict[str, GenericModelRecord]
| dict[str, ImageGenerationModelRecord]
| dict[str, TextGenerationModelRecord],
model_statistics: dict[str, CombinedModelStatistics],
category_total_usage: int,
category: MODEL_REFERENCE_CATEGORY,
include_backend_variations: bool = False,
) -> CategoryDeletionRiskResponse
Analyze models and create complete deletion risk response with summary.
Parameters:
-
model_records(dict[str, GenericModelRecord] | dict[str, ImageGenerationModelRecord] | dict[str, TextGenerationModelRecord]) –Dictionary of model names to typed model records.
-
model_statistics(dict[str, CombinedModelStatistics]) –Dictionary of model names to Horde API statistics.
-
category_total_usage(int) –Total monthly usage for the entire category.
-
category(MODEL_REFERENCE_CATEGORY) –The model reference category.
-
include_backend_variations(bool, default:False) –Whether to include per-backend breakdown (text models only).
Returns:
-
CategoryDeletionRiskResponse–CategoryDeletionRiskResponse with models and summary.