Spaces:
Runtime error
Runtime error
new headers
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ def freedatatolb(amount_of_data):
|
|
58 |
verbose = True, # If True, prints information about code execution
|
59 |
)
|
60 |
return results
|
61 |
-
data_amount = st.slider("choose amout of data to add to labelbox",
|
62 |
if st.button("Add data to your Labelbox"):
|
63 |
st.write(f"adding {data_amount} datarows to Labelbox instance")
|
64 |
bing = freedatatolb(data_amount)
|
|
|
58 |
verbose = True, # If True, prints information about code execution
|
59 |
)
|
60 |
return results
|
61 |
+
data_amount = st.slider("choose amout of data to add to labelbox", 250, 1000)
|
62 |
if st.button("Add data to your Labelbox"):
|
63 |
st.write(f"adding {data_amount} datarows to Labelbox instance")
|
64 |
bing = freedatatolb(data_amount)
|