- Other
- NO_RELOAD
New to Gradio? Start here: Getting Started
See the Release History
NO_RELOAD
if gr.NO_RELOAD:Description
Any code in a if gr.NO_RELOAD code-block will not be re-evaluated when the source file is reloaded. This is helpful for importing modules that do not like to be reloaded (tiktoken, numpy) as well as database connections and long running set up code.
Example Usage
import gradio as gr
if gr.NO_RELOAD:
from transformers import pipeline
pipe = pipeline("text-classification", model="cardiffnlp/twitter-roberta-base-sentiment-latest")
gr.Interface.from_pipeline(pipe).launch()