mhla commited on
Commit
330ccd4
·
verified ·
1 Parent(s): 1ae29b5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ dataset_info:
6
+ features:
7
+ - name: text
8
+ dtype: string
9
+ tags:
10
+ - pre-1900
11
+ - historical
12
+ - physics
13
+ - nlp
14
+ ---
15
+
16
+ # GPT-1900 Physics CLM Data
17
+
18
+ Physics-domain text for continued pretraining (causal language modeling) of GPT-1900. This dataset contains chunks of text from seminal pre-1905 physics works — Newton's *Principia*, Maxwell's *Treatise on Electricity and Magnetism*, Faraday's *Experimental Researches*, Boltzmann, Gibbs, Hertz, and many others.
19
+
20
+ Used to specialize the base GPT-1900 model toward physics reasoning before instruction tuning and reinforcement learning.
21
+
22
+ ## Stats
23
+
24
+ | Split | Rows |
25
+ |-------|------|
26
+ | Train | 319,461 |
27
+ | Val | 16,814 |
28
+
29
+ ## Format
30
+
31
+ Parquet files with a single `text` column. Each row is a chunk of physics text.
32
+
33
+ ## Source Texts
34
+
35
+ Includes works by: Newton, Maxwell, Faraday, Boltzmann, Gibbs, Galileo, Hertz, Helmholtz, Kelvin, Lorentz, Rayleigh, Tyndall, Clausius, Carnot, Stokes, Thomson, Young, Huygens, Laplace, Poynting, Larmor, and others. Extended to a 1905 cutoff (includes Planck 1901, Lorentz 1904, Rutherford on radioactivity).
36
+
37
+ ## Usage
38
+
39
+ ```python
40
+ from datasets import load_dataset
41
+ ds = load_dataset("mhla/gpt1900-physics-clm")
42
+ ```
43
+
44
+ ## Related
45
+
46
+ - [mhla/gpt1900-d34-22btok](https://huggingface.co/mhla/gpt1900-d34-22btok) — GPT-1900 base model
47
+ - [mhla/gpt1900-d34-v3-sft-physics](https://huggingface.co/mhla/gpt1900-d34-v3-sft-physics) — Instruct model built on top of this physics data
48
+ - [mhla/gpt1900-d34-contradiction-rl-v11](https://huggingface.co/mhla/gpt1900-d34-contradiction-rl-v11) — Best RL model (downstream of this data)