
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
gradio-checkboxmarkdowngroup
Advanced tools
Python library for easily interacting with trained machine learning models
gradio_checkboxmarkdowngroup
Python library for easily interacting with trained machine learning models
pip install gradio_checkboxmarkdowngroup
from typing import List
import gradio as gr
from gradio_checkboxmarkdowngroup.checkboxmarkdowngroup import Choice
from gradio_checkboxmarkdowngroup import CheckboxMarkdownGroup
choices = [
Choice(id="art_101", title="Understanding Neural Networks", content="# Understanding Neural Networks\nThis article explains the basics of neural networks, their architecture, and how they learn from data."),
Choice(id="art_102", title="A Gentle Introduction to Transformers", content="# A Gentle Introduction to Transformers\nTransformers have revolutionized NLP. Learn about attention mechanisms, encoder-decoder architecture, and the future of large language models."),
Choice(id="art_103", title="Reinforcement Learning Basics", content="# Reinforcement Learning Basics\nAn overview of RL concepts like agents, environments, rewards, and how RL differs from supervised and unsupervised learning."),
Choice(id="art_104", title="Generative Adversarial Networks (GANs)", content="# Generative Adversarial Networks (GANs)\nDiscover how GANs pair a generator and discriminator to create realistic images, text, and other synthetic data."),
Choice(id="art_105", title="Convolutional Neural Networks (CNNs)", content="# Convolutional Neural Networks (CNNs)\nLearn about convolution, pooling, and how CNNs excel at image recognition tasks."),
Choice(id="art_106", title="Graph Neural Networks", content="# Graph Neural Networks\nAn intro to applying neural networks to graph-structured data, covering message passing and graph embeddings."),
]
def sentence_builder(selected):
if not selected:
return "You haven't selected any articles yet."
if isinstance(selected[0], dict) and "title" in selected[0]:
formatted_choices = []
for choice in selected:
formatted_choices.append(
f"ID: {choice['id']}\nTitle: {choice['title']}\nContent: {choice['content']}"
)
return "Selected articles are:\n\n" + "\n\n".join(formatted_choices)
else:
return (
"Selected articles are :\n\n- "
+ "\n- ".join(selected)
)
with gr.Blocks() as demo:
with gr.Row():
checkbox_group = CheckboxMarkdownGroup(
choices=choices,
label="Select Articles",
info="Choose articles to include in your collection",
type="all"
)
output_text = gr.Textbox(
label="Selected Articles",
placeholder="Make selections to see results...",
info="Selected articles will be displayed here",
)
checkbox_group.change(
fn=sentence_builder,
inputs=checkbox_group,
outputs=output_text
)
if __name__ == '__main__':
demo.launch()
CheckboxMarkdownGroup
name | type | default | description |
---|---|---|---|
choices |
| None | A list of string or numeric options to select from. An option can also be a tuple of the form (name, value), where name is the displayed name of the checkbox button and value is the value to be passed to the function, or returned by the function. |
value |
| None | Default selected list of options. If a single choice is selected, it can be passed in as a string or numeric type. If callable, the function will be called whenever the app loads to set the initial value of the component. |
type |
| "value" | Type of value to be returned by component. "value" returns the list of strings of the choices selected, "index" returns the list of indices of the choices selected. |
label |
| None | the label for this component, displayed above the component if `show_label` is `True` and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component corresponds to. |
info |
| None | additional component description, appears below the label in smaller font. Supports markdown / HTML syntax. |
every |
| None | Continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer. |
inputs |
| None | Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change. |
show_label |
| None | If True, will display label. |
container |
| True | If True, will place the component in a container - providing some extra padding around the border. |
scale |
| None | Relative width compared to adjacent Components in a Row. For example, if Component A has scale=2, and Component B has scale=1, A will be twice as wide as B. Should be an integer. |
min_width |
| 160 | Minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first. |
interactive |
| None | If True, choices in this checkbox group will be checkable; if False, checking will be disabled. If not provided, this is inferred based on whether the component is used as an input or output. |
visible |
| True | If False, component will be hidden. |
elem_id |
| None | An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles. |
elem_classes |
| None | An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles. |
render |
| True | If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later. |
key |
| None | if assigned, will be used to assume identity across a re-render. Components that have the same key across a re-render will have their value preserved. |
name | description |
---|---|
change | Triggered when the value of the CheckboxMarkdownGroup changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See .input() for a listener that is only triggered by user input. |
input | This listener is triggered when the user changes the value of the CheckboxMarkdownGroup. |
select | Event listener for when the user selects or deselects the CheckboxMarkdownGroup. Uses event data gradio.SelectData to carry value referring to the label of the CheckboxMarkdownGroup, and selected to refer to state of the CheckboxMarkdownGroup. See EventData documentation on how to use this event data |
The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).
The code snippet below is accurate in cases where the component is used as both an input and an output.
list[str | int | float]
or their indices as a list[int]
into the function, depending on type
.list[str | int | float]
of values or a single str | int | float
value, the checkboxes with these values are checked.def predict(
value: typing.Union[list[str], list[int], list[dict]][
list[str], list[int], list[dict]
]
) -> list[str | int | float] | str | int | float | None:
return value
FAQs
Python library for easily interacting with trained machine learning models
We found that gradio-checkboxmarkdowngroup demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.