From 80098abe4bb3b5dd0bb8bf31b0259978118f0cc8 Mon Sep 17 00:00:00 2001 From: Scott Stevenson Date: Tue, 3 Dec 2024 22:36:16 +0000 Subject: [PATCH] Change broken user guide link to quick start The link to the user guide under "Getting Started" in the README.md now 404s, so I've replaced it with a link to the quick start which looks like the closest replacement. Whilst at it, add syntax highlighting to a code block in the README.md which was missing it. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6b71429e..5dd055989 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@

[Website] -- [Getting Started] +- [Quick Start] - [Docs] - [We're Hiring!]

@@ -195,7 +195,8 @@ dataset = StreamingInsideWebVid(local=local, remote=remote, shuffle=True) Easily experiment with dataset mixtures with [`Stream`](https://docs.mosaicml.com/projects/streaming/en/latest/api_reference/generated/streaming.Stream.html#stream). Dataset sampling can be controlled in relative (proportion) or absolute (repeat or samples terms). During streaming, the different datasets are streamed, shuffled, and mixed seamlessly just-in-time. -``` + +```python # mix C4, github code, and internal datasets streams = [ Stream(remote='s3://datasets/c4', proportion=0.4),