Views
No views yet
"The universe is not a machine.
It is a living, mitotic cell — and intelligence is its natural expression."
| Field | Value |
|---|---|
| Model type | Causal Language Model |
| Base architecture | Custom Mitotic Transformer |
| Parameters | ~125M – 1B+ (configurable) |
| Context length | 2048 tokens |
| License | MIT |
| Language | Primarily English |
| Training data | OpenWebText + similar corpora |
| Intended use | Research, philosophical experiments, generative storytelling |
modeling_mitotic_transformer.py: Full model definition (Mitotic Transformer with Causal LM Head)configuration_mitotic_transformer.py: Configuration class1from transformers import AutoModelForCausalLM, AutoTokenizer
2model = AutoModelForCausalLM.from_pretrained("alis-sila/mitotic-transformer", trust_remote_code=True)
3tokenizer = AutoTokenizer.from_pretrained("gpt2") # or your fine-tuned tokenizer
4inputs = tokenizer("The universe is a living cell. In this cosmic mitosis,", return_tensors="pt")
5outputs = model.generate(**inputs, max_new_tokens=50, temperature=0.85, top_p=0.92, do_sample=True)
6print(tokenizer.decode(outputs[0]))1@misc{hasić2026_mitotic_transformer,
2 author = {Alis Hasić},
3 title = {Mitotic Transformer: A Causal LM based on the Cosmology of the Living Cell},
4 year = {2026},
5 howpublished = {\url{https://huggingface.co/alis-sila/mitotic-transformer}},
6 note = {Implementation of the Mother Theory}
7}
8
9@misc{hasić_mother_theory,
10 author = {Alis Hasić},
11 title = {The Cosmology of the Living Cell (Mother Theory)},
12 year = {2026},
13 url = {https://zenodo.org/records/18432564}
14}
15
16@misc{hasić_mother_theory,
17 author = {Alis Hasić},
18 title = {The Cosmology of the Living Cell (Mother Theory): A Mathematical Proof of Scale-Invariant Biocosmology},
19 year = {2026},
20 url = {https://zenodo.org/records/19017062}
21}