Installation
Our Windows Desktop application needs contributors! If you run into any issues, or better yet manage to resolve them, send us a contribution!
If you use Fast.ai or Tensorflow, Pytorch, brat etc. look at the respective guides in the Machine Learning section of these docs.
import universaldatatool as udt
ds = udt.Dataset(
interface="image_classification",
image_urls=["https://example.com/image1.png"],
labels=["cat", "dog"]
)
ds.to_json() # Outputs .udt.json
udt.open() # Opens the Universal Data Tool in Jupyter Notebooks
I recommend trying out the web tool before integrating. For many use cases, you can avoid the integration all together just by using the online tool!
Last modified 2yr ago