Papers › Generating Medical Prescriptions with Conditional Transformer

Generating Medical Prescriptions with Conditional Transformer

30 Oct 2023arXiv:2310.19727archive 2025-07-28

Samuel Belkadi, Nicolo Micheletti, Lifeng Han, Warren Del-Pinto, Goran Nenadic

Access to real-world medication prescriptions is essential for medical research and healthcare quality improvement. However, access to real medication prescriptions is often limited due to the sensitive nature of the information expressed. Additionally, manually labelling these instructions for training and fine-tuning Natural Language Processing (NLP) models can be tedious and expensive. We introduce a novel task-specific model architecture, Label-To-Text-Transformer (\textbf{LT3}), tailored to generate synthetic medication prescriptions based on provided labels, such as a vocabulary list of medications and their attributes. LT3 is trained on a set of around 2K lines of medication prescriptions extracted from the MIMIC-III database, allowing the model to produce valuable synthetic medication prescriptions. We evaluate LT3's performance by contrasting it with a state-of-the-art Pre-trained Language Model (PLM), T5, analysing the quality and diversity of generated texts. We deploy the generated synthetic data to train the SpacyNER model for the Named Entity Recognition (NER) task over the n2c2-2018 dataset. The experiments show that the model trained on synthetic data can achieve a 96-98\% F1 score at Label Recognition on Drug, Frequency, Route, Strength, and Form. LT3 codes and data will be shared at \url{https://github.com/HECTA-UoM/Label-To-Text-Transformer}

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2310.19727")

Code

Syntology Ran 10 of 14 code samples harvested from 1 repository linked to this paper; 4 have no recorded run. Of those that ran: 3 ran · our draft was wrong; 7 ran with no contract checked.

By repository: official repository: 14 samples from 1 repository, 10 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

hecta-uom/label-to-text-transformer officialmentioned in papermentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 10 ran; 0 honoured the contract we drafted; 4 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

3ran · our draft was wrong
7ran
4unverified

Licence: 14 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from hecta-uom/label-to-text-transformer. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

Decoder hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran no licence file found · pointer only · d79f23e381bac349 · report
DecoderLayer hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran no licence file found · pointer only · 9a90009ebd92e479 · report
EncoderLayer hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran no licence file found · pointer only · 00b2d8f963115880 · report
MultiHeadAttention hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran no licence file found · pointer only · c1c52814e8545858 · report
PositionalEncoding hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran no licence file found · pointer only · 5dd0e5c7ed12cd76 · report
PositionwiseFeedForward hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran · metamorphic tier: invariant fingerprinted no licence file found · pointer only · fcc2d8bf7194efb7 · report
ScaledDotProductAttention hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran · metamorphic tier: deterministic no licence file found · pointer only · f55932fd8000cda8 · report
get_angles hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran · our draft was wrong no licence file found · pointer only · 73080156d02a4f89 · report
get_lookahead_mask hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository ran · our draft was wrong fingerprinted no licence file found · pointer only · acb6f9b17a58ef36 · report
get_pad_mask HECTA-UoM/Label-To-Text-Transformer/Models/EncDecTransformer/Modules.py official repository ran · our draft was wrong no licence file found · pointer only · 733cd4727b4ed611 · report
Encoder hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository unverified no licence file found · pointer only · c54d91337bee0490 · report
Transformer hecta-uom/label-to-text-transformer/Models/EncDecTransformer/Models.py official repository unverified no licence file found · pointer only · 0e9edcc3a4e00d45 · report
load_and_preprocess_data HECTA-UoM/Label-To-Text-Transformer/Modules/DataHelp.py official repository unverified no licence file found · pointer only · 84eaec28aee89722 · report
preprocessing HECTA-UoM/Label-To-Text-Transformer/Modules/DataHelp.py official repository unverified no licence file found · pointer only · 2ffa5ef1b40e1a7e · report

Tasks

2kLanguage ModellingNERNamed Entity RecognitionNamed Entity Recognition (NER)named-entity-recognition

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

AdafactorAttentionAttention DropoutBPEDense ConnectionsDropoutGated Linear UnitInverse Square Root ScheduleLayer NormalizationLinear LayerMulti-Head AttentionResidual ConnectionSETSentencePieceSoftmaxT5

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections