rajveerb Claude Opus 4.6 (1M context) commited on
Commit
2b537bc
·
1 Parent(s): 6c5e149

Update README with Git LFS fetch instructions

Browse files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -15,7 +15,17 @@ viewer: false
15
 
16
  Dataset for the paper: *Stream2LLM: Overlap Context Streaming and Prefill for Reduced Time-to-First-Token* (MLSys 2026 artifact evaluation). Contains workload traces, experiment run logs, and performance model measurements used to produce all figures, tables, and inline numbers in the paper.
17
 
18
- This repository is a git submodule of the main [Stream2LLM artifact](https://github.com/rajveerb/stream2llm/tree/mlsys_artifact) (branch: `mlsys_artifact`). Clone the parent repo with `--recurse-submodules` to automatically fetch this data.
 
 
 
 
 
 
 
 
 
 
19
 
20
  ## Directory Structure
21
 
 
15
 
16
  Dataset for the paper: *Stream2LLM: Overlap Context Streaming and Prefill for Reduced Time-to-First-Token* (MLSys 2026 artifact evaluation). Contains workload traces, experiment run logs, and performance model measurements used to produce all figures, tables, and inline numbers in the paper.
17
 
18
+ This repository is a git submodule of the main [Stream2LLM artifact](https://github.com/rajveerb/stream2llm/tree/mlsys_artifact) (branch: `mlsys_artifact`). Data files are stored with Git LFS on HuggingFace. To fetch everything:
19
+
20
+ ```bash
21
+ # Option 1: Clone parent repo with submodules, then pull LFS files
22
+ git clone --recurse-submodules -b mlsys_artifact https://github.com/rajveerb/stream2llm.git
23
+ cd stream2llm/data && git lfs install && git lfs pull && cd ../..
24
+
25
+ # Option 2: If you already cloned without submodules
26
+ git submodule update --init
27
+ cd data && git lfs install && git lfs pull && cd ..
28
+ ```
29
 
30
  ## Directory Structure
31