docs: Added starter dev notes on push to hugging face hub#355
Open
docs: Added starter dev notes on push to hugging face hub#355
Conversation
Contributor
Greptile SummaryThis PR adds a new dev note documenting the
|
| Filename | Overview |
|---|---|
| docs/devnotes/posts/push-datasets-to-hugging-face-hub.md | New dev note covering push_to_hub feature; well-structured with a single marker, full template path, and clear code examples. Previously flagged issues appear resolved. |
| docs/devnotes/posts/text-to-sql.md | Date changed from 2026-03-11 to 2026-04-14 with no other modifications — appears to be an accidental edit that would corrupt the blog index sort order and RSS feed for this previously-published post. |
| docs/devnotes/.authors.yml | Adds co-author davanstrien (Daniel van Strien from Hugging Face) — straightforward and correct. |
| mkdocs.yml | Adds the new post to the nav in the correct most-recent-first position. |
| docs/devnotes/posts/assets/push-datasets-to-hugging-face-hub/push-to-hub-hero.png | New image asset for the blog post. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[DataDesigner.create\nor saved artifact folder] --> B[push_to_hub / push_to_hub_from_folder]
B --> C1[1. Upload README.md\nauto-generated dataset card]
C1 --> C2[2. Upload data/*.parquet\nremapped from parquet-files/]
C2 --> C3[3. Upload images/*\nskipped if no image columns]
C3 --> C4[4. Upload processor dirs\ne.g. conversations/*.parquet]
C4 --> C5[5. Upload builder_config.json\nfull pipeline definition]
C5 --> C6[6. Upload metadata.json\npaths rewritten for HF layout]
C6 --> D[Live HF Dataset Repo\neach step = one commit]
D --> E1[Dataset Viewer\nbrowsable immediately]
D --> E2[Streaming via parquet]
D --> E3[Round-trip reproduce\nfrom_config HF URL]
Prompt To Fix All With AI
This is a comment left during a code review.
Path: docs/devnotes/posts/text-to-sql.md
Line: 2
Comment:
**Unintentional date change on existing post**
This PR changes the `text-to-sql.md` publication date from `2026-03-11` to `2026-04-14`. The text-to-sql post itself has no other changes, so this looks like an accidental edit. The MkDocs Material blog plugin uses the frontmatter date for its listing index sort order and RSS feed, so bumping this date would move the text-to-sql post above any other posts dated between March 11 and April 14 in the blog index — misrepresenting the original publication date to readers and feed subscribers.
```suggestion
date: 2026-03-11
```
How can I resolve this? If you propose a fix, please make it concise.Reviews (12): Last reviewed commit: "fix date for text-to-sql" | Re-trigger Greptile
dhruvnathawani
previously approved these changes
Feb 26, 2026
Contributor
dhruvnathawani
left a comment
There was a problem hiding this comment.
Did you use AI for the images?
LGTM
Move the single <\!-- more --> to after the intro paragraph for a shorter blog teaser and remove the 6 redundant markers throughout the post.
Contributor
Author
@dhruvnathawani, yes! |
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
* docs: add HF ecosystem context to push-to-hub dev notes Add section on what datasets get on the Hub (Dataset Viewer, streaming, Viewer API), link to Hub search for DataDesigner datasets, and note that private datasets can be flipped to public. * Update docs/devnotes/posts/push-datasets-to-hugging-face-hub.md Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * fix: remove doubled library: prefix in Hub search URL --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Contributor
|
Docs preview: https://5f89bec9.dd-docs-preview.pages.dev
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a dev note post to cover
push_to_hubfeature of Data Designer