mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
Fixed typos in function descriptions (#3168)
* Fixed typos in function descriptions * updated changelog.md
This commit is contained in:
parent
c06b4eab16
commit
a4db6edd42
@ -41,6 +41,8 @@ No changes to highlight.
|
|||||||
* Sort components in docs by alphabetic order by [@aliabd](https://github.com/aliabd) in [PR 3152](https://github.com/gradio-app/gradio/pull/3152)
|
* Sort components in docs by alphabetic order by [@aliabd](https://github.com/aliabd) in [PR 3152](https://github.com/gradio-app/gradio/pull/3152)
|
||||||
* Changes to W&B guide by [@scottire](https://github.com/scottire) in [PR 3153](https://github.com/gradio-app/gradio/pull/3153)
|
* Changes to W&B guide by [@scottire](https://github.com/scottire) in [PR 3153](https://github.com/gradio-app/gradio/pull/3153)
|
||||||
* Keep pnginfo metadata for gallery by [@wfng92](https://github.com/wfng92) in [PR 3150](https://github.com/gradio-app/gradio/pull/3150)
|
* Keep pnginfo metadata for gallery by [@wfng92](https://github.com/wfng92) in [PR 3150](https://github.com/gradio-app/gradio/pull/3150)
|
||||||
|
* Fixed typos in gradio events function documentation by [@vidalmaxime](https://github.com/vidalmaxime) in [PR 3168](https://github.com/gradio-app/gradio/pull/3168)
|
||||||
|
|
||||||
|
|
||||||
## Testing and Infrastructure Changes:
|
## Testing and Infrastructure Changes:
|
||||||
No changes to highlight.
|
No changes to highlight.
|
||||||
|
@ -61,7 +61,7 @@ class Changeable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -124,7 +124,7 @@ class Clickable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -189,7 +189,7 @@ class Submittable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -253,7 +253,7 @@ class Editable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -317,7 +317,7 @@ class Clearable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -381,7 +381,7 @@ class Playable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -443,7 +443,7 @@ class Playable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -505,7 +505,7 @@ class Playable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -569,7 +569,7 @@ class Streamable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
fn: the function to wrap an interface around. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
@ -633,7 +633,7 @@ class Blurrable(EventListener):
|
|||||||
Parameters:
|
Parameters:
|
||||||
fn: Callable function
|
fn: Callable function
|
||||||
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
|
||||||
outputs: List of gradio.components to use as inputs. If the function returns no outputs, this should be an empty list.
|
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
|
||||||
api_name: Defining this parameter exposes the endpoint in the api docs
|
api_name: Defining this parameter exposes the endpoint in the api docs
|
||||||
scroll_to_output: If True, will scroll to output component on completion
|
scroll_to_output: If True, will scroll to output component on completion
|
||||||
show_progress: If True, will show progress animation while pending
|
show_progress: If True, will show progress animation while pending
|
||||||
|
Loading…
Reference in New Issue
Block a user