ludwigw commited on
Commit
ec5ca85
·
verified ·
1 Parent(s): cfa65b1

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: google/gemma-3-270m-it
4
+ tags:
5
+ - causal-reasoning
6
+ - fine-tuned
7
+ - d-separation
8
+ - baseline
9
+ language:
10
+ - en
11
+ ---
12
+
13
+ # Gemma D-Separation Baseline (Collapsed)
14
+
15
+ Standard fine-tuned Gemma 270M-IT on d-separation task **without** semantic loss. Exhibits model collapse — predicts near-constant "No" (7.6% F1). Provided for reproducibility and as a negative baseline.
16
+
17
+ ## Usage
18
+ ```python
19
+ from transformers import AutoTokenizer, AutoModelForCausalLM
20
+
21
+ model = AutoModelForCausalLM.from_pretrained("ludwigw/gemma-dseparation-baseline")
22
+ tokenizer = AutoTokenizer.from_pretrained("ludwigw/gemma-dseparation-baseline")
23
+ ```
24
+
25
+ ## Citation
26
+ ```bibtex
27
+ @article{deshmukh2026semantic,
28
+ title={On Semantic Loss Fine-Tuning Approach for Preventing Model Collapse in Causal Reasoning},
29
+ author={Deshmukh, Pratik and Gupta, Atirek},
30
+ year={2026}
31
+ }
32
+ ```