PeytonT commited on
Commit
fd174c3
·
verified ·
1 Parent(s): 671a0dc

Enhance model card with repository context and sources

Browse files
Files changed (1) hide show
  1. README.md +33 -19
README.md CHANGED
@@ -18,45 +18,61 @@ Combines paper, repository, and metadata inputs into a shared reasoning model.
18
 
19
  - Artifact type: LoRA adapter
20
  - Base model: `google/flan-t5-base`
 
21
  - Model ID: `U1`
22
  - Tier: `T6_unified`
23
- - Local mirror: `/arxiv/models/repository_library/unified-knowledge-model`
24
- - Source checkpoint: `models/checkpoints/U1`
25
 
26
- This repository is part of the `repository_library` model stack and is mirrored from `/data/repository_library/models/checkpoints` for publication under the `PeytonT` namespace.
 
 
 
 
 
 
 
 
27
 
28
  ## Intended Use
29
 
30
  - Primary use: Combines paper, repository, and metadata inputs into a shared reasoning model.
31
- - Secondary use: retrieval, ranking, planning, or scientific paper tooling inside the broader Repository Library system, depending on the model family.
32
- - Out of scope: production safety claims, benchmark claims beyond the bundled experiment config, or use outside the model's narrow training objective without task-specific validation.
33
 
34
  ## Training Data
35
 
36
- This package was trained from the following declared datasets or corpus sources:
37
 
38
- - `source:arxiv_metadata`
39
- - `source:arxiv_pdfs_structured`
40
- - `source:github_repos`
41
 
42
  ## Training Procedure
43
 
44
  - Sources: `arxiv_metadata, arxiv_pdfs_structured, github_repos`
45
  - Input fields: `paper_context, repo_context, metadata`
46
  - Target fields: `reasoning_output`
 
47
  - Max samples: `4000`
 
48
  - Precision: `bf16`
49
  - Objective: `cross_entropy`
50
- - Batch size: `2`
51
  - Learning rate: `5e-05`
52
  - Max source tokens: `512`
53
  - Max target tokens: `256`
 
54
  - Max steps: `1000`
55
 
 
 
 
 
 
 
56
  ## Evaluation
57
 
58
  - Declared metrics: `perplexity`
59
- - Status: local experiment artifact mirrored for release; external benchmark reporting has not been standardized across the full model family yet.
60
 
61
  ## Usage
62
 
@@ -74,14 +90,12 @@ model = PeftModel.from_pretrained(base, repo_id)
74
 
75
  ## Limitations
76
 
77
- - These model cards reflect the packaged experiment configs and mirrored checkpoint contents, not an independently audited benchmark sheet.
78
- - Some training datasets are local corpora or exported shards, so reproducibility may require access to the surrounding Repository Library data pipeline.
79
- - Models in this stack are narrow components of a larger paper-and-repository system and should be validated on downstream tasks before deployment.
80
 
81
  ## Project Context
82
 
83
- Repository Library is a research system for indexing, retrieving, aligning, and reasoning over scientific papers, structured paper content, repositories, and cross-domain links between them.
84
-
85
- ## Contact
86
-
87
- Published under `PeytonT` from the local `repository_library` build.
 
18
 
19
  - Artifact type: LoRA adapter
20
  - Base model: `google/flan-t5-base`
21
+ - Backbone type: `encoder_decoder`
22
  - Model ID: `U1`
23
  - Tier: `T6_unified`
24
+ - Role in stack: cross-domain reasoning component
 
25
 
26
+ This model is part of the Repository Library stack, a research system for indexing, retrieving, aligning, and reasoning over scientific papers, structured paper content, repositories, and cross-domain links between them.
27
+
28
+ ## Model Sources
29
+
30
+ - Hugging Face repo: `https://huggingface.co/PeytonT/unified-knowledge-model`
31
+ - Hugging Face collection: `https://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50d`
32
+ - GitHub repository: `https://github.com/peytontolbert/research_library`
33
+ - Experiment config: `https://github.com/peytontolbert/research_library/blob/main/models/experiments/u1_unified_knowledge_model.json`
34
+ - Models directory: `https://github.com/peytontolbert/research_library/tree/main/models`
35
 
36
  ## Intended Use
37
 
38
  - Primary use: Combines paper, repository, and metadata inputs into a shared reasoning model.
39
+ - Downstream use: retrieval, ranking, planning, paper understanding, or cross-domain reasoning inside the broader Repository Library system, depending on the model family.
40
+ - Out of scope: production safety claims, benchmark claims beyond the tracked experiment config, or deployment without task-specific validation.
41
 
42
  ## Training Data
43
 
44
+ The training inputs for this package were assembled from the following Repository Library data sources:
45
 
46
+ - Source `arxiv_metadata`: arXiv metadata records spanning titles, abstracts, authors, and category labels.
47
+ - Source `arxiv_pdfs_structured`: structured PDF shards containing text, equations, figures, and tables.
48
+ - Source `github_repos`: repository graph and code chunk data exported from the Repository Library repo pipeline.
49
 
50
  ## Training Procedure
51
 
52
  - Sources: `arxiv_metadata, arxiv_pdfs_structured, github_repos`
53
  - Input fields: `paper_context, repo_context, metadata`
54
  - Target fields: `reasoning_output`
55
+ - Train/val/test split: `[0.9, 0.1, 0.0]`
56
  - Max samples: `4000`
57
+ - Batch size: `2`
58
  - Precision: `bf16`
59
  - Objective: `cross_entropy`
 
60
  - Learning rate: `5e-05`
61
  - Max source tokens: `512`
62
  - Max target tokens: `256`
63
+ - Fine-tune strategy: `peft_lora`
64
  - Max steps: `1000`
65
 
66
+ ## Compute
67
+
68
+ - Hardware: 4x RTX_3090 (24 GB)
69
+ - Distributed strategy: `ddp`
70
+ - Estimated GPU hours in config: `0`
71
+
72
  ## Evaluation
73
 
74
  - Declared metrics: `perplexity`
75
+ - Status: this card reflects the current tracked experiment configuration and packaged weights in the Repository Library model stack.
76
 
77
  ## Usage
78
 
 
90
 
91
  ## Limitations
92
 
93
+ - These cards are generated from tracked experiment metadata and packaged artifacts, not from a separate benchmark report or external audit.
94
+ - Several training sources are pipeline outputs from the Repository Library codebase rather than standalone public datasets.
95
+ - These models are components of a larger research system and should be validated in their target workflow before deployment.
96
 
97
  ## Project Context
98
 
99
+ - GitHub repository: `https://github.com/peytontolbert/research_library`
100
+ - Model collection: `https://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50d`
101
+ - Publisher: `PeytonT`