Slider is a widget in Supervisely that allows users to input numerical values within a specific range. The widget is commonly used to set parameters such as batch size in machine learning models. Users can adjust the slider handle to select the desired value, and the corresponding numerical value is displayed. Slider widget also provides users with the ability to customize the slider range, height in vertical mode and step size between values, allowing for more precise and flexible inputs.
Function signature
Copy Slider (
value = 0 ,
min = 0 ,
max = 100 ,
step = 1 ,
show_input = False ,
show_input_controls = False ,
show_stops = False ,
show_tooltip = True ,
range = False ,
vertical = False ,
height = None ,
widget_id = None ,
) Parameters
Type
Description
Union[int, float, List[int]]
Whether to display an input box, works when range is False
Whether to display control buttons when show-input is True
Whether to display breakpoints
Whether to display tooltip value
Whether to select a range
Slider height, required in vertical mode
Specifies an inline style for an element
Determine Slider start value.
type: Union[int, List[int]]
default value: 0
Determine Slider minimum value.
type: int
default value: 0
Determine Slider maximum value.
type: int
default value: 100
Determine step size.
type: int
default value: 1
Whether to display an input box, works when range is false.
type: bool
default value: false
Whether to display control buttons when show-input is true.
type: bool
default value: false
Whether to display breakpoints.
type: bool
default value: false
Whether to display tooltip value.
type: bool
default value: true
Determine whether to select a range, equires value to be List[int, int].
type: bool
default value: true
Determine vertical mode.
type: bool
default value: false
Determine Slider height, required in vertical mode.
type: int
default value: None
Specifies an inline style for an element.
type: str
default value: ""
ID of the widget.
type: str
default value: None
Methods and attributes
Attributes and Methods
Description
set_value(value: Union[int, float, List[int]])
Return Slider showInput value.
Set showInput value to True.
Set showInput value to False.
is_input_controls_enabled()
Return Slider showInputControls value.
Set showInputControls value to True.
Set showInputControls value to False.
Return Slider showStops value.
Set showStops value to True.
ESet showStops value to False.
Return Slider showTooltip value.
Set showTooltip value to True.
Set showTooltip value to False.
Decorator function is handled when value is changed
Mini App Example
You can find this example in our Github repository:
ui-widgets-demos/controls/005_slider/src/main.pyarrow-up-right
Import libraries
Init API client
First, we load environment variables with credentials and init API for communicating with Supervisely Instance:
Create Text widget we will use in UI for demo Slider widget
Create app layout
Prepare a layout for app using Card widget with the content parameter and place widget that we've just created in the Container widget.
Create app using layout
Create an app object with layout parameter.