🧠
Model

Fishnalm 20 Splice Donor

by bioinfoihb hf-model--bioinfoihb--fishnalm-20_splice_donor
Nexus Index
39.0 Top 100%
S: Semantic 50
A: Authority 0
P: Popularity 2
R: Recency 97
Q: Quality 65
Tech Context
Vital Performance
14 DL / 30D
0.0%
Audited 39 FNI Score
Tiny - Params
- Context
14 Downloads
Restricted CC License
Model Information Summary
Entity Passport
Registry ID hf-model--bioinfoihb--fishnalm-20_splice_donor
License CC-BY-NC-SA-4.0
Provider huggingface
📜

Cite this model

Academic & Research Attribution

BibTeX
@misc{hf_model__bioinfoihb__fishnalm_20_splice_donor,
  author = {bioinfoihb},
  title = {Fishnalm 20 Splice Donor Model},
  year = {2026},
  howpublished = {\url{https://huggingface.co/bioinfoihb/fishnalm-20_splice_donor}},
  note = {Accessed via Free2AITools Knowledge Fortress}
}
APA Style
bioinfoihb. (2026). Fishnalm 20 Splice Donor [Model]. Free2AITools. https://huggingface.co/bioinfoihb/fishnalm-20_splice_donor

đŸ”ŦTechnical Deep Dive

Full Specifications [+]

Quick Commands

🤗 HF Download
huggingface-cli download bioinfoihb/fishnalm-20_splice_donor
đŸ“Ļ Install Lib
pip install -U transformers

âš–ī¸ Nexus Index V2.0

39.0
TOP 100% SYSTEM IMPACT
Semantic (S) 50
Authority (A) 0
Popularity (P) 2
Recency (R) 97
Quality (Q) 65

đŸ’Ŧ Index Insight

FNI V2.0 for Fishnalm 20 Splice Donor: Semantic (S:50), Authority (A:0), Popularity (P:2), Recency (R:97), Quality (Q:65).

Free2AITools Nexus Index

Verification Authority

Unbiased Data Node Refresh: VFS Live
---

🚀 What's Next?

Technical Deep Dive

FishNALM-20_splice_donor

FishNALM-20_splice_donor is a fine-tuned version of FishNALM-20_pretrain for Splice donor prediction in fish genomics.

Model description

This repository contains a task-specific fine-tuned checkpoint from the FishNALM model family. The model was initialized from the pretrained base model FishNALM-20_pretrain and then fine-tuned for Splice donor prediction.

Task

Task name: Splice donor prediction
Task type: binary classification
Prediction target: splice donor vs non-donor sequences

Examples:

  • CTCF TFBS prediction
  • Pou5f1 TFBS prediction
  • Sox2 TFBS prediction
  • histone modification prediction
  • promoter prediction
  • splice donor prediction
  • splice acceptor prediction
  • splice classification

Base model

  • Base model repository: xia-lab/FishNALM-20_pretrain
  • Model family: FishNALM
  • Initialization type: pretrained checkpoint + downstream fine-tuning

Training data

This model was fine-tuned on Splice donor prediction data from FishGUE.

Evaluation

  • Primary metric: MCC
  • Evaluation split / strategy: predefined train/validation/test split

Intended uses

This model is intended for:

  • fish genomics sequence classification
  • downstream task inference on sequences similar to the fine-tuning setting
  • comparative benchmarking within fish genomic prediction tasks

Limitations

  • This is a task-specific fine-tuned model and should be used within the scope of Splice donor prediction.
  • Generalization to other species, tasks, or sequence lengths may be limited.
  • This is a research model and is not intended for clinical or diagnostic use.

How to use

Load tokenizer and model

python
from transformers import AutoTokenizer, AutoModelForSequenceClassification

repo_name = "xia-lab/FishNALM-20_splice_donor"

tokenizer = AutoTokenizer.from_pretrained(repo_name)
model = AutoModelForSequenceClassification.from_pretrained(repo_name)

Example inference

python
import torch
from transformers import AutoTokenizer, AutoModelForSequenceClassification

repo_name = "xia-lab/FishNALM-20_splice_donor"
sequence = "ATGCGTACGTTAGCTAGCTAGCTAGCTAGCTA"

tokenizer = AutoTokenizer.from_pretrained(repo_name)
model = AutoModelForSequenceClassification.from_pretrained(repo_name)

inputs = tokenizer(
    sequence,
    return_tensors="pt",
    truncation=True,
    padding="max_length",
    max_length=512,
)

with torch.no_grad():
    outputs = model(**inputs)

logits = outputs.logits
probabilities = torch.softmax(logits, dim=-1)
prediction = torch.argmax(probabilities, dim=-1)

print("logits:", logits)
print("probabilities:", probabilities)
print("prediction:", prediction)

Label mapping

  • 0: negative
  • 1: positive

Files in this repository

Typical files in this repository may include:

  • config.json
  • model.safetensors
  • tokenizer.json
  • tokenizer_config.json
  • special_tokens_map.json
  • vocab.txt
  • README.md

Citation

If you use this model, please cite the FishNALM manuscript.

Contact

For questions, please contact: [email protected]

âš ī¸ Incomplete Data

Some information about this model is not available. Use with Caution - Verify details from the original source before relying on this data.

View Original Source →

📝 Limitations & Considerations

  • â€ĸ Benchmark scores may vary based on evaluation methodology and hardware configuration.
  • â€ĸ VRAM requirements are estimates; actual usage depends on quantization and batch size.
  • â€ĸ FNI scores are relative rankings and may change as new models are added.
  • ⚠ License Unknown: Verify licensing terms before commercial use.

Social Proof

HuggingFace Hub
14Downloads
🔄 Daily sync (03:00 UTC)

AI Summary: Based on Hugging Face metadata. Not a recommendation.

📊 FNI Methodology 📚 Knowledge Baseâ„šī¸ Verify with original source

đŸ›Ąī¸ Model Transparency Report

Technical metadata sourced from upstream repositories.

Open Metadata

🆔 Identity & Source

id
hf-model--bioinfoihb--fishnalm-20_splice_donor
slug
bioinfoihb--fishnalm-20_splice_donor
source
huggingface
author
bioinfoihb
license
CC-BY-NC-SA-4.0
tags
transformers, safetensors, bert, text-classification, dna, genomics, fish, sequence-classification, fishnalm, fine-tuned, splice-donor, en, license:cc-by-nc-sa-4.0, endpoints_compatible, region:us

âš™ī¸ Technical Specs

architecture
null
params billions
null
context length
null
pipeline tag
text-classification

📊 Engagement & Metrics

downloads
14
stars
0
forks
0

Data indexed from public sources. Updated daily.