Entity¶
arkindex_worker.worker.entity ¶
ElementsWorker methods for entities.
Attributes¶
Classes¶
MissingEntityType ¶
Bases: Exception
Raised when the specified entity type was not found in the corpus and the worker cannot create it.
EntityMixin ¶
Functions¶
check_required_entity_types ¶
check_required_entity_types(
entity_types: list[str], create_missing: bool = True
)
Checks that every entity type needed is available in the corpus. Missing ones may be created automatically if needed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
entity_types |
list[str]
|
Entity type names to search. |
required |
create_missing |
bool
|
Whether the missing types should be created. Defaults to True. |
True
|
Raises:
Type | Description |
---|---|
MissingEntityType
|
When an entity type is missing and cannot create. |
Source code in arkindex_worker/worker/entity.py
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 |
|
create_entity ¶
create_entity(
name: str, type: str, metas=None, validated=None
)
Create an entity on the given corpus. If cache support is enabled, a CachedEntity will also be created.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Name of the entity. |
required |
type |
str
|
Type of the entity. |
required |
Source code in arkindex_worker/worker/entity.py
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 |
|
create_transcription_entity ¶
create_transcription_entity(
transcription: Transcription,
entity: str,
offset: int,
length: int,
confidence: float | None = None,
) -> dict[str, str | int] | None
Create a link between an existing entity and an existing transcription.
If cache support is enabled, a CachedTranscriptionEntity
will also be created.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
transcription |
Transcription
|
Transcription to create the entity on. |
required |
entity |
str
|
UUID of the existing entity. |
required |
offset |
int
|
Starting position of the entity in the transcription’s text, as a 0-based index. |
required |
length |
int
|
Length of the entity in the transcription’s text. |
required |
confidence |
float | None
|
Optional confidence score between 0 or 1. |
None
|
Returns:
Type | Description |
---|---|
dict[str, str | int] | None
|
A dict as returned by the |
Source code in arkindex_worker/worker/entity.py
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 |
|
create_transcription_entities ¶
create_transcription_entities(
transcription: Transcription,
entities: list[Entity],
batch_size: int = DEFAULT_BATCH_SIZE,
) -> list[dict[str, str]]
Create multiple entities attached to a transcription in a single API request.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
transcription |
Transcription
|
Transcription to create the entity on. |
required |
entities |
list[Entity]
|
List of dicts, one per element. Each dict can have the following keys: name (str) Required. Name of the entity. type_id (str) Required. ID of the EntityType of the entity. length (int) Required. Length of the entity in the transcription’s text. offset (int) Required. Starting position of the entity in the transcription’s text, as a 0-based index. confidence (float or None) Optional confidence score, between 0.0 and 1.0. |
required |
batch_size |
int
|
The size of each batch, which will be used to split the publication to avoid API errors. |
DEFAULT_BATCH_SIZE
|
Returns:
Type | Description |
---|---|
list[dict[str, str]]
|
List of dicts, with each dict having a two keys, |
Source code in arkindex_worker/worker/entity.py
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 |
|
list_transcription_entities ¶
list_transcription_entities(
transcription: Transcription,
worker_version: str | bool | None = None,
worker_run: str | bool | None = None,
)
List existing entities on a transcription This method does not support cache
Warns:¶
The following parameters are deprecated:
worker_version
in favor ofworker_run
Parameters:
Name | Type | Description | Default |
---|---|---|---|
transcription |
Transcription
|
The transcription to list entities on. |
required |
worker_version |
str | bool | None
|
Deprecated Restrict to entities created by a worker version with this UUID. Set to False to look for manually created entities. |
None
|
worker_run |
str | bool | None
|
Restrict to entities created by a worker run with this UUID. Set to False to look for manually created entities. |
None
|
Source code in arkindex_worker/worker/entity.py
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 |
|
list_corpus_entities ¶
list_corpus_entities(
name: str | None = None, parent: Element | None = None
)
List all entities in the worker’s corpus and store them in the self.entities
cache.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str | None
|
Filter entities by part of their name (case-insensitive) |
None
|
parent |
Element | None
|
Restrict entities to those linked to all transcriptions of an element and all its descendants. Note that links to metadata are ignored. |
None
|
Source code in arkindex_worker/worker/entity.py
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 |
|
list_corpus_entity_types ¶
list_corpus_entity_types()
Loads available entity types in corpus.
Source code in arkindex_worker/worker/entity.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
|