-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: DuckDB native support for HuggingFace urls #2817
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really cool and well-written! 👏
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
docs/source/_toctree.yml
Outdated
- local: duckdb | ||
title: DuckDB | ||
sections: | ||
- local: duckdb_cli | ||
title: DuckDB CLI | ||
sections: | ||
- local: duckdb_cli_auth | ||
title: Authentication for private and gated datasets | ||
- local: duckdb_cli_select | ||
title: Query datasets | ||
- local: duckdb_cli_sql | ||
title: Perform SQL operations | ||
- local: duckdb_cli_combine_and_export | ||
title: Combine datasets and export | ||
- local: duckdb_cli_vector_similarity_search | ||
title: Perform vector similarity search | ||
- local: duckdb_cli_fts | ||
title: Implement full-text search |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe it's because we don't support this depth of sections ? trying with one less level
- local: duckdb | |
title: DuckDB | |
sections: | |
- local: duckdb_cli | |
title: DuckDB CLI | |
sections: | |
- local: duckdb_cli_auth | |
title: Authentication for private and gated datasets | |
- local: duckdb_cli_select | |
title: Query datasets | |
- local: duckdb_cli_sql | |
title: Perform SQL operations | |
- local: duckdb_cli_combine_and_export | |
title: Combine datasets and export | |
- local: duckdb_cli_vector_similarity_search | |
title: Perform vector similarity search | |
- local: duckdb_cli_fts | |
title: Implement full-text search | |
- local: duckdb | |
title: DuckDB | |
sections: | |
- local: duckdb_cli | |
title: DuckDB CLI | |
- local: duckdb_cli_auth | |
title: Authentication for private and gated datasets | |
- local: duckdb_cli_select | |
title: Query datasets | |
- local: duckdb_cli_sql | |
title: Perform SQL operations | |
- local: duckdb_cli_combine_and_export | |
title: Combine datasets and export | |
- local: duckdb_cli_vector_similarity_search | |
title: Perform vector similarity search | |
- local: duckdb_cli_fts | |
title: Implement full-text search |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added but not sure why it is still now working ..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks amazing ! I just added a few edit suggestions to remove remaining @~parquet
that are not useful.
I'm having issues making the docs preview work though
Also I feel like this should be in In the Viewer's docs we can redirect to the hub-docs, and present the more advanced use case of using the Parquet export provided by the viewer maybe |
Co-authored-by: Quentin Lhoest <[email protected]>
I will close this PR in favor of https://github.com/huggingface/hub-docs/pull/1297and then will refer to it in Dataset viewer doc. |
Following up duckdb/duckdb#11831
Draft in progress to document DuckDB CLI usage with native support for HF URLs.
I plan to add:
SELECT
examples,DESCRIBE
,SUMMARIZE
for stats)Please let me know if you have any better ideas or if I can remove some of the above points.