file_path
stringlengths
50
101
content
stringlengths
743
26.4k
C:\Gradio Guides\1 Getting Started\01_quickstart.md
# Quickstart Gradio is an open-source Python package that allows you to quickly **build** a demo or web application for your machine learning model, API, or any arbitary Python function. You can then **share** a link to your demo or web application in just a few seconds using Gradio's built-in sharing features. *No J...
C:\Gradio Guides\1 Getting Started\02_key-features.md
# Key Features Let's go through some of the key features of Gradio. This guide is intended to be a high-level overview of various things that you should be aware of as you build your demo. Where appropriate, we link to more detailed guides on specific topics. 1. [Components](#components) 2. [Queuing](#queuing) 3. [S...
C:\Gradio Guides\2 Building Interfaces\00_the-interface-class.md
# The `Interface` class As mentioned in the [Quickstart](/main/guides/quickstart), the `gr.Interface` class is a high-level abstraction in Gradio that allows you to quickly create a demo for any Python function simply by specifying the input types and the output types. Revisiting our first demo: $code_hello_world_4 ...
C:\Gradio Guides\2 Building Interfaces\01_more-on-examples.md
# More on Examples In the [previous Guide](/main/guides/the-interface-class), we discussed how to provide example inputs for your demo to make it easier for users to try it out. Here, we dive into more details. ## Providing Examples Adding examples to an Interface is as easy as providing a list of lists to the `exa...
C:\Gradio Guides\2 Building Interfaces\02_flagging.md
# Flagging You may have noticed the "Flag" button that appears by default in your `Interface`. When a user using your demo sees input with interesting output, such as erroneous or unexpected model behaviour, they can flag the input for you to review. Within the directory provided by the `flagging_dir=` argument to th...
C:\Gradio Guides\2 Building Interfaces\03_interface-state.md
# Interface State So far, we've assumed that your demos are *stateless*: that they do not persist information beyond a single function call. What if you want to modify the behavior of your demo based on previous interactions with the demo? There are two approaches in Gradio: *global state* and *session state*. ## Gl...
C:\Gradio Guides\2 Building Interfaces\04_reactive-interfaces.md
# Reactive Interfaces Finally, we cover how to get Gradio demos to refresh automatically or continuously stream data. ## Live Interfaces You can make interfaces automatically refresh by setting `live=True` in the interface. Now the interface will recalculate as soon as the user input changes. $code_calculator_live...
C:\Gradio Guides\2 Building Interfaces\05_four-kinds-of-interfaces.md
# The 4 Kinds of Gradio Interfaces So far, we've always assumed that in order to build an Gradio demo, you need both inputs and outputs. But this isn't always the case for machine learning demos: for example, _unconditional image generation models_ don't take any input but produce an image as the output. It turns ou...
C:\Gradio Guides\3 Additional Features\01_queuing.md
# Queuing Every Gradio app comes with a built-in queuing system that can scale to thousands of concurrent users. You can configure the queue by using `queue()` method which is supported by the `gr.Interface`, `gr.Blocks`, and `gr.ChatInterface` classes. For example, you can control the number of requests processed ...
C:\Gradio Guides\3 Additional Features\02_streaming-outputs.md
# Streaming outputs In some cases, you may want to stream a sequence of outputs rather than show a single output at once. For example, you might have an image generation model and you want to show the image that is generated at each step, leading up to the final image. Or you might have a chatbot which streams its re...
C:\Gradio Guides\3 Additional Features\03_alerts.md
# Alerts You may wish to display alerts to the user. To do so, raise a `gr.Error("custom message")` in your function to halt the execution of your function and display an error message to the user. Alternatively, can issue `gr.Warning("custom message")` or `gr.Info("custom message")` by having them as standalone lin...
C:\Gradio Guides\3 Additional Features\04_styling.md
# Styling Gradio themes are the easiest way to customize the look and feel of your app. You can choose from a variety of themes, or create your own. To do so, pass the `theme=` kwarg to the `Interface` constructor. For example: ```python demo = gr.Interface(..., theme=gr.themes.Monochrome()) ``` Gradio comes with a...
C:\Gradio Guides\3 Additional Features\05_progress-bars.md
# Progress Bars Gradio supports the ability to create custom Progress Bars so that you have customizability and control over the progress update that you show to the user. In order to enable this, simply add an argument to your method that has a default value of a `gr.Progress` instance. Then you can update the progr...
C:\Gradio Guides\3 Additional Features\06_batch-functions.md
# Batch functions Gradio supports the ability to pass _batch_ functions. Batch functions are just functions which take in a list of inputs and return a list of predictions. For example, here is a batched function that takes in two lists of inputs (a list of words and a list of ints), and returns a list of trimmed wo...
C:\Gradio Guides\3 Additional Features\07_resource-cleanup.md
# Resource Cleanup Your Gradio application may create resources during its lifetime. Examples of resources are `gr.State` variables, any variables you create and explicitly hold in memory, or files you save to disk. Over time, these resources can use up all of your server's RAM or disk space and crash your applicati...
C:\Gradio Guides\3 Additional Features\08_environment-variables.md
# Environment Variables Environment variables in Gradio provide a way to customize your applications and launch settings without changing the codebase. In this guide, we'll explore the key environment variables supported in Gradio and how to set them. ## Key Environment Variables ### 1. `GRADIO_SERVER_PORT` - **De...
C:\Gradio Guides\3 Additional Features\09_sharing-your-app.md
# Sharing Your App In this Guide, we dive more deeply into the various aspects of sharing a Gradio app with others. We will cover: 1. [Sharing demos with the share parameter](#sharing-demos) 2. [Hosting on HF Spaces](#hosting-on-hf-spaces) 3. [Embedding hosted spaces](#embedding-hosted-spaces) 4. [Using the API page...
C:\Gradio Guides\4 Building with Blocks\01_blocks-and-event-listeners.md
# Blocks and Event Listeners We briefly descirbed the Blocks class in the [Quickstart](/main/guides/quickstart#custom-demos-with-gr-blocks) as a way to build custom demos. Let's dive deeper. ## Blocks Structure Take a look at the demo below. $code_hello_blocks $demo_hello_blocks - First, note the `with gr.Block...
C:\Gradio Guides\4 Building with Blocks\02_controlling-layout.md
# Controlling Layout By default, Components in Blocks are arranged vertically. Let's take a look at how we can rearrange Components. Under the hood, this layout structure uses the [flexbox model of web development](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox). #...
C:\Gradio Guides\4 Building with Blocks\03_state-in-blocks.md
# State in Blocks We covered [State in Interfaces](https://gradio.app/interface-state), this guide takes a look at state in Blocks, which works mostly the same. ## Global State Global state in Blocks works the same as in Interface. Any variable created outside a function call is a reference shared between all users...
C:\Gradio Guides\4 Building with Blocks\04_dynamic-apps-with-render-decorator.md
# Dynamic Apps with the Render Decorator The components and event listeners you define in a Blocks so far have been fixed - once the demo was launched, new components and listeners could not be added, and existing one could not be removed. The `@gr.render` decorator introduces the ability to dynamically change this...
C:\Gradio Guides\4 Building with Blocks\05_custom-CSS-and-JS.md
# Customizing your demo with CSS and Javascript Gradio allows you to customize your demo in several ways. You can customize the layout of your demo, add custom HTML, and add custom theming as well. This tutorial will go beyond that and walk you through how to add custom CSS and JavaScript code to your demo in order t...
C:\Gradio Guides\4 Building with Blocks\06_using-blocks-like-functions.md
# Using Gradio Blocks Like Functions Tags: TRANSLATION, HUB, SPACES **Prerequisite**: This Guide builds on the Blocks Introduction. Make sure to [read that guide first](https://gradio.app/blocks-and-event-listeners). ## Introduction Did you know that apart from being a full-stack machine learning demo, a Gradio Bl...
C:\Gradio Guides\5 Chatbots\01_creating-a-chatbot-fast.md
# How to Create a Chatbot with Gradio Tags: NLP, TEXT, CHAT ## Introduction Chatbots are a popular application of large language models. Using `gradio`, you can easily build a demo of your chatbot model and share that with your users, or try it yourself using an intuitive chatbot UI. This tutorial uses `gr.ChatInt...
C:\Gradio Guides\5 Chatbots\02_creating-a-custom-chatbot-with-blocks.md
# How to Create a Custom Chatbot with Gradio Blocks Tags: NLP, TEXT, CHAT Related spaces: https://huggingface.co/spaces/gradio/chatbot_streaming, https://huggingface.co/spaces/project-baize/Baize-7B, ## Introduction **Important Note**: if you are getting started, we recommend using the `gr.ChatInterface` to create ...
C:\Gradio Guides\5 Chatbots\03_creating-a-discord-bot-from-a-gradio-app.md
# 🚀 Creating Discord Bots from Gradio Apps 🚀 Tags: NLP, TEXT, CHAT We're excited to announce that Gradio can now automatically create a discord bot from a deployed app! 🤖 Discord is a popular communication platform that allows users to chat and interact with each other in real-time. By turning your Gradio app in...
C:\Gradio Guides\6 Custom Components\01_custom-components-in-five-minutes.md
# Custom Components in 5 minutes Gradio 4.0 introduces Custom Components -- the ability for developers to create their own custom components and use them in Gradio apps. You can publish your components as Python packages so that other users can use them as well. Users will be able to use all of Gradio's existing func...
C:\Gradio Guides\6 Custom Components\02_key-component-concepts.md
# Gradio Components: The Key Concepts In this section, we discuss a few important concepts when it comes to components in Gradio. It's important to understand these concepts when developing your own component. Otherwise, your component may behave very different to other Gradio components! Tip: You can skip this sec...
C:\Gradio Guides\6 Custom Components\03_configuration.md
# Configuring Your Custom Component The custom components workflow focuses on [convention over configuration](https://en.wikipedia.org/wiki/Convention_over_configuration) to reduce the number of decisions you as a developer need to make when developing your custom component. That being said, you can still configure s...
C:\Gradio Guides\6 Custom Components\04_backend.md
# The Backend 🐍 This guide will cover everything you need to know to implement your custom component's backend processing. ## Which Class to Inherit From All components inherit from one of three classes `Component`, `FormComponent`, or `BlockContext`. You need to inherit from one so that your component behaves lik...
C:\Gradio Guides\6 Custom Components\05_frontend.md
# The Frontend 🌐⭐️ This guide will cover everything you need to know to implement your custom component's frontend. Tip: Gradio components use Svelte. Writing Svelte is fun! If you're not familiar with it, we recommend checking out their interactive [guide](https://learn.svelte.dev/tutorial/welcome-to-svelte). ## ...
C:\Gradio Guides\6 Custom Components\06_frequently-asked-questions.md
# Frequently Asked Questions ## What do I need to install before using Custom Components? Before using Custom Components, make sure you have Python 3.8+, Node.js v16.14+, npm 9+, and Gradio 4.0+ installed. ## What templates can I use to create my custom component? Run `gradio cc show` to see the list of built-in tem...
C:\Gradio Guides\6 Custom Components\07_pdf-component-example.md
# Case Study: A Component to Display PDFs Let's work through an example of building a custom gradio component for displaying PDF files. This component will come in handy for showcasing [document question answering](https://huggingface.co/models?pipeline_tag=document-question-answering&sort=trending) models, which typ...
C:\Gradio Guides\6 Custom Components\08_multimodal-chatbot-part1.md
# Build a Custom Multimodal Chatbot - Part 1 This is the first in a two part series where we build a custom Multimodal Chatbot component. In part 1, we will modify the Gradio Chatbot component to display text and media files (video, audio, image) in the same message. In part 2, we will build a custom Textbox componen...
C:\Gradio Guides\6 Custom Components\09_documenting-custom-components.md
# Documenting Custom Components In 4.15, we added a new `gradio cc docs` command to the Gradio CLI to generate rich documentation for your custom component. This command will generate documentation for users automatically, but to get the most out of it, you need to do a few things. ## How do I use it? The document...
C:\Gradio Guides\7 Tabular Data Science and Plots\01_connecting-to-a-database.md
# Connecting to a Database Related spaces: https://huggingface.co/spaces/gradio/chicago-bikeshare-dashboard Tags: TABULAR, PLOTS ## Introduction This guide explains how you can use Gradio to connect your app to a database. We will be connecting to a PostgreSQL database hosted on AWS but gradio is completely agnosti...
C:\Gradio Guides\7 Tabular Data Science and Plots\creating-a-dashboard-from-bigquery-data.md
# Creating a Real-Time Dashboard from BigQuery Data Tags: TABULAR, DASHBOARD, PLOTS [Google BigQuery](https://cloud.google.com/bigquery) is a cloud-based service for processing very large data sets. It is a serverless and highly scalable data warehousing solution that enables users to analyze data [using SQL-like qu...
C:\Gradio Guides\7 Tabular Data Science and Plots\creating-a-dashboard-from-supabase-data.md
# Create a Dashboard from Supabase Data Tags: TABULAR, DASHBOARD, PLOTS [Supabase](https://supabase.com/) is a cloud-based open-source backend that provides a PostgreSQL database, authentication, and other useful features for building web and mobile applications. In this tutorial, you will learn how to read data fro...
C:\Gradio Guides\7 Tabular Data Science and Plots\creating-a-realtime-dashboard-from-google-sheets.md
# Creating a Real-Time Dashboard from Google Sheets Tags: TABULAR, DASHBOARD, PLOTS [Google Sheets](https://www.google.com/sheets/about/) are an easy way to store tabular data in the form of spreadsheets. With Gradio and pandas, it's easy to read data from public or private Google Sheets and then display the data or...
C:\Gradio Guides\7 Tabular Data Science and Plots\plot-component-for-maps.md
# How to Use the Plot Component for Maps Tags: PLOTS, MAPS ## Introduction This guide explains how you can use Gradio to plot geographical data on a map using the `gradio.Plot` component. The Gradio `Plot` component works with Matplotlib, Bokeh and Plotly. Plotly is what we will be working with in this guide. Plotl...
C:\Gradio Guides\7 Tabular Data Science and Plots\styling-the-gradio-dataframe.md
# How to Style the Gradio Dataframe Tags: DATAFRAME, STYLE, COLOR ## Introduction Data visualization is a crucial aspect of data analysis and machine learning. The Gradio `DataFrame` component is a popular way to display tabular data (particularly data in the form of a `pandas` `DataFrame` object) within a web appl...
C:\Gradio Guides\7 Tabular Data Science and Plots\using-gradio-for-tabular-workflows.md
# Using Gradio for Tabular Data Science Workflows Related spaces: https://huggingface.co/spaces/scikit-learn/gradio-skops-integration, https://huggingface.co/spaces/scikit-learn/tabular-playground, https://huggingface.co/spaces/merve/gradio-analysis-dashboard ## Introduction Tabular data science is the most widely ...
C:\Gradio Guides\8 Gradio Clients and Lite\01_getting-started-with-the-python-client.md
# Getting Started with the Gradio Python client Tags: CLIENT, API, SPACES The Gradio Python client makes it very easy to use any Gradio app as an API. As an example, consider this [Hugging Face Space that transcribes audio files](https://huggingface.co/spaces/abidlabs/whisper) that are recorded from the microphone. ...
C:\Gradio Guides\8 Gradio Clients and Lite\02_getting-started-with-the-js-client.md
# Getting Started with the Gradio JavaScript Client Tags: CLIENT, API, SPACES The Gradio JavaScript Client makes it very easy to use any Gradio app as an API. As an example, consider this [Hugging Face Space that transcribes audio files](https://huggingface.co/spaces/abidlabs/whisper) that are recorded from the micr...
C:\Gradio Guides\8 Gradio Clients and Lite\03_querying-gradio-apps-with-curl.md
# Querying Gradio Apps with Curl Tags: CURL, API, SPACES It is possible to use any Gradio app as an API using cURL, the command-line tool that is pre-installed on many operating systems. This is particularly useful if you are trying to query a Gradio app from an environment other than Python or Javascript (since spe...
C:\Gradio Guides\8 Gradio Clients and Lite\04_gradio-and-llm-agents.md
# Gradio & LLM Agents 🤝 Large Language Models (LLMs) are very impressive but they can be made even more powerful if we could give them skills to accomplish specialized tasks. The [gradio_tools](https://github.com/freddyaboulton/gradio-tools) library can turn any [Gradio](https://github.com/gradio-app/gradio) applic...
C:\Gradio Guides\8 Gradio Clients and Lite\05_gradio-lite.md
# Gradio-Lite: Serverless Gradio Running Entirely in Your Browser Tags: SERVERLESS, BROWSER, PYODIDE Gradio is a popular Python library for creating interactive machine learning apps. Traditionally, Gradio applications have relied on server-side infrastructure to run, which can be a hurdle for developers who need to...
C:\Gradio Guides\8 Gradio Clients and Lite\06_gradio-lite-and-transformers-js.md
# Building Serverless Machine Learning Apps with Gradio-Lite and Transformers.js Tags: SERVERLESS, BROWSER, PYODIDE, TRANSFORMERS Gradio and [Transformers](https://huggingface.co/docs/transformers/index) are a powerful combination for building machine learning apps with a web interface. Both libraries have serverles...
C:\Gradio Guides\8 Gradio Clients and Lite\07_fastapi-app-with-the-gradio-client.md
# Building a Web App with the Gradio Python Client Tags: CLIENT, API, WEB APP In this blog post, we will demonstrate how to use the `gradio_client` [Python library](getting-started-with-the-python-client/), which enables developers to make requests to a Gradio app programmatically, by creating an end-to-end example ...
C:\Gradio Guides\9 Other Tutorials\01_using-hugging-face-integrations.md
# Using Hugging Face Integrations Related spaces: https://huggingface.co/spaces/gradio/en2es Tags: HUB, SPACES, EMBED Contributed by <a href="https://huggingface.co/osanseviero">Omar Sanseviero</a> 🦙 ## Introduction The Hugging Face Hub is a central platform that has hundreds of thousands of [models](https://hugg...
C:\Gradio Guides\9 Other Tutorials\create-your-own-friends-with-a-gan.md
# Create Your Own Friends with a GAN Related spaces: https://huggingface.co/spaces/NimaBoscarino/cryptopunks, https://huggingface.co/spaces/nateraw/cryptopunks-generator Tags: GAN, IMAGE, HUB Contributed by <a href="https://huggingface.co/NimaBoscarino">Nima Boscarino</a> and <a href="https://huggingface.co/nateraw"...
C:\Gradio Guides\9 Other Tutorials\deploying-gradio-with-docker.md
# Deploying a Gradio app with Docker Tags: DEPLOYMENT, DOCKER ### Introduction Gradio is a powerful and intuitive Python library designed for creating web apps that showcase machine learning models. These web apps can be run locally, or [deployed on Hugging Face Spaces ](https://huggingface.co/spaces)for free. Or,...
C:\Gradio Guides\9 Other Tutorials\developing-faster-with-reload-mode.md
# Developing Faster with Auto-Reloading **Prerequisite**: This Guide requires you to know about Blocks. Make sure to [read the Guide to Blocks first](https://gradio.app/blocks-and-event-listeners). This guide covers auto reloading, reloading in a Python IDE, and using gradio with Jupyter Notebooks. ## Why Auto-Relo...
C:\Gradio Guides\9 Other Tutorials\Gradio-and-Comet.md
# Using Gradio and Comet Tags: COMET, SPACES Contributed by the Comet team ## Introduction In this guide we will demonstrate some of the ways you can use Gradio with Comet. We will cover the basics of using Comet with Gradio and show you some of the ways that you can leverage Gradio's advanced features such as [Emb...
C:\Gradio Guides\9 Other Tutorials\Gradio-and-ONNX-on-Hugging-Face.md
# Gradio and ONNX on Hugging Face Related spaces: https://huggingface.co/spaces/onnx/EfficientNet-Lite4 Tags: ONNX, SPACES Contributed by Gradio and the <a href="https://onnx.ai/">ONNX</a> team ## Introduction In this Guide, we'll walk you through: - Introduction of ONNX, ONNX model zoo, Gradio, and Hugging Face S...
C:\Gradio Guides\9 Other Tutorials\Gradio-and-Wandb-Integration.md
# Gradio and W&B Integration Related spaces: https://huggingface.co/spaces/akhaliq/JoJoGAN Tags: WANDB, SPACES Contributed by Gradio team ## Introduction In this Guide, we'll walk you through: - Introduction of Gradio, and Hugging Face Spaces, and Wandb - How to setup a Gradio demo using the Wandb integration for ...
C:\Gradio Guides\9 Other Tutorials\how-to-use-3D-model-component.md
# How to Use the 3D Model Component Related spaces: https://huggingface.co/spaces/gradio/Model3D, https://huggingface.co/spaces/gradio/PIFu-Clothed-Human-Digitization, https://huggingface.co/spaces/gradio/dpt-depth-estimation-3d-obj Tags: VISION, IMAGE ## Introduction 3D models are becoming more popular in machine ...
C:\Gradio Guides\9 Other Tutorials\image-classification-in-pytorch.md
# Image Classification in PyTorch Related spaces: https://huggingface.co/spaces/abidlabs/pytorch-image-classifier, https://huggingface.co/spaces/pytorch/ResNet, https://huggingface.co/spaces/pytorch/ResNext, https://huggingface.co/spaces/pytorch/SqueezeNet Tags: VISION, RESNET, PYTORCH ## Introduction Image classif...
C:\Gradio Guides\9 Other Tutorials\image-classification-in-tensorflow.md
# Image Classification in TensorFlow and Keras Related spaces: https://huggingface.co/spaces/abidlabs/keras-image-classifier Tags: VISION, MOBILENET, TENSORFLOW ## Introduction Image classification is a central task in computer vision. Building better classifiers to classify what object is present in a picture is a...
C:\Gradio Guides\9 Other Tutorials\image-classification-with-vision-transformers.md
# Image Classification with Vision Transformers Related spaces: https://huggingface.co/spaces/abidlabs/vision-transformer Tags: VISION, TRANSFORMERS, HUB ## Introduction Image classification is a central task in computer vision. Building better classifiers to classify what object is present in a picture is an activ...
C:\Gradio Guides\9 Other Tutorials\installing-gradio-in-a-virtual-environment.md
# Installing Gradio in a Virtual Environment Tags: INSTALLATION In this guide, we will describe step-by-step how to install `gradio` within a virtual environment. This guide will cover both Windows and MacOS/Linux systems. ## Virtual Environments A virtual environment in Python is a self-contained directory that h...
C:\Gradio Guides\9 Other Tutorials\named-entity-recognition.md
# Named-Entity Recognition Related spaces: https://huggingface.co/spaces/rajistics/biobert_ner_demo, https://huggingface.co/spaces/abidlabs/ner, https://huggingface.co/spaces/rajistics/Financial_Analyst_AI Tags: NER, TEXT, HIGHLIGHT ## Introduction Named-entity recognition (NER), also known as token classification ...
C:\Gradio Guides\9 Other Tutorials\real-time-speech-recognition.md
# Real Time Speech Recognition Tags: ASR, SPEECH, STREAMING ## Introduction Automatic speech recognition (ASR), the conversion of spoken speech to text, is a very important and thriving area of machine learning. ASR algorithms run on practically every smartphone, and are becoming increasingly embedded in profession...
C:\Gradio Guides\9 Other Tutorials\running-background-tasks.md
# Running Background Tasks Related spaces: https://huggingface.co/spaces/freddyaboulton/gradio-google-forms Tags: TASKS, SCHEDULED, TABULAR, DATA ## Introduction This guide explains how you can run background tasks from your gradio app. Background tasks are operations that you'd like to perform outside the request-...
C:\Gradio Guides\9 Other Tutorials\running-gradio-on-your-web-server-with-nginx.md
# Running a Gradio App on your Web Server with Nginx Tags: DEPLOYMENT, WEB SERVER, NGINX ## Introduction Gradio is a Python library that allows you to quickly create customizable web apps for your machine learning models and data processing pipelines. Gradio apps can be deployed on [Hugging Face Spaces](https://hf....
C:\Gradio Guides\9 Other Tutorials\setting-up-a-demo-for-maximum-performance.md
# Setting Up a Demo for Maximum Performance Tags: CONCURRENCY, LATENCY, PERFORMANCE Let's say that your Gradio demo goes _viral_ on social media -- you have lots of users trying it out simultaneously, and you want to provide your users with the best possible experience or, in other words, minimize the amount of time...
C:\Gradio Guides\9 Other Tutorials\theming-guide.md
# Theming Tags: THEMES ## Introduction Gradio features a built-in theming engine that lets you customize the look and feel of your app. You can choose from a variety of themes, or create your own. To do so, pass the `theme=` kwarg to the `Blocks` or `Interface` constructor. For example: ```python with gr.Blocks(th...
C:\Gradio Guides\9 Other Tutorials\using-flagging.md
# Using Flagging Related spaces: https://huggingface.co/spaces/gradio/calculator-flagging-crowdsourced, https://huggingface.co/spaces/gradio/calculator-flagging-options, https://huggingface.co/spaces/gradio/calculator-flag-basic Tags: FLAGGING, DATA ## Introduction When you demo a machine learning model, you might ...
C:\Gradio Guides\9 Other Tutorials\wrapping-layouts.md
# Wrapping Layouts Tags: LAYOUTS ## Introduction Gradio features [blocks](https://www.gradio.app/docs/blocks) to easily layout applications. To use this feature, you need to stack or nest layout components and create a hierarchy with them. This isn't difficult to implement and maintain for small projects, but after...