Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/markdown-links-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"ignorePatterns": [
{
"pattern": "^https://github.com/Lightning-AI/litData/pull/"
},
{
"pattern": "^https://codecov.io/gh/Lightning-AI/litData/graph/badge.svg"
}
],
"httpHeaders": [
{
"urls": [
"https://github.com/",
"https://guides.github.com/",
"https://help.github.com/",
"https://docs.github.com/"
],
"headers": {
"Accept-Encoding": "zstd, br, gzip, deflate"
}
}
],
"timeout": "20s",
"retryOn429": true,
"retryCount": 5,
"fallbackRetryDelay": "20s"
}
7 changes: 7 additions & 0 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,10 @@ jobs:
uses: Lightning-AI/utilities/.github/workflows/check-docs.yml@main
with:
requirements-file: "requirements/docs.txt"

check-md-links:
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@main
with:
config-file: ".github/markdown-links-config.json"
base-branch: "main"
force-check-all: "yes"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ Stream data during long training, if interrupted, pick up right where you left o

LitData provides a stateful `Streaming DataLoader` e.g. you can `pause` and `resume` your training whenever you want.

Info: The `Streaming DataLoader` was used by [Lit-GPT](https://github.com/Lightning-AI/lit-gpt/blob/main/pretrain/tinyllama.py) to pretrain LLMs. Restarting from an older checkpoint was critical to get to pretrain the full model due to several failures (network, CUDA Errors, etc..).
Info: The `Streaming DataLoader` was used by [Lit-GPT](https://github.com/Lightning-AI/litgpt/blob/main/tutorials/pretrain_tinyllama.md) to pretrain LLMs. Restarting from an older checkpoint was critical to get to pretrain the full model due to several failures (network, CUDA Errors, etc..).

```python
import os
Expand Down
2 changes: 1 addition & 1 deletion examples/multi_modal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pip install -r requirements.txt

## License

This project is licensed under the APACHE 2.0 License. See the [LICENSE](LICENSE) file for details.
This project is licensed under the [APACHE 2.0 License](https://github.com/Lightning-AI/litData/blob/main/LICENSE).

______________________________________________________________________

Expand Down
Loading