REVIEW 3 major objections 6 minor 1 cited by
Omni-DNA: A Unified Genomic Foundation Model for Cross-Modal and Multi-Task Learning
T0 review · 3 major / 6 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read Omni-DNA argues that a single family of autoregressive transformers, pretrained on DNA alone and finetuned once on many tasks, can match or beat task-specific genomic models and generate functional text and images from raw sequence.
desk verdict The benchmark story is plausible and useful, but the DNA2Func cross-modal claim is overclaimed: the evaluation only scores RNA type, not function. 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 two-stage recipe: next-token pretraining on DNA, then cross-modal multi-task finetuning. During finetuning the tokenizer's vocabulary is expanded with task-specific prompt and response tokens; a distribution-shift calculation (the paper's Eq. 3) shows that adding new tokens reduces every existing token's probability, and the paper counters this with Important Key Repetition, which replicates label tokens by a factor α, and with NEFTune noisy embeddings. A task-unification step rewrites every task as sequence + instruction → response tokens, and a VQ-VAE discretizes continuous outputs such as images into tokens so that DNA2Image becomes next-token generation. Architectural choices—RoPE over ALiBi, and a bias-free non-parametric LayerNorm on the two largest models—are part of what makes the pretraining stable enough for this unified finetuning to work.
What would settle it
Replace the LLM-written descriptions in Seq2Func with descriptions shuffled across sequences while keeping the same labels, then finetune and re-evaluate with the same LLM judge; if F1 and MCC stay near the reported values, the DNA2Func result reflects imitation of annotation style rather than sequence–function mapping.
Extended reading notes
Core claim
Omni-DNA is a family of autoregressive transformers (20M to 1B parameters) pretrained with next-token prediction on roughly 300 billion nucleotides drawn from a deduplicated multi-species DNA corpus. The paper's central claim is that after pretraining, expanding the tokenizer with task-specific prompt and response tokens and finetuning on several tasks at once produces a generalist genomic model: on the Nucleotide Transformer and Genomic Benchmark suites it reports state-of-the-art results on 18 of 26 tasks, with the 1B model reaching an average of 0.767 across the 18 NT tasks and the 116M model reaching 0.879 across the eight GB tasks. Finetuned jointly on ten acetylation and methylation tasks, the same 1B model reaches 0.739 average accuracy, above any of the separately finetuned single-task models. The paper further introduces two cross-modal tasks—DNA2Func, mapping sequences to natural-language functional descriptions, and Needle-in-DNA, mapping sequences to handwritten-digit images—and reports that Omni-DNA generates fluent function text and near-perfect digit images (macro F1 0.987) from sequence input, indicating that a single DNA-pretrained transformer can emit labels, text, and images.
Load-bearing premise
The cross-modal DNA2Func claim assumes the LLM-generated functional descriptions in Seq2Func actually reflect biology; if those texts only mirror the annotator's style, the DNA-to-text result may not demonstrate true functional understanding.
Editorial extensions
If this is right
- A single Omni-DNA model finetuned once on the ten histone acetylation and methylation tasks beats ten separately finetuned models, so the cost of finetuning and storing K task-specific models collapses to one model.
- Multi-task finetuning on biologically related tasks can improve average accuracy instead of sacrificing it, a synergistic effect that makes grouping related genomic tasks a practical strategy.
- Any continuous high-dimensional genomic output can be converted into a token-generation task through VQ-VAE discretization, so the same autoregressive model can in principle emit assay predictions or structures.
- DNA-to-text generation gives genomic models a free-form output channel, so functional annotation can become generative rather than limited to fixed label sets.
- Autoregressive next-token pretraining can match or beat bidirectional masked-language-model pretraining on standard genomic classification benchmarks, making the NTP paradigm a credible default for future genomic foundation models.
Reading between the lines
- Not tested in the paper: the same vocabulary-expansion and VQ-VAE recipe could be pointed at other continuous genomic outputs—RNA-seq coverage, chromatin profiles, or 3D structures—if a codebook can discretize them faithfully, making one model a general genomic encoder–decoder.
- The LLM-generated Seq2Func labels mean the DNA2Func result is only as strong as those synthetic texts' biological fidelity; a validation against experimentally curated functional annotations would separate sequence-based understanding from annotation-style imitation.
- The near-perfect Needle-in-DNA score suggests synthetic motif-to-image tasks can act as controlled probes for whether a pretrained model encodes specific motif patterns, an idea that could extend to de novo motif discovery by testing which sequences trigger which generated images.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Omni-DNA, a family of autoregressive transformer-based genomic foundation models (20M to 1B parameters) pretrained with next-token prediction on roughly 300 billion deduplicated nucleotides, followed by vocabulary expansion and multi-task finetuning. The authors report state-of-the-art results on 18 of 26 tasks across the Nucleotide Transformer (NT) and Genomic Benchmark (GB) suites, present a multi-task finetuning experiment on ten histone-related tasks, and introduce two cross-modal tasks: DNA2Func, which maps DNA sequences to textual functional descriptions, and Needle-in-DNA, which maps DNA sequences containing known motifs to handwritten-digit images. The stated goal is a generalist genomic model that can handle classification, text, and image outputs with a single finetuning procedure.
Significance. If the NT/GB benchmark results hold, the paper makes a useful empirical contribution by showing that a carefully configured next-token-prediction autoregressive model can match or exceed bidirectional MLM-based models on standard regulatory classification tasks, and the released model family is a practical resource. The multi-task finetuning result on ten histone tasks is interesting even though the gains are average-based rather than per-task. The cross-modal DNA2Func claim, however, is currently supported by an evaluation loop in which an LLM generates the functional text and a different LLM judges the output by assigning it to one of seven coarse RNA types; as presented, this does not demonstrate functional or gene-level understanding. The conventional benchmark contribution is therefore the strongest part of the paper, while the cross-modal generalization claim needs substantially more evidence or a more modest framing.
major comments (3)
- [§5.2, Appendix F, Table 12] The DNA2Func evaluation does not support the abstract's claim of mapping DNA sequences to textual functional descriptions. The Seq2Func dataset is constructed by taking RefSeq sequences already labeled with seven RNA types, asking an LLM annotator to expand those labels into fluent text, and then scoring generated text with a GPT-4o judge that classifies it back into the same seven labels. Table 12 makes the gap concrete: for an input whose ground truth is 'mRNA:CD209/DC-SIGN', Omni-DNA@ft produces a fluent description of CCL22; because CCL22 is also an mRNA, the output is counted as correct at the type level even though the specific function is wrong. A model that emits class-conditioned fluent text on the basis of coarse sequence features could reproduce the reported F1/MCC without knowing which gene or biological process is present. I therefore do not regard the cross-modal functional-understanding claim as established. Please add a gene-level or entity-level evaluation (e.g., exact gene-name matching, human assessment of biological correctness), report the reliability and variance of the LLM judge, or explicitly reframe the task as seven-way type-conditional text generation rather than functional description generation.
- [Abstract; §5.1, Table 4] The claim that multi-task finetuning 'surpasses models trained on each task individually' is stronger than the data show. In Table 4, Omni-DNA@mult. achieves the highest average accuracy (0.739 vs. 0.694 for Omni-DNA@sgl.) but wins on only 4 of 10 tasks and is worse than the single-task model on H3, H3K36ME3, H3K4ME1, H3K79ME3, H3K9AC, and H4. The abstract and Section 5.1 should be rephrased to say that multi-task finetuning improves average accuracy and can be synergistic on some tasks, with the per-task trade-offs discussed explicitly.
- [§4.1, §4.2, Appendix D, Tables 8-9] The headline 'state-of-the-art on 18 out of 26 tasks' should be qualified. The comparison mixes numbers reported by other papers with numbers produced by this paper's own finetuning pipeline; for the three splice-site tasks Omni-DNA is below NT models, and the 18/26 count combines 13/18 on NT and 5/8 on GB using different sizes of the Omni-DNA family. Please state explicitly which baseline numbers were produced with the identical pipeline in this paper, report the 18/26 count as a comparison against published baselines under the Caduceus evaluation setup rather than as an unconditional SOTA claim, and give a per-model-size breakdown so readers can see which Omni-DNA size attains each SOTA.
minor comments (6)
- [§3.2] The text cites 'NEFTune (Press et al., 2021)'; NEFTune is Jain et al. (2023), while Press et al. is the ALiBi reference. Please correct the citation.
- [§5.2 vs. Appendix F] Section 5.2 states the Seq2Func dataset contains 330,000 sequences, while Appendix F's final composition says 300,000 DNA-function pairs; the counts should be reconciled.
- [Table 14] The ground-truth label 'nRNA:U6 spliceosomal RNA' should read 'snRNA'.
- [Table 9] Several entries use '+' where the intended symbol is '±' (e.g., 0.525 + 0.019, 0.407 + 0.041, 0.795 + 0.091, 0.945 + 0.016, 0.927 + 0.023); please fix the typesetting.
- [§5.3] The Needle-in-DNA human evaluation reports two annotators but does not report inter-annotator agreement or how many samples were discarded as inconsistent; please provide these statistics.
- [Conclusion] The conclusion contains the typo 'DNA2Funtion'; it should be 'DNA2Function'.
Assumptions & free parameters
free parameters (4)
- NEFTune noise level beta =
5
- Key token replication factor alpha =
10
- VQ-VAE codebook size K =
6
- VQ-VAE compression ratio r =
4
assumptions (5)
- domain assumption BPE tokenization on DNA with 4096 vocab and vocabulary expansion does not destroy functional signal.
- domain assumption The deduplicated NCBI multi-species genome dataset is a sufficient pretraining corpus for learning generalizable genomic representations.
- domain assumption Autoregressive next-token prediction on DNA captures genomic syntax relevant to downstream tasks.
- ad hoc to paper LLM-generated functional annotations in Seq2Func are acceptable ground truth for DNA function.
- domain assumption The VQ-VAE discretization preserves task-relevant information for image generation.
Cite this review
Pith. "Pith review of Omni-DNA: A Unified Genomic Foundation Model for Cross-Modal and Multi-Task Learning." pith.science (2026). https://pith.science/paper/R37X2X5W
@misc{pith2026250203499,
author = {Pith},
title = {Pith review of: Omni-DNA: A Unified Genomic Foundation Model for Cross-Modal and Multi-Task Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/R37X2X5W}},
note = {Machine review of arXiv:2502.03499}
}
read the original abstract
Large Language Models (LLMs) demonstrate remarkable generalizability across diverse tasks, yet genomic foundation models (GFMs) still require separate finetuning for each downstream application, creating significant overhead as model sizes grow. Moreover, existing GFMs are constrained by rigid output formats, limiting their applicability to various genomic tasks. In this work, we revisit the transformer-based auto-regressive models and introduce Omni-DNA, a family of cross-modal multi-task models ranging from 20 million to 1 billion parameters. Our approach consists of two stages: (i) pretraining on DNA sequences with next token prediction objective, and (ii) expanding the multi-modal task-specific tokens and finetuning for multiple downstream tasks simultaneously. When evaluated on the Nucleotide Transformer and GB benchmarks, Omni-DNA achieves state-of-the-art performance on 18 out of 26 tasks. Through multi-task finetuning, Omni-DNA addresses 10 acetylation and methylation tasks at once, surpassing models trained on each task individually. Finally, we design two complex genomic tasks, DNA2Function and Needle-in-DNA, which map DNA sequences to textual functional descriptions and images, respectively, indicating Omni-DNA's cross-modal capabilities to broaden the scope of genomic applications. All the models are available through https://huggingface.co/collections/zehui127
Figures
Figures from the paper (7 more)
Forward citations
Cited by 1 Pith paper
-
Frozen but Not Always Accessible: A Representation Analysis of Genomic Language Models
Frozen genomic language model embeddings recover most fine-tuned performance on promoter tasks (95-100%) but only 60-88% on splice-site tasks, a gap that persists across readouts and model families.
Reference graph
Works this paper leans on
-
[1]
J., Bambrick, J., et al
Abramson, J., Adler, J., Dunger, J., Evans, R., Green, T., Pritzel, A., Ronneberger, O., Willmore, L., Ballard, A. J., Bambrick, J., et al. Accurate structure prediction of biomolecular interactions with alphafold 3. Nature, pp.\ 1--3, 2024
2024
-
[2]
Alipanahi, B., Delong, A., Weirauch, M. T., and Frey, B. J. Predicting the sequence specificities of dna-and rna-binding proteins by deep learning. Nature Biotechnology, 33 0 (8): 0 831--838, 2015
work page 2015
-
[3]
Andrews, G., Fan, K., Pratt, H. E., Phalke, N., , Z. C., Karlsson, E. K., Lindblad-Toh, K., Gazal, S., Moore, J. E., Weng, Z., et al. Mammalian evolution of human cis-regulatory elements and transcription factor binding sites. Science, 380 0 (6643): 0 eabn7930, 2023
work page 2023
-
[4]
R., Grabska-Barwinska, A., Taylor, K
Avsec, Z ., Agarwal, V., Visentin, D., Ledsam, J. R., Grabska-Barwinska, A., Taylor, K. R., Assael, Y., Jumper, J., Kohli, P., and Kelley, D. R. Effective gene expression prediction from sequence by integrating long-range interactions. Nature methods, 18 0 (10): 0 1196--1203, 2021 a
work page 2021
-
[5]
Base-resolution models of transcription-factor binding reveal soft motif syntax
Avsec, Z ., Weilert, M., Shrikumar, A., Krueger, S., Alexandari, A., Dalal, K., Fropf, R., McAnany, C., Gagneur, J., Kundaje, A., et al. Base-resolution models of transcription-factor binding reveal soft motif syntax. Nature genetics, 53 0 (3): 0 354--366, 2021 b
work page 2021
-
[6]
Ba, J. L. Layer normalization. arXiv preprint arXiv:1607.06450, 2016
arXiv 2016
-
[7]
S., and Song, Y
Benegas, G., Batra, S. S., and Song, Y. S. Dna language models are powerful predictors of genome-wide variant effects. Proceedings of the National Academy of Sciences, 120 0 (44): 0 e2311219120, 2023
2023
-
[8]
H., Zielinski, M., Sargeant, T., et al
Cheng, J., Novati, G., Pan, J., Bycroft, C., Z emgulyt \.e , A., Applebaum, T., Pritzel, A., Wong, L. H., Zielinski, M., Sargeant, T., et al. Accurate proteome-wide missense variant effect prediction with alphamissense. Science, 381 0 (6664): 0 eadg7492, 2023
work page 2023
Show all 54 references
-
[9]
Dnalongbench: A benchmark suite for long-range dna prediction tasks
Cheng, W., Song, Z., Zhang, Y., Wang, S., Wang, D., Yang, M., Li, L., and Ma, J. Dnalongbench: A benchmark suite for long-range dna prediction tasks. bioRxiv, pp.\ 2025--01, 2025
2025
-
[10]
H., Oteri, F., Dallago, C., Trop, E., de Almeida, B
Dalla-Torre, H., Gonzalez, L., Mendoza-Revilla, J., Lopez Carranza, N., Grzywaczewski, A. H., Oteri, F., Dallago, C., Trop, E., de Almeida, B. P., Sirelkhatim, H., et al. Nucleotide transformer: building and evaluating robust foundation models for human genomics. Nature Method...
2024
-
[11]
P., Dalla-Torre, H., Richard, G., Blum, C., Hexemer, L., G \'e lard, M., Mendoza-Revilla, J., Pandey, P., Laurent, S., Lopez, M., et al
de Almeida, B. P., Dalla-Torre, H., Richard, G., Blum, C., Hexemer, L., G \'e lard, M., Mendoza-Revilla, J., Pandey, P., Laurent, S., Lopez, M., et al. Segmentnt: annotating the genome at single-nucleotide resolution with dna foundation models. bioRxiv, pp.\ 2024--03, 2024
2024
-
[12]
Genomic benchmarks: a collection of datasets for genomic sequence classification
Gre s ov \'a , K., Martinek, V., C ech \'a k, D., S ime c ek, P., and Alexiou, P. Genomic benchmarks: a collection of datasets for genomic sequence classification. BMC Genomic Data, 24 0 (1): 0 25, 2023
2023
-
[13]
H., Ivison, H., Magnusson, I., Wang, Y., et al
Groeneveld, D., Beltagy, I., Walsh, P., Bhagia, A., Kinney, R., Tafjord, O., Jha, A. H., Ivison, H., Magnusson, I., Wang, Y., et al. Olmo: Accelerating the science of language models. arXiv preprint arXiv:2402.00838, 2024
2024 arXiv
-
[14]
and Dao, T
Gu, A. and Dao, T. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752, 2023
2023 arXiv
-
[15]
Initializing new word embeddings for pretrained language models
Hewitt, J. Initializing new word embeddings for pretrained language models. URL: https:/nlp. stanford. edu/\ johnhew//vocab-expansion. html , 2021
2021
-
[16]
R., Kailkhura, B., Schwarzschild, A., Saha, A., et al
Jain, N., Chiang, P.-y., Wen, Y., Kirchenbauer, J., Chu, H.-M., Somepalli, G., Bartoldson, B. R., Kailkhura, B., Schwarzschild, A., Saha, A., et al. Neftune: Noisy embeddings improve instruction finetuning. arXiv preprint arXiv:2310.05914, 2023
-
[17]
Lambert, N., Morrison, J., Pyatkin, V., Huang, S., Ivison, H., Brahman, F., Miranda, L. J. V., Liu, A., Dziri, N., Lyu, S., et al. T " ulu 3: Pushing frontiers in open language model post-training. arXiv preprint arXiv:2411.15124, 2024
2024 arXiv
-
[18]
Genomic data resources: challenges and promises
Lathe, W., Williams, J., Mangan, M., and Karolchik, D. Genomic data resources: challenges and promises. Nature Education, 1 0 (3): 0 2, 2008
2008
-
[19]
Li, S., Wang, Z., Liu, Z., Wu, D., Tan, C., Zheng, J., Huang, Y., and Li, S. Z. Vqdna: Unleashing the power of vector quantization for multi-species genomic sequence modeling. arXiv preprint arXiv:2405.10812, 2024 a
2024 arXiv
-
[20]
Gv-rep: A large-scale dataset for genetic variant representation learning
Li, Z., Subasri, V., Stan, G.-B., Zhao, Y., and Wang, B. Gv-rep: A large-scale dataset for genetic variant representation learning. arXiv preprint arXiv:2407.16940, 2024 b
2024 arXiv
-
[21]
Linder, J., Srivastava, D., Yuan, H., Agarwal, V., and Kelley, D. R. Predicting rna-seq coverage from dna sequence as a unifying model of gene regulation. Nature Genetics, pp.\ 1--13, 2025
2025
-
[22]
Reframing instructional prompts to gptk's language
Mishra, S., Khashabi, D., Baral, C., Choi, Y., and Hajishirzi, H. Reframing instructional prompts to gptk's language. arXiv preprint arXiv:2109.07830, 2021
2021 arXiv
-
[23]
Hyenadna: Long-range genomic sequence modeling at single nucleotide resolution
Nguyen, E., Poli, M., Faizi, M., Thomas, A., Wornow, M., Birch-Sykes, C., Massaroli, S., Patel, A., Rabideau, C., Bengio, Y., et al. Hyenadna: Long-range genomic sequence modeling at single nucleotide resolution. Advances in neural information processing systems, 36, 2024
2024
-
[24]
Oubounyt, M., Louadi, Z., Tayara, H., and Chong, K. T. Deepromoter: robust promoter predictor using deep learning. Frontiers in genetics, 10: 0 286, 2019
2019
-
[25]
Byte latent transformer: Patches scale better than tokens
Pagnoni, A., Pasunuru, R., Rodriguez, P., Nguyen, J., Muller, B., Li, M., Zhou, C., Yu, L., Weston, J., Zettlemoyer, L., et al. Byte latent transformer: Patches scale better than tokens. arXiv preprint arXiv:2412.09871, 2024
2024 arXiv
-
[26]
K., Harbison, C
Pokholok, D. K., Harbison, C. T., Levine, S., Cole, M., Hannett, N. M., Lee, T. I., Bell, G. W., Walker, K., Rolfe, P. A., Herbolsheimer, E., et al. Genome-wide map of nucleosome acetylation and methylation in yeast. Cell, 122 0 (4): 0 517--527, 2005
2005
-
[27]
A., and Lewis, M
Press, O., Smith, N. A., and Lewis, M. Train short, test long: Attention with linear biases enables input length extrapolation. arXiv preprint arXiv:2108.12409, 2021
2021 arXiv
-
[28]
Model decides how to tokenize: Adaptive dna sequence tokenization with mxdna
Qiao, L., Ye, P., Ren, Y., Bai, W., Liang, C., Ma, X., Dong, N., and Ouyang, W. Model decides how to tokenize: Adaptive dna sequence tokenization with mxdna. arXiv preprint arXiv:2412.13716, 2024
2024 arXiv
-
[29]
Language models are unsupervised multitask learners
Radford, A., Wu, J., Child, R., Luan, D., Amodei, D., Sutskever, I., et al. Language models are unsupervised multitask learners. OpenAI blog, 1 0 (8): 0 9, 2019
2019
-
[30]
W., Borgeaud, S., Cai, T., Millican, K., Hoffmann, J., Song, F., Aslanides, J., Henderson, S., Ring, R., Young, S., et al
Rae, J. W., Borgeaud, S., Cai, T., Millican, K., Hoffmann, J., Song, F., Aslanides, J., Henderson, S., Ring, R., Young, S., et al. Scaling language models: Methods, analysis & insights from training gopher. arXiv preprint arXiv:2112.11446, 2021
2021 arXiv
-
[31]
M., and Poetsch, A
Sanabria, M., Hirsch, J., Joubert, P. M., and Poetsch, A. R. Dna language model grover learns sequence context in the human genome. Nature Machine Intelligence, 6 0 (8): 0 911--923, 2024
2024
-
[32]
H., Sutawika, L., Alyafeai, Z., Chaffin, A., Stiegler, A., Scao, T
Sanh, V., Webson, A., Raffel, C., Bach, S. H., Sutawika, L., Alyafeai, Z., Chaffin, A., Stiegler, A., Scao, T. L., Raja, A., et al. Multitask prompted training enables zero-shot task generalization. arXiv preprint arXiv:2110.08207, 2021
-
[33]
Caduceus: Bi-directional equivariant long-range dna sequence modeling
Schiff, Y., Kao, C.-H., Gokaslan, A., Dao, T., Gu, A., and Kuleshov, V. Caduceus: Bi-directional equivariant long-range dna sequence modeling. arXiv preprint arXiv:2403.03234, 2024
2024 arXiv
-
[34]
Bio-xlstm: Generative modeling, representation and in-context learning of biological and chemical sequences
Schmidinger, N., Schneckenreiter, L., Seidl, P., Schimunek, J., Hoedt, P.-J., Brandstetter, J., Mayr, A., Luukkonen, S., Hochreiter, S., and Klambauer, G. Bio-xlstm: Generative modeling, representation and in-context learning of biological and chemical sequences. arXiv preprin...
2024 arXiv
-
[35]
L., Ciufo, S., Domrachev, M., Hotton, C
Schoch, C. L., Ciufo, S., Domrachev, M., Hotton, C. L., Kannan, S., Khovanskaya, R., Leipe, D., Mcveigh, R., O’Neill, K., Robbertse, B., et al. Ncbi taxonomy: a comprehensive update on curation, resources and tools. Database, 2020: 0 baaa062, 2020
2020
-
[36]
Neural machine translation of rare words with subword units
Sennrich, R. Neural machine translation of rare words with subword units. arXiv preprint arXiv:1508.07909, 2015
2015 arXiv
-
[37]
Multi-task inference: Can large language models follow multiple instructions at once? arXiv preprint arXiv:2402.11597, 2024
Son, G., Baek, S., Nam, S., Jeong, I., and Kim, S. Multi-task inference: Can large language models follow multiple instructions at once? arXiv preprint arXiv:2402.11597, 2024
2024 arXiv
-
[38]
Roformer: Enhanced transformer with rotary position embedding
Su, J., Ahmed, M., Lu, Y., Pan, S., Bo, W., and Liu, Y. Roformer: Enhanced transformer with rotary position embedding. Neurocomputing, 568: 0 127063, 2024
2024
-
[39]
M., Hauth, A., Millican, K., et al
Team, G., Anil, R., Borgeaud, S., Alayrac, J.-B., Yu, J., Soricut, R., Schalkwyk, J., Dai, A. M., Hauth, A., Millican, K., et al. Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805, 2023
2023 arXiv
-
[40]
L., Church, G
Tompa, M., Li, N., Bailey, T. L., Church, G. M., De Moor, B., Eskin, E., Favorov, A. V., Frith, M. C., Fu, Y., Kent, W. J., et al. Assessing computational tools for the discovery of transcription factor binding sites. Nature Biotechnology, 23 0 (1): 0 137--144, 2005
2005
-
[41]
Llama: Open and efficient foundation language models
Touvron, H., Lavril, T., Izacard, G., Martinet, X., Lachaux, M.-A., Lacroix, T., Rozi \`e re, B., Goyal, N., Hambro, E., Azhar, F., et al. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971, 2023
2023 arXiv
-
[42]
Neural discrete representation learning
Van Den Oord, A., Vinyals, O., et al. Neural discrete representation learning. Advances in neural information processing systems, 30, 2017
2017
-
[43]
J., and Davey, N
Van Roey, K., Gibson, T. J., and Davey, N. E. Motif switches: decision-making in cell regulation. Current opinion in structural biology, 22 0 (3): 0 378--385, 2012
2012
-
[44]
Attention is all you need
Vaswani, A. Attention is all you need. Advances in Neural Information Processing Systems, 2017
2017
-
[45]
Multi-purpose rna language modelling with motif-aware pretraining and type-guided fine-tuning
Wang, N., Bian, J., Li, Y., Li, X., Mumtaz, S., Kong, L., and Xiong, H. Multi-purpose rna language modelling with motif-aware pretraining and type-guided fine-tuning. Nature Machine Intelligence, pp.\ 1--10, 2024
2024
-
[46]
V., Zhou, D., et al
Wei, J., Wang, X., Schuurmans, D., Bosma, M., Xia, F., Chi, E., Le, Q. V., Zhou, D., et al. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35: 0 24824--24837, 2022
2022
-
[47]
Deepseek-prover: Advancing theorem proving in llms through large-scale synthetic data
Xin, H., Guo, D., Shao, Z., Ren, Z., Zhu, Q., Liu, B., Ruan, C., Li, W., and Liang, X. Deepseek-prover: Advancing theorem proving in llms through large-scale synthetic data. arXiv preprint arXiv:2405.14333, 2024
2024 arXiv
-
[48]
and Bottou, L
Yadav, C. and Bottou, L. Cold case: The lost mnist digits. Advances in neural information processing systems, 32, 2019
2019
-
[49]
C., Sribour, M., Baek, I., Laurin, M., and Fuchs, E
Yang, Y., Gomez, N., Infarinato, N., Adam, R. C., Sribour, M., Baek, I., Laurin, M., and Fuchs, E. The pioneer factor sox9 competes for epigenetic factors to switch stem cell fates. Nature Cell Biology, 25 0 (8): 0 1185--1195, 2023
2023
-
[50]
and Sennrich, R
Zhang, B. and Sennrich, R. Root mean square layer normalization. Advances in Neural Information Processing Systems, 32, 2019
2019
-
[51]
Towards lifelong learning of large language models: A survey
Zheng, J., Qiu, S., Shi, C., and Ma, Q. Towards lifelong learning of large language models: A survey. arXiv preprint arXiv:2406.06391, 2024
2024 arXiv
-
[52]
and Troyanskaya, O
Zhou, J. and Troyanskaya, O. G. Predicting effects of noncoding variants with deep learning--based sequence model. Nature methods, 12 0 (10): 0 931--934, 2015
2015
-
[53]
Dnabert-2: Efficient foundation model and benchmark for multi-species genome
Zhou, Z., Ji, Y., Li, W., Dutta, P., Davuluri, R., and Liu, H. Dnabert-2: Efficient foundation model and benchmark for multi-species genome. arXiv preprint arXiv:2306.15006, 2023
2023 arXiv
-
[54]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.