Peter Schnurf commited on
Commit
c6cee94
·
verified ·
1 Parent(s): 9c9222d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -8
README.md CHANGED
@@ -14,7 +14,7 @@ license: mit
14
 
15
  `Is Even` is a tiny decoder-only transformer trained on chat-formatted synthetic data from SnurfyAI that predicts whether a decimal input is even.
16
 
17
- This repository contains the published model weights and basic metadata for the released checkpoint. Additional documentation and any future public training-code release will be linked from this model card once available.
18
 
19
  ## What The Model Does
20
 
@@ -34,13 +34,17 @@ The task is mathematically determined by the final decimal digit, but the model
34
 
35
  The expected completion label is `true` or `false`.
36
 
37
- ## Limitations
38
 
39
- - This is a specialized research model, not a general-purpose language model.
40
- - The current release focuses on weights and metadata only.
41
- - Public training/inference utilities are not yet released.
42
 
43
- ## More Information
44
 
45
- - Paper draft: see the SnurfyAI research release associated with this model
46
- - Future code release: will be linked here on this model card
 
 
 
 
 
 
 
14
 
15
  `Is Even` is a tiny decoder-only transformer trained on chat-formatted synthetic data from SnurfyAI that predicts whether a decimal input is even.
16
 
17
+ This repository contains the published model weights and metadata for the released checkpoint.
18
 
19
  ## What The Model Does
20
 
 
34
 
35
  The expected completion label is `true` or `false`.
36
 
37
+ ## Training Code
38
 
39
+ You can train the model yourself using the official SnurfyAI training codebase:
 
 
40
 
41
+ - [SnurfyAI Is Even Core](https://github.com/SnurfyAI/is-even)
42
 
43
+ The repository contains the code needed to generate the dataset, train the model, and benchmark saved checkpoints.
44
+
45
+
46
+ ## Research Paper
47
+
48
+ - [A Microscopic Study of Decimal Parity in a Tiny Causal Transformer](https://ai.snurfy.net/research/is-even)
49
+
50
+ The accompanying paper analyzes the model’s generalization behavior, attention structure, and causal dependence on the final digit.