REVIEW 5 major objections 4 minor 40 references
Language Models as Ontology Encoders
T0 review · 5 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read OnT embeds EL ontologies by tuning a pretrained language model in hyperbolic space, preserving logical structure and beating prior methods on axiom prediction and inference.
desk verdict OnT is an empirically strong ontology embedding method, but the logical-preservation claim outruns the proof. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is a set of geometric-training losses in the Poincaré ball model of hyperbolic space: a hierarchy loss $\mathcal{L}_{\prec}$ that treats axioms $C \sqsubseteq D$ as a partial order (contrastive plus centripetal terms), a role loss $\mathcal{L}_r$ that identifies $x_{\exists r.D}$ with $f_r(x_D)$ through two opposite hierarchy losses, and a conjunction loss $\mathcal{L}_{\sqcap}$ that enforces $C \sqcap D \sqsubseteq C$ and $C \sqcap D \sqsubseteq D$. The role transformer $f_r(v) = k_r \odot (R(\Theta_r) \cdot v)$ is a rotation-scaling operation, and the axiom score $s(C \sqsubseteq D) = -(d_\kappa(x_C, x_D) + \lambda(\|x_D\|_\kappa - \|x_C\|_\kappa))$ combines hyperbolic distance with a norm-based penalty. These pieces together are what let the PLM embeddings carry both textual and formal-logical semantics.
What would settle it
Replace the compositional verbalizations with shuffled word sequences (same vocabulary, no grammatical relation) and rerun prediction and inference on GALEN, GO, and Uberon; if the metrics do not drop substantially, the specific semantics of the verbalization are not load-bearing for the reported gains.
Extended reading notes
Core claim
The central claim is that a pretrained language model can act as an ontology encoder for EL when its outputs are placed in a Poincaré ball and trained with losses that mirror the logic. Complex concepts are first verbalized compositionally ($C \sqcap D$ becomes "$C$ and $D$"; $\exists r.C$ becomes "something that $V(r)$ some $V(C)$"), then embedded by the PLM; subsumption axioms $C \sqsubseteq D$ are treated as a partial order on hyperbolic points and learned with a hierarchical contrastive plus centripetal loss. Roles are embedded as hyperbolic transformations $f_r(v) = k_r \odot (R(\Theta_r) \cdot v)$, and two extra losses align $f_r(x_D)$ with $x_{\exists r.D}$ and enforce $C \sqcap D \sqsubseteq C$, $C \sqcap D \sqsubseteq D$. Proposition 1 shows that when $k_r = 1$, rotations leave hyperbolic distances and norms invariant, which makes the score for $\exists r.C \sqsubseteq \exists r.D$ equal to that for $C \sqsubseteq D$ and thereby captures the deductive pattern $A \sqsubseteq B \Rightarrow \exists r.A \sqsubseteq \exists r.B$. The paper reports consistent state-of-the-art performance in axiom prediction and inference on GALEN, GO, and Uberon, with up to a sevenfold improvement in Mean Rank over prior methods on GO prediction.
Load-bearing premise
The load-bearing premise is that the automatically generated English sentences for complex concepts—such as "something that is parent of some person"—preserve enough of the EL semantics that a pretrained language model can embed them faithfully; the paper does not test how sensitive results are to verbalization quality.
Editorial extensions
If this is right
- Plausible new axioms, including inferred ones, can be ranked directly in vector space, supporting ontology completion and approximate reasoning without a separate classifier.
- Unseen entities can be embedded from their textual descriptions alone, which is what enables the reported transfer-learning behaviour across GALEN, GO, and Uberon.
- The rotation-based role model captures monotonicity of existential restrictions (if $A \sqsubseteq B$ then $\exists r.A \sqsubseteq \exists r.B$), a deductive pattern earlier LM-based embeddings lacked.
- The method can flag missing and erroneous direct subsumptions during real ontology construction, as demonstrated on SNOMED CT.
- Because OnT(w/o r) also outperforms most baselines, even the core hierarchy-plus-verbalization combination is a competitive option when role information is unavailable.
Reading between the lines
- The paper does not measure verbalization quality; if the English template were replaced by a semantically empty one, such as random word shuffles, with little change in results, that would suggest the PLM is mainly exploiting lexical overlap rather than compositional meaning.
- The choice of hyperbolic space may matter more than the PLM size: the ablation shows large gains over Euclidean-style geometric baselines but modest differences among three sentence-transformer models.
- The rotation-and-scaling role representation is untested on role inclusion axioms ($r \sqsubseteq s$) or role chains; extending the loss design to those patterns is a natural next step.
- The reported GO prediction gains (about a sevenfold Mean Rank improvement) may depend on the evaluation protocol of ranking over all atomic concepts; direct comparison with other papers should be done carefully.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces OnT, an approach to embedding EL ontologies that combines pretrained-language-model text representations with hyperbolic geometric constraints. Atomic concepts and roles are verbalized and encoded by a sentence transformer; complex concepts are embedded via compositional verbalization; roles are modeled as rotation-scaling transformations; and training uses a hierarchy loss together with role-alignment and conjunction losses. The method is evaluated on axiom prediction (held-out split) and axiom inference (entailed NF1 axioms) over GALEN, GO, and Uberon, reporting state-of-the-art results against geometric and text-based baselines, plus transfer-learning and SNOMED case studies.
Significance. If the empirical results hold, OnT is a useful engineering contribution: it combines textual semantics from PLMs with hyperbolic geometry for ontologies, and the released code and data should facilitate replication. The held-out prediction task is a clean evaluation of inductive ontology completion, and the reported gains, especially in mean rank, are substantial. However, the paper's central claim that OnT 'preserves logical relationships of EL' is not fully supported: Proposition 1 is an invariance statement about the role transformation, not a proof about the verbalized existential embeddings actually used in scoring, and the inference benchmark may be largely solvable from the norm-ordering term in the loss. The empirical comparisons would also be more convincing with error bars and validation of the re-implemented baselines.
major comments (5)
- [Section 4.3, Proposition 1, Eq. (4) and Eq. (6)] Proposition 1 only shows that the score s is invariant under the role transformation fr when kr=1. It does not relate fr(x_D) to the verbalization embedding x_{∃r.D}, which is the representation actually scored by Eq. (8) for existential concepts. The alignment loss in Eq. (6) is a pair of hierarchical losses with margins; it can be satisfied without exact equality between fr(x_D) and x_{∃r.D}, and kr is a learned parameter not constrained to 1. Consequently, the claimed preservation of the pattern A⊑B ⇒ ∃r.A⊑∃r.B is not guaranteed by the proof. Please either prove a bound under the actual training objective, report empirical distances between fr(x_D) and x_{∃r.D}, or reframe Proposition 1 as a design motivation rather than a preservation guarantee.
- [Section 4.3, Eq. (5) and Eq. (8); Section 5.3] The centripetal term in the hierarchy loss explicitly enforces ‖D‖κ < ‖C‖κ for every asserted subsumption C⊑D, and the scoring function in Eq. (8) contains the same norm-difference term. Along a chain C⊑D⊑E, transitivity follows from the norm ordering alone, so the strong inference results on entailed NF1 axioms may be largely driven by this term rather than by the role-alignment or conjunction losses. Table 3 is consistent with this concern: OnT(w/o r) is close to OnT on several inference metrics (e.g., GO H@100 39 vs 40, ANATOMY MR 499 vs 458). The authors should isolate the contribution of the role and conjunction losses to transitive inference, for example by ablating the norm-difference term in Eq. (8) or by measuring whether Eq. (6) actually brings fr(x_D) close to x_{∃r.D}.
- [Section 5.1] The experiments report no variance: each result appears to come from a single 80/10/10 split and a single run, with no error bars or significance tests. Given the large gains claimed in Table 2 (e.g., MR 1,121 vs 7,092 on GO), the absence of repeated-seed statistics makes it impossible to judge whether the state-of-the-art claim is robust. Please report means and standard deviations over multiple random splits and seeds, and ideally paired significance tests for the main comparisons.
- [Section 5.1] The geometric baselines (BoxEL, TransBox, ELBE, ELEM) were re-implemented rather than run from original code, and no validation against published numbers is provided. While the paper explains that dataset modifications require this, the re-implementations should be validated (e.g., by reproducing a previously reported score on a standard setting) and the re-implementation code should be clearly documented; otherwise the baselines may be unintentionally weaker than the original methods.
- [Section 4.1 and Section 6] All complex-concept embeddings are derived from the compositional verbalization templates V(C⊓D) = 'V(C) and V(D)' and V(∃r.C) = 'something that V(r) some V(C)', but the paper does not evaluate verbalization quality or sensitivity to alternative templates. The conclusion explicitly lists 'exploring the impact of verbalization quality' as future work, yet this is a load-bearing component of the method: any misrepresentation of the EL semantics in these strings propagates to all downstream scores. Please provide at least a qualitative evaluation of verbalization correctness or an ablation over template variants.
minor comments (4)
- [Table 3] In the ANATOMY column, the Box2EL row (0/1/7, 1, 11,801) is identical to the GO row, which is presumably a copy-paste error; please correct and re-verify all entries.
- [Section 5.3] The sentence 'incorporating role embeddings and losses for logical constraints allows OnT(w/o r) to achieve even better performance than both OnT and HiT' is contradictory; it should say 'omitting role embeddings' or similar.
- [Section 4.3] There are several typos, including 'on the other hand, in in Figure 2b' and 'where Dneg represents a randomly sampled concept' without specifying whether negatives are sampled from the ontology vocabulary or from all candidates; please clarify.
- [Section 5.3] The inference task evaluates only entailed NF1 axioms; the paper should justify this restriction and state whether the same conclusions would be expected for NF2–NF4 inferences, especially since those axiom types are present in the training data.
Circularity Check
Inference scores partly read out the fitted norm ordering, and Proposition 1 is a definitional identity that does not establish existential monotonicity.
-
fitted input called prediction
[Section 4.3 (Eq. 5, Eq. 8) and Section 5.1 (inference-task split)]
"The centripetal loss is defined as: Lcentri(x C ≺ x D) = max(0, ∥x D∥κ − ∥x C∥κ + β) ... the score ... s(C ⊑ D) := −(dκ(x C, x D) + λ(∥x D∥κ − ∥x C∥κ)) ... For the inference task, we use the whole ontology as the training data, and all the inferred axioms of NF1 as the testing data."
The centripetal loss trains every asserted subsumption C ⊑ D to make the parent norm smaller than the child norm, and the scoring function uses exactly the same norm difference λ(∥xD∥κ − ∥xC∥κ) as a positive confidence signal. Since the norm order is transitive, any entailed chain A ⊑ B ⊑ … ⊑ D inherits a positive score component for the unseen axiom A ⊑ D solely from the training constraints, so the inference score is in part a direct readout of the fitted norm ordering rather than an independent prediction. Moreover, because the test set is defined as all inferred NF1 axioms, the asserted NF1 axioms used as training data are themselves entailed and are not explicitly excluded, so part of the inference test set coincides with the training input by construction.
-
other
[Section 4.3, Proposition 1 and surrounding text]
"We have the following proposition that allows us to control the difference between scores s(fr(xC) ≺ fr(xD)) and s(xC ≺ xD) using the scaling factor kr, and thus, capturing the deductive pattern A ⊑ B ⇒ ∃r.A ⊑ ∃r.B."
When kr = 1, fr is a rotation and the score s depends only on hyperbolic distances and norms, both of which are rotation-invariant; the equality is therefore a definitional identity. The proposition never mentions x_{∃r.A} or x_{∃r.B}, the embeddings actually used by Eq. 8 for existential axioms; it only relates fr(xC) to fr(xD). The alignment loss Lr (Eq. 6) is two hierarchy losses with margins α, β and random negatives, so it can be minimized without making fr(xD) equal to x_{∃r.D}. Thus the claimed preservation of A ⊑ B ⇒ ∃r.A ⊑ ∃r.B is not derived from the proposition; it is an additional, unproved assumption of the loss. The first-principles result is essentially a tautology about rotation invariance plus an unsupported semantic leap.
full rationale
The prediction task is a clean held-out split: OnT trains on an 80% subset of axioms and ranks held-out candidates with Eq. 8, so the headline prediction numbers have independent content and are not circular. The inference task, however, is partly by construction: the centripetal component of L≺ (Eq. 5) directly enforces a norm ordering on asserted subsumptions, and Eq. 8 uses that same norm difference as a positive confidence term; the transitivity of the norm order then boosts entailed chains without any new evidence. In addition, Proposition 1 proves only rotation invariance of the score at kr = 1 and does not connect the role-transformed embedding fr(xD) to the verbalized existential embedding x_{∃r.D}; the existential monotonicity claim therefore rests on an unproved alignment assumption rather than on the proposition. These are real gaps, but they are not a full reduction of the central claim: the held-out prediction results, the ablations, and the comparisons against eight baselines still provide independent empirical support. Hence a moderate circularity score of 4 rather than a high one.
Assumptions & free parameters
free parameters (8)
- score weight lambda =
selected from {0, 0.1, ..., 1} on validation set
- contrastive margin alpha =
3.0
- centripetal margin beta =
0.5
- learning rate gamma =
1e-5
- role scaling factor k_r =
learned per role
- role rotation angles Theta_r =
learned per role
- number of negative samples =
1
- training epochs =
1
assumptions (5)
- domain assumption Verbalization V(C) preserves enough of the EL semantics of C for a PLM to embed it usefully.
- domain assumption The alignment loss L_r drives x_{∃r.D} close enough to f_r(x_D) for the rotation-invariance of the score to transfer to actual concept embeddings.
- standard math Rotation matrices in Eq. 4 act as valid hyperbolic isometries in the Poincare ball when k_r = 1.
- domain assumption The custom normalization of EL ontologies (introducing fresh atomic concepts) is logically faithful.
- domain assumption Entailed axioms not present in the training ontology form a valid and meaningful inference test set.
Cite this review
Pith. "Pith review of Language Models as Ontology Encoders." pith.science (2026). https://pith.science/paper/BLTGWVNR
@misc{pith2026250714334,
author = {Pith},
title = {Pith review of: Language Models as Ontology Encoders},
year = {2026},
howpublished = {\url{https://pith.science/paper/BLTGWVNR}},
note = {Machine review of arXiv:2507.14334}
}
read the original abstract
OWL (Web Ontology Language) ontologies which are able to formally represent complex knowledge and support semantic reasoning have been widely adopted across various domains such as healthcare and bioinformatics. Recently, ontology embeddings have gained wide attention due to its potential to infer plausible new knowledge and approximate complex reasoning. However, existing methods face notable limitations: geometric model-based embeddings typically overlook valuable textual information, resulting in suboptimal performance, while the approaches that incorporate text, which are often based on language models, fail to preserve the logical structure. In this work, we propose a new ontology embedding method OnT, which tunes a Pretrained Language Model (PLM) via geometric modeling in a hyperbolic space for effectively incorporating textual labels and simultaneously preserving class hierarchies and other logical relationships of Description Logic EL. Extensive experiments on four real-world ontologies show that OnT consistently outperforms the baselines including the state-of-the-art across both tasks of prediction and inference of axioms. OnT also demonstrates strong potential in real-world applications, indicated by its robust transfer learning abilities and effectiveness in real cases of constructing a new ontology from SNOMED CT. Data and code are available at https://github.com/HuiYang1997/OnT.
Figures
Figures from the paper (1 more)
Reference graph
Works this paper leans on
-
[1]
In: Shvaiko, P., Euzenat, J., Jiménez-Ruiz, E., Hassanzadeh, O., Trojahn, C
Amir, M., Baruah, M., Eslamialishah, M., Ehsani, S., Bahramali, A., Naddaf-Sh, S., Zarandioon, S.: Truveta mapper: a zero-shot ontology alignment framework. In: Shvaiko, P., Euzenat, J., Jiménez-Ruiz, E., Hassanzadeh, O., Trojahn, C. (eds.) Proceedings of the 18th International Workshop on Ontology Matching co-located with the 22nd International Semantic ...
work page 2023
-
[2]
Nature genetics25(1), 25–29 (2000)
Ashburner, M., Ball, C.A., Blake, J.A., Botstein, D., Butler, H., Cherry, J.M., Davis, A.P., Dolinski, K., Dwight, S.S., Eppig, J.T., et al.: Gene ontology: tool for the unification of biology. Nature genetics25(1), 25–29 (2000)
work page 2000
-
[3]
In: Kaelbling, L.P., Saffiotti, A
Baader, F., Brandt, S., Lutz, C.: Pushing the EL envelope. In: Kaelbling, L.P., Saffiotti, A. (eds.) IJCAI-05, Proceedings of the Nineteenth International Joint Conference on Artificial Intelligence, Edinburgh, Scotland, UK, July 30 - Au- gust 5, 2005. pp. 364–369. Professional Book Center (2005),http://ijcai.org/ Proceedings/05/Papers/0372.pdf
work page 2005
-
[4]
Baader, F., Gil, O.F.: Extending the description logic EL with threshold concepts induced by concept measures. Artif. Intell. 326, 104034 (2024). https://doi.org/10.1016/J.ARTINT.2023.104034, https://doi.org/10.1016/ j.artint.2023.104034
arXiv 2024
-
[5]
Baader, F., Horrocks, I., Sattler, U.: Description logics as ontology languages for the semantic web. In: Hutter, D., Stephan, W. (eds.) Mechanizing Mathematical Reasoning, Essays in Honor of Jörg H. Siekmann on the Occasion of His 60th Birth- day. Lecture Notes in Computer Science, vol. 2605, pp. 228–248. Springer (2005). https://doi.org/10.1007/978-3-54...
-
[6]
IEEE transactions on pattern analysis and machine intelligence 35(8), 1798–1828 (2013)
Bengio, Y., Courville, A., Vincent, P.: Representation learning: A review and new perspectives. IEEE transactions on pattern analysis and machine intelligence 35(8), 1798–1828 (2013)
2013
-
[7]
World Wide Web (WWW) 26(5), 2569–2591 (2023)
Chen, J., He, Y., Geng, Y., Jiménez-Ruiz, E., Dong, H., Horrocks, I.: Contextual semantic embeddings for ontology subsumption prediction. World Wide Web (WWW) 26(5), 2569–2591 (2023). https://doi.org/10.1007/ S11280-023-01169-9, https://doi.org/10.1007/s11280-023-01169-9
-
[8]
Chen, J., Hu, P., Jiménez-Ruiz, E., Holter, O.M., Antonyrajah, D., Horrocks, I.: Owl2vec*: embedding of OWL ontologies. Mach. Learn. 110(7), 1813–1845 (2021). https://doi.org/10.1007/S10994-021-05997-6, https://doi.org/10. 1007/s10994-021-05997-6
Show all 40 references
-
[9]
arXiv preprint arXiv:2406.10964 (2024)
Chen, J., Mashkova, O., Zhapa-Camacho, F., Hoehndorf, R., He, Y., Horrocks, I.: Ontology embedding: a survey of methods, applications and resources. arXiv preprint arXiv:2406.10964 (2024)
2024 arXiv
-
[10]
Studies in health technology and informatics121, 279 (2006)
Donnelly, K., et al.: Snomed-ct: The advanced terminology and coding system for ehealth. Studies in health technology and informatics121, 279 (2006)
2006
-
[11]
(eds.), handbook on ontolo- gies, series: International handbooks on information systems, second ed., vol
Fitz-Gerald, S.J., Wiggins, B.: Staab, s., studer, r. (eds.), handbook on ontolo- gies, series: International handbooks on information systems, second ed., vol. XIX (2009), 811 p., 121 illus., hardcover £164, ISBN: 978-3-540-70999-2. Int. J. Inf. Manag. 30(1), 98–100 (2010).ht...
2009 doi
-
[12]
In: Dy, J.G., Krause, A
Ganea, O., Bécigneul, G., Hofmann, T.: Hyperbolic entailment cones for learn- ing hierarchical embeddings. In: Dy, J.G., Krause, A. (eds.) Proceedings of the 18 Hui and Jianyan, et al. 35th International Conference on Machine Learning, ICML 2018, Stockholmsmäs- san, Stockholm,...
2018
-
[13]
In: Wallach, H.M., Larochelle, H., Beygelzimer, A., d’Alché-Buc, F., Fox, E.B., Garnett, R
Garg, D., Ikbal, S., Srivastava, S.K., Vishwakarma, H., Karanam, H.P., Subrama- niam, L.V.: Quantum embedding of knowledge for reasoning. In: Wallach, H.M., Larochelle, H., Beygelzimer, A., d’Alché-Buc, F., Fox, E.B., Garnett, R. (eds.) Ad- vances in Neural Information Process...
2019
-
[14]
In: Payne, T.R., Presutti, V., Qi, G., Poveda-Villalón, M., Stoilos, G., Hollink, L., Kaoudi, Z., Cheng, G., Li, J
Gosselin, F., Zouaq, A.: SORBET: A siamese network for ontology embeddings using a distance-based regression loss and BERT. In: Payne, T.R., Presutti, V., Qi, G., Poveda-Villalón, M., Stoilos, G., Hollink, L., Kaoudi, Z., Cheng, G., Li, J. (eds.) The Semantic Web - ISWC 2023 -...
2023 doi
-
[15]
He, Y., Chen, J., Antonyrajah, D., Horrocks, I.: Bertmap: A bert-based ontology alignment system. In: Thirty-Sixth AAAI Conference on Artificial Intelligence, AAAI 2022, Thirty-Fourth Conference on Innovative Applications of Artificial In- telligence, IAAI 2022, The Twelveth S...
2022 doi
-
[16]
Semantic Web 15(5), 1991–2004 (2024)
He, Y., Chen, J., Dong, H., Horrocks, I., Allocca, C., Kim, T., Sapkota, B.: Deep- onto: A python package for ontology engineering with deep learning. Semantic Web 15(5), 1991–2004 (2024)
2024
-
[17]
In: Globersons, A., Mackey, L., Belgrave, D., Fan, A., Pa- quet, U., Tomczak, J.M., Zhang, C
He, Y., Yuan, M., Chen, J., Horrocks, I.: Language models as hierar- chy encoders. In: Globersons, A., Mackey, L., Belgrave, D., Fan, A., Pa- quet, U., Tomczak, J.M., Zhang, C. (eds.) Advances in Neural Informa- tion Processing Systems 38: Annual Conference on Neural Informati...
2024
-
[18]
In: Chua, T., Ngo, C., Kumar, R., Lauw, H.W., Lee, R.K
Jackermeier, M., Chen, J., Horrocks, I.: Dual box embeddings for the description logic el++. In: Chua, T., Ngo, C., Kumar, R., Lauw, H.W., Lee, R.K. (eds.) Pro- ceedings of the ACM on Web Conference 2024, WWW 2024, Singapore, May 13-17,
2024
-
[19]
In: Proceedings of the Twenty-Eighth International Joint Conference on Artificial Intelligence
Kulmanov, M., Liu-Wei, W., Yan, Y., Hoehndorf, R.: EL embeddings: Geo- metric construction of models for the description logic EL++. In: Proceedings of the Twenty-Eighth International Joint Conference on Artificial Intelligence. pp. 6103–6109. International Joint Conferences o...
-
[20]
Briefings in bioinformatics22(4), bbaa199 (2021) Language Models as Ontology Encoders 19
Kulmanov, M., Smaili, F.Z., Gao, X., Hoehndorf, R.: Semantic similarity and ma- chine learning with ontologies. Briefings in bioinformatics22(4), bbaa199 (2021) Language Models as Ontology Encoders 19
2021
-
[21]
Graduate Texts in Mathematics, Springer Science & Business Media (2013)
Lee, J.: Introduction to Smooth Manifolds. Graduate Texts in Mathematics, Springer Science & Business Media (2013)
2013
-
[22]
Lee, J.M.: Riemannian manifolds: an introduction to curvature, vol. 176. Springer Science & Business Media (2006)
2006
- [23]
-
[24]
In: Martin, A., Hinkelmann, K., Fill, H., Gerber, A., Lenat, D., Stolle, R., van Harmelen, F
Mondal, S., Bhatia, S., Mutharaju, R.: Emel++: Embeddings for EL++ de- scription logic. In: Martin, A., Hinkelmann, K., Fill, H., Gerber, A., Lenat, D., Stolle, R., van Harmelen, F. (eds.) Proceedings of the AAAI 2021 Spring Sym- posium on Combining Machine Learning and Knowle...
2021
-
[25]
Genome biology13, 1–20 (2012)
Mungall, C.J., Torniai, C., Gkoutos, G.V., Lewis, S.E., Haendel, M.A.: Uberon, an integrative multi-species anatomy ontology. Genome biology13, 1–20 (2012)
2012
-
[26]
In: Guyon, I., von Luxburg, U., Bengio, S., Wallach, H.M., Fergus, R., Vishwanathan, S.V.N., Garnett, R
Nickel, M., Kiela, D.: Poincaré embeddings for learning hierarchical rep- resentations. In: Guyon, I., von Luxburg, U., Bengio, S., Wallach, H.M., Fergus, R., Vishwanathan, S.V.N., Garnett, R. (eds.) Advances in Neu- ral Information Processing Systems 30: Annual Conference on ...
2017
-
[27]
Peng, X., Tang, Z., Kulmanov, M., Niu, K., Hoehndorf, R.: Description logic EL++ embeddings with intersectional closure,http://arxiv.org/abs/2202.14018
-
[28]
In: Medical Informatics Europe’96, pp
Rector, A.L., Rogers, J.E., Pole, P.: The galen high level ontology. In: Medical Informatics Europe’96, pp. 174–178. IOS Press (1996)
1996
-
[29]
Bioinform
Smaili, F.Z., Gao, X., Hoehndorf, R.: Opa2vec: combining formal and informal con- tent of biomedical ontologies to improve similarity-based prediction. Bioinform. 35(12), 2133–2140 (2019). https://doi.org/10.1093/BIOINFORMATICS/BTY933, https://doi.org/10.1093/bioinformatics/bty933
2019 doi
-
[30]
arXiv preprint arXiv:2208.07628 (2022)
Tang, Z., Hinnerichs, T., Peng, X., Zhang, X., Hoehndorf, R.: Falcon: faithful neural semantic entailment over alc ontologies. arXiv preprint arXiv:2208.07628 (2022)
2022 arXiv
-
[31]
In: Guyon, I., von Luxburg, U., Bengio, S., Wallach, H.M., Fergus, R., Vishwanathan, S.V.N., Garnett, R
Vaswani,A.,Shazeer,N.,Parmar,N.,Uszkoreit,J.,Jones,L.,Gomez,A.N.,Kaiser, L., Polosukhin, I.: Attention is all you need. In: Guyon, I., von Luxburg, U., Bengio, S., Wallach, H.M., Fergus, R., Vishwanathan, S.V.N., Garnett, R. (eds.) Advances in Neural Information Processing Sys...
2017
-
[32]
Wang, X., Gao, T., Zhu, Z., Zhang, Z., Liu, Z., Li, J., Tang, J.: KEPLER: A unified model for knowledge embedding and pre-trained language representation. Trans. Assoc. Comput. Linguistics 9, 176–194 (2021). https://doi.org/10.1162/TACL_ A_00360, https://doi.org/10.1162/tacl_a_00360
2021 doi
-
[33]
Xiong, B., Potyka, N., Tran, T.K., Nayyeri, M., Staab, S.: Faithiful embeddings for EL++ knowledge bases,https://arxiv.org/abs/2201.09919v2
-
[34]
arXiv preprint arXiv:2501.17518 (2025) 20 Hui and Jianyan, et al
Yang, H., Chen, J.: Regd: Hierarchical embeddings via distances over geometric regions. arXiv preprint arXiv:2501.17518 (2025) 20 Hui and Jianyan, et al
2025 arXiv
-
[35]
In: THE WEB CONFERENCE 2025
Yang, H., Chen, J., Sattler, U.: Transbox:EL++-closed ontology embedding. In: THE WEB CONFERENCE 2025
2025
-
[36]
CoRR abs/1909.03193 (2019), http://arxiv.org/abs/1909.03193
Yao, L., Mao, C., Luo, Y.: KG-BERT: BERT for knowledge graph completion. CoRR abs/1909.03193 (2019), http://arxiv.org/abs/1909.03193
2019 arXiv
-
[37]
Zhapa-Camacho, F., Hoehndorf, R.: Cate: Embedding alc ontologies using category-theoretical semantics (2023)
2023
-
[38]
Bioinformatics39(1), btac811 (2023)
Zhapa-Camacho, F., Kulmanov, M., Hoehndorf, R.: mowl: Python library for ma- chine learning with biomedical ontologies. Bioinformatics39(1), btac811 (2023)
2023
-
[2021]
CEUR Workshop Proceedings, vol. 2846. CEUR-WS.org (2021), https: //ceur-ws.org/Vol-2846/paper19.pdf
2021
-
[2024]
2250–2258
pp. 2250–2258. ACM (2024).https://doi.org/10.1145/3589334.3645648, https://doi.org/10.1145/3589334.3645648
2024
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.