gradio/guides
AK391 edb2798bb7
Guide for Gradio ONNX model zoo on Huggingface (#1073)
* Create Gradio_ONNX_on_Hugging_Face.md

* add titles and related spaces

* add clearer description

* add gradio description

* add contribution guide

* add spaces description

* add onnx models description

* first version of document related to onnx/ort/modelzoo

* rewording

Signed-off-by: jcwchen <jacky82226@gmail.com>

* for review

Signed-off-by: jcwchen <jacky82226@gmail.com>

* spaces

Signed-off-by: jcwchen <jacky82226@gmail.com>

* update Gradio desc

* update spaces description

* update onnx description

* add code example

* update title and tags

* add Spaces demo

* add efficientnet-lite4 description

* add ONNX models tag description

* updated by review; onnx.hub

Signed-off-by: jcwchen <jacky82226@gmail.com>

* download from onnx model zoo

* update title

* use ort instead of rt for onnx runtime

* fix loads

* delete extra onnxruntime import

* delete trailing space

* update height to 810

* update description

* add the

* delete duplicate sentence

* update get started description

* add the

* update sentence

* fix sentence

* fix sentence

* fix demos

* fix model to models

* remove get started

* onnx model zoo PR link

* add contribution

* fix sentence

* is to are

* no colon at end

* update contribution and link

Co-authored-by: Chun-Wei Chen <jacky82226@gmail.com>
2022-04-29 04:04:31 +02:00
..
adding_rich_descriptions_to_your_demo.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00
building_a_pictionary_app.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00
create_your_own_friends_with_a_gan.md Adjustments to iframe heights (#1042) 2022-04-20 19:39:02 +02:00
creating_a_chatbot.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00
getting_started.md Add a missing line to getting started (#816) 2022-03-14 12:32:36 +02:00
Gradio_ONNX_on_Hugging_Face.md Guide for Gradio ONNX model zoo on Huggingface (#1073) 2022-04-29 04:04:31 +02:00
image_classification_in_pytorch.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00
image_classification_in_tensorflow.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00
image_classification_with_vision_transformers.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00
README.md Guides fixes (#565) 2022-02-09 20:33:16 +04:00
real_time_speech_recognition.md made fixes 2022-03-29 11:12:15 -07:00
using_flagging.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00
using_hugging_face_integrations.md missing quote (#996) 2022-04-14 01:04:18 +02:00
using_the_api_docs.md [Spaces] Cleaner hf.space URLs 2022-03-24 20:52:19 +01:00

Contributing a Guide

Want to help teach Gradio? Consider contributing a Guide! 🤗

Broadly speaking, there are two types of guides:

  • Use cases: guides that cover step-by-step how to build a particular type of machine learning demo or app using Gradio. Here's an example: Creating a Chatbot
  • Feature explanation: guides that describe in detail a particular feature of Gradio. Here's an example: Using Flagging

We encourage you to submit either type of Guide! (Looking for ideas? We may also have open issues where users have asked for guides on particular topics)

Guide Structure

As you can see with the previous examples, Guides are standard markdown documents. They usually:

  • start with an Introduction section describing the topic
  • include subheadings to make articles easy to navigate
  • include real code snippets that make it easy to follow along and implement the Guide
  • include embedded Gradio demos to make them more interactive and provide immediate demonstrations of the topic being discussed. These Gradio demos are hosted on Hugging Face Spaces and are embedded using the standard <iframe> tag.

How to Contribute a Guide

  1. Clone or fork this gradio repo
  2. Add a new markdown document with a descriptive title to the /guides folder
  3. Write your Guide in standard markdown! Embed Gradio demos wherever helpful
  4. Add a list of related_spaces at the top of the markdown document (see the previously linked Guides for how to do this)
  5. Add 3 tags at the top of the markdown document to help users find your guide (again, see the previously linked Guides for how to do this)
  6. Open a PR to have your guide reviewed

That's it! We're looking forward to reading your Guide 🥳