BERTSubs (Intra)
BERTSubsIntraPipeline(onto, config)
Class for the intra-ontology subsumption prediction setting of BERTSubs.
Attributes:
Name | Type | Description |
---|---|---|
onto |
Ontology
|
The target ontology. |
config |
CfgNode
|
The configuration for BERTSubs. |
sampler |
SubsumptionSample
|
The subsumption sampler for BERTSubs. |
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
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 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 |
|
score(samples)
The scoring function based on the fine-tuned BERT classifier.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
samples |
List[Tuple]
|
A list of input sentence pairs to be scored. |
required |
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
|
evaluate(target_subsumptions, test_type='test')
Test and calculate the metrics for a given list of subsumption pairs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_subsumptions |
List[Tuple]
|
A list of subsumption pairs. |
required |
test_type |
str
|
|
'test'
|
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
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 |
|
predict(target_subsumptions)
Predict a score for each given subsumption in the list.
The scores will be saved in test_subsumption_scores.csv
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_subsumptions |
List[List]
|
Each item is a list where the first element is a fixed ontology class \(C\), and the remaining elements are potential (candidate) super-classes of \(C\). |
required |
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
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 |
|
extract_subsumptions_from_ontology(onto, subsumption_type)
staticmethod
Extract target subsumptions from a given ontology.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
onto |
Ontology
|
The target ontology. |
required |
subsumption_type |
str
|
the type of subsumptions, options are |
required |
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
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 |
|
extract_restrictions_from_ontology(onto)
staticmethod
Extract basic existential restriction from an ontology.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
onto |
Ontology
|
The target ontology. |
required |
Returns:
Name | Type | Description |
---|---|---|
restrictions |
List
|
a list of existential restrictions. |
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
326 327 328 329 330 331 332 333 334 335 336 337 338 339 |
|
get_test_neg_candidates_restriction(subcls, max_neg_size, restrictions, onto)
staticmethod
Get a list of negative candidate class restrictions for testing.
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
341 342 343 344 345 346 347 348 349 350 351 |
|
get_test_neg_candidates_named_class(subclass, gt, max_neg_size, onto, max_depth=3, max_width=8)
staticmethod
Get a list of negative candidate named classes for testing.
Source code in src/deeponto/complete/bertsubs/pipeline_intra.py
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 |
|
SubsumptionSampler(onto, config)
Class for sampling functions for training the subsumption prediction model.
Attributes:
Name | Type | Description |
---|---|---|
onto |
Ontology
|
The target ontology. |
config |
CfgNode
|
The loaded configuration. |
named_classes |
Set[str]
|
IRIs of named classes that are not deprecated. |
iri_label |
Dict[str, List]
|
key -- class iris from |
restrictionObjects |
Set[OWLClassExpression]
|
Basic existential restrictions that appear in the ontology. |
restrictions |
set[str]
|
Strings of basic existential restrictions corresponding to |
restriction_label |
Dict[str
|
List]): key -- existential restriction string, value -- a list of existential restriction labels. |
verb |
OntologyVerbaliser
|
object for verbalisation. |
Source code in src/deeponto/complete/bertsubs/text_semantics.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 |
|
is_basic_existential_restriction(complex_class_str)
staticmethod
Determine if a complex class expression is a basic existential restriction.
Source code in src/deeponto/complete/bertsubs/text_semantics.py
75 76 77 78 79 80 81 82 83 |
|
generate_samples(subsumptions, duplicate=True)
Generate text samples from subsumptions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subsumptions |
List[List]
|
A list of subsumptions, each of which of is a two-component list |
required |
duplicate |
bool
|
|
True
|
Returns:
Type | Description |
---|---|
List[List]
|
A list of samples, each element is a triple
in the form of |
Source code in src/deeponto/complete/bertsubs/text_semantics.py
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 |
|
subsumptions_to_samples(subsumptions, sample_label)
Transform subsumptions into samples of strings.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subsumptions |
List[List]
|
The given subsumptions. |
required |
sample_label |
Union[int, None]
|
|
required |
Returns:
Type | Description |
---|---|
List[List]
|
A list of samples, each element is a triple
in the form of |
Source code in src/deeponto/complete/bertsubs/text_semantics.py
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 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 |
|
get_negative_sample(subclass_iri, subsumption_type='named_class')
Given a named subclass, get a negative class for a negative subsumption.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subclass_iri |
str
|
IRI of a given sub-class. |
required |
subsumption_type |
str
|
|
'named_class'
|
Source code in src/deeponto/complete/bertsubs/text_semantics.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
named_subsumption_to_str(subsum)
Transform a named subsumption into string with <SUB>
and classes' labels.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subsum |
List[Tuple]
|
A list of subsumption pairs in the form of |
required |
Source code in src/deeponto/complete/bertsubs/text_semantics.py
298 299 300 301 302 303 304 305 306 307 |
|
subclass_to_strings(subcls)
Transform a sub-class into strings (with the path or traversal context template).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subcls |
str
|
IRI of the sub-class. |
required |
Source code in src/deeponto/complete/bertsubs/text_semantics.py
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 |
|
supclass_to_strings(supcls, subsumption_type='named_class')
Transform a super-class into strings (with the path or traversal context template if the subsumption type is "named_class"
).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
supcls |
str
|
IRI of the super-class. |
required |
subsumption_type |
str
|
The type of the subsumption. |
'named_class'
|
Source code in src/deeponto/complete/bertsubs/text_semantics.py
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 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 |
|
traversal_subsumptions(cls, hop=1, direction='subclass', max_subsumptions=5)
Given a class, get its subsumptions by traversing the class hierarchy.
If the class is a sub-class in the subsumption axiom, get subsumptions from downside.
If the class is a super-class in the subsumption axiom, get subsumptions from upside.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cls |
str
|
IRI of a named class. |
required |
hop |
int
|
The depth of the path. |
1
|
direction |
str
|
|
'subclass'
|
max_subsumptions |
int
|
The maximum number of subsumptions to consider. |
5
|
Source code in src/deeponto/complete/bertsubs/text_semantics.py
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 |
|
path_subsumptions(cls, hop=1, direction='subclass')
Given a class, get its path subsumptions.
If the class is a sub-class in the subsumption axiom, get subsumptions from downside.
If the class is a super-class in the subsumption axiom, get subsumptions from upside.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cls |
str
|
IRI of a named class. |
required |
hop |
int
|
The depth of the path. |
1
|
direction |
str
|
|
'subclass'
|
Source code in src/deeponto/complete/bertsubs/text_semantics.py
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 |
|
BERTSubsumptionClassifierTrainer(bert_checkpoint, train_data, val_data, max_length=128, early_stop=False, early_stop_patience=10)
Source code in src/deeponto/complete/bertsubs/bert_classifier.py
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 |
|
add_special_tokens(tokens)
Add additional special tokens into the tokenizer's vocab.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tokens |
List[str]
|
additional tokens to add, e.g., |
required |
Source code in src/deeponto/complete/bertsubs/bert_classifier.py
60 61 62 63 64 65 66 67 |
|
train(train_args, do_fine_tune=True)
Initiate the Huggingface trainer with input arguments and start training.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
train_args |
TrainingArguments
|
Arguments for training. |
required |
do_fine_tune |
bool
|
|
True
|
Source code in src/deeponto/complete/bertsubs/bert_classifier.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
compute_metrics(pred)
staticmethod
Auxiliary function to add accurate metric into evaluation.
Source code in src/deeponto/complete/bertsubs/bert_classifier.py
88 89 90 91 92 93 94 95 |
|
load_dataset(data, max_length=512, count_token_size=False)
Load a Huggingface dataset from a list of samples.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
List[Tuple]
|
Data samples in a list. |
required |
max_length |
int
|
Maximum length of the input sequence. |
512
|
count_token_size |
bool
|
Whether or not to count the token sizes of the data. Defaults to |
False
|
Source code in src/deeponto/complete/bertsubs/bert_classifier.py
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 |
|
Created: January 13, 2023