https://w3id.org/np/RA9UhFFrfgd2Uu4NfZsny8CxPYI-w5YdYgs8B41DKAIs0
.trig | .trig.txt | .jelly | .jelly.txt | .jsonld | .jsonld.txt | .nq | .nq.txt | .xml | .xml.txt
@prefix this: <https://w3id.org/np/RA9UhFFrfgd2Uu4NfZsny8CxPYI-w5YdYgs8B41DKAIs0> .
@prefix sub: <https://w3id.org/np/RA9UhFFrfgd2Uu4NfZsny8CxPYI-w5YdYgs8B41DKAIs0/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfg: <http://www.w3.org/2004/03/trix/rdfg-1/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix npx: <http://purl.org/nanopub/x/> .
sub:Head {
this: a np:Nanopublication;
np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo .
}
sub:assertion {
<https://doi.org/10.48550/arXiv.2503.16131> a prov:Entity;
dct:title "MKG-Rank: Enhancing Large Language Models with Knowledge Graph for Multilingual Medical Question Answering";
<http://purl.org/spar/cito/describes> <https://neverblink.eu/ontologies/llm-kg/methods#CachingMechanism>,
<https://neverblink.eu/ontologies/llm-kg/methods#DeclarativeConversion>, <https://neverblink.eu/ontologies/llm-kg/methods#MKGRank>,
<https://neverblink.eu/ontologies/llm-kg/methods#MultiAngleRanking>, <https://neverblink.eu/ontologies/llm-kg/methods#SelfInformationMining>,
<https://neverblink.eu/ontologies/llm-kg/methods#WordLevelTranslationMechanism>;
<http://purl.org/spar/cito/discusses> <https://neverblink.eu/ontologies/llm-kg/methods#BM25>,
<https://neverblink.eu/ontologies/llm-kg/methods#MedCPTCrossEncoder>, <https://neverblink.eu/ontologies/llm-kg/methods#UMLSBertEmbeddings> .
<https://neverblink.eu/ontologies/llm-kg/methods#BM25> a <http://purl.org/spar/fabio/Workflow>;
rdfs:label "BM25" .
<https://neverblink.eu/ontologies/llm-kg/methods#CachingMechanism> a <http://purl.org/spar/fabio/Workflow>;
dct:subject <https://neverblink.eu/ontologies/llm-kg/categories#KGEnhancedLLMInference>;
rdfs:comment "This mechanism optimizes the retrieval of external medical KGs by storing previously retrieved KGs in a local knowledge base. It significantly reduces retrieval times during LLM inference, directly contributing to the efficiency of the overall KG-enhanced LLM system.";
rdfs:label "Caching Mechanism";
<https://neverblink.eu/ontologies/llm-kg/hasTopCategory> <https://neverblink.eu/ontologies/llm-kg/top-categories#KGEnhancedLLM> .
<https://neverblink.eu/ontologies/llm-kg/methods#DeclarativeConversion> a <http://purl.org/spar/fabio/Workflow>;
dct:subject <https://neverblink.eu/ontologies/llm-kg/categories#KGEnhancedLLMInference>;
rdfs:comment "This mechanism converts raw medical KG triplets into LLM-digestible declarative sentences. It allows the LLM to better integrate and reason with external knowledge during inference, improving its ability to utilize the provided medical facts.";
rdfs:label "Declarative Conversion";
<https://neverblink.eu/ontologies/llm-kg/hasTopCategory> <https://neverblink.eu/ontologies/llm-kg/top-categories#KGEnhancedLLM> .
<https://neverblink.eu/ontologies/llm-kg/methods#MKGRank> a <http://purl.org/spar/fabio/Workflow>;
dct:subject <https://neverblink.eu/ontologies/llm-kg/categories#KGEnhancedLLMInference>;
<http://purl.org/spar/fabio/hasURL> "https://anonymous.4open.science/r/MKG-Rank-6B72"^^xsd:anyURI;
rdfs:comment "This framework enhances English-centric LLMs to perform multilingual medical QA by integrating comprehensive external medical knowledge graphs during the inference stage. It bridges language gaps and provides relevant, up-to-date knowledge to LLMs for better reasoning.";
rdfs:label "MKG-Rank";
<https://neverblink.eu/ontologies/llm-kg/hasTopCategory> <https://neverblink.eu/ontologies/llm-kg/top-categories#KGEnhancedLLM> .
<https://neverblink.eu/ontologies/llm-kg/methods#MedCPTCrossEncoder> a <http://purl.org/spar/fabio/Workflow>;
rdfs:label "MedCPT Cross Encoder" .
<https://neverblink.eu/ontologies/llm-kg/methods#MultiAngleRanking> a <http://purl.org/spar/fabio/Workflow>;
dct:subject <https://neverblink.eu/ontologies/llm-kg/categories#KGEnhancedLLMInference>;
rdfs:comment "This strategy selects the most relevant medical triplets from retrieved KGs by ranking them based on similarity with the question (using UMLS-BERT embeddings) and further filtering with a MedCPT Cross Encoder. It ensures the LLM receives high-quality, pertinent information for accurate inference.";
rdfs:label "Multi-Angle Ranking";
<https://neverblink.eu/ontologies/llm-kg/hasTopCategory> <https://neverblink.eu/ontologies/llm-kg/top-categories#KGEnhancedLLM> .
<https://neverblink.eu/ontologies/llm-kg/methods#SelfInformationMining> a <http://purl.org/spar/fabio/Workflow>;
dct:subject <https://neverblink.eu/ontologies/llm-kg/categories#KGEnhancedLLMInference>;
rdfs:comment "When external KG retrieval is ineffective, this method employs the BM25 algorithm to extract relevant world knowledge from the LLM's own internal representations. It acts as a fallback strategy to ensure the LLM consistently has background information for medical QA, enhancing its robustness during inference.";
rdfs:label "Self-Information Mining";
<https://neverblink.eu/ontologies/llm-kg/hasTopCategory> <https://neverblink.eu/ontologies/llm-kg/top-categories#KGEnhancedLLM> .
<https://neverblink.eu/ontologies/llm-kg/methods#UMLSBertEmbeddings> a <http://purl.org/spar/fabio/Workflow>;
rdfs:label "UMLS-BERT embeddings" .
<https://neverblink.eu/ontologies/llm-kg/methods#WordLevelTranslationMechanism> a
<http://purl.org/spar/fabio/Workflow>;
dct:subject <https://neverblink.eu/ontologies/llm-kg/categories#KGEnhancedLLMInference>;
rdfs:comment "This mechanism, part of MKG-Rank, extracts medical entities from multilingual questions and options using an LLM, then translates them into English. This enables the LLM to leverage English-centric KGs for multilingual QA, enhancing its performance during inference.";
rdfs:label "Word-level Translation Mechanism";
<https://neverblink.eu/ontologies/llm-kg/hasTopCategory> <https://neverblink.eu/ontologies/llm-kg/top-categories#KGEnhancedLLM> .
}
sub:provenance {
sub:assertion prov:wasAttributedTo <https://neverblink.eu/ontologies/llm-kg/agent>;
prov:wasDerivedFrom <https://doi.org/10.48550/arXiv.2503.16131> .
}
sub:pubinfo {
this: dct:created "2026-02-26T15:55:27.464Z"^^xsd:dateTime;
dct:creator <https://neverblink.eu/ontologies/llm-kg/agent>;
npx:hasNanopubType <https://neverblink.eu/ontologies/llm-kg/PaperAssessmentResult>;
rdfs:label "LLM-KG assessment for paper 10.48550/arXiv.2503.16131" .
sub:sig npx:hasAlgorithm "RSA";
npx:hasPublicKey "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwNz2QK3SEifno78S7+48zUB0xpTex3mAzW73ZimHqNcdEMU5/apslrGrTHGFAt/Chocgo++r6JQp5ygY7NyJHGWdaIqnt85pjX4PbNfLAvapyUO00qZP34fY61w4eZ9UMtleWEsmZKRtQPyJ8ODl46i/rfPuZlcJGpM9Nmy5mpGWuepqIEvF4a/t7pLVeCEDFSYXT+yaiygt6ynIK5f7TtEDhZpeUf/Q74WhMPJXm4yTU/hqOX4IW+50kWHNArGGZwUaXwzyG6M3Zd6UMModryGkLqS4H/MSE3ZA1Ylnms7BfWLEXhMWlaKi6HRV4nGRDLhxVSi9LSRi3LWKLhNIIQIDAQAB";
npx:hasSignature "N2UbPmY5xFtgVOnItcOMYoJbF1sO6k2Ix2/gm5wQngPckyNYrDlQPa5oii1fbKkm3cToZsokZDhdYD7t8Ut/TFP2VR8PNODfRBaVkrKb3N+WrJAwHCLyA3DzkBxww7zqv2B0eYlwJjmwdSNAFR+DyBvpj9SboJL58MX4b0nm//u4g+EwPehDRmlaXafGrMZnML5CUY0U1FkmBe4LlqSHBM+NtooVpnS2/nz1KA4BK7GxrB7xejXB2MZOtfh/OMh3B1b9aJ64uB1wdlVuJhPEmGabeXFepE6RxUo0huyMuwHR8NtEjogX+ZkD4qiYCycN/KbOlYi/rESa6e94J1O3fw==";
npx:hasSignatureTarget this:;
npx:signedBy <https://neverblink.eu/ontologies/llm-kg/agent> .
}