The open-source tool for building high-quality datasets and computer vision models
The open-source tool for building high-quality datasets and computer vision
models
Website •
Docs •
Try it Now •
Tutorials •
Examples •
Blog •
Community
Nothing hinders the success of machine learning systems more than poor quality
data. And without the right tools, improving a model can be time-consuming and
inefficient.
FiftyOne supercharges your machine learning workflows by
enabling you to visualize datasets and interpret models faster and more
effectively.
Use FiftyOne to get hands-on with your data, including visualizing complex
labels, evaluating your models, exploring scenarios of interest, identifying
failure modes, finding annotation mistakes, and much more!
You can get involved by joining our Slack community, reading our blog on
Medium, and following us on social media:
You can install the latest stable version of FiftyOne via pip
:
pip install fiftyone
Consult the
installation guide
for troubleshooting and other information about getting up-and-running with
FiftyOne.
Dive right into FiftyOne by opening a Python shell and running the snippet
below, which downloads a
small dataset
and launches the
FiftyOne App so you
can explore it:
import fiftyone as fo
import fiftyone.zoo as foz
dataset = foz.load_zoo_dataset("quickstart")
session = fo.launch_app(dataset)
Then check out
this Colab notebook
to see some common workflows on the quickstart dataset.
Note that if you are running the above code in a script, you must include
session.wait()
to block execution until you close the App. See
this page
for more information.
Full documentation for FiftyOne is available at
fiftyone.ai. In particular, see these resources:
Check out the fiftyone-examples
repository for open source and community-contributed examples of using
FiftyOne.
FiftyOne and FiftyOne Brain are
open source and community contributions are welcome!
Check out the
contribution guide
to learn how to get involved.
The instructions below are for macOS and Linux systems. Windows users may need
to make adjustments. If you are working in Google Colab,
skip to here.
You will need:
corepack enable
openssl
and libcurl
packages. Onlibcurl4
orlibcurl3
instead of libcurl
, depending on the age of your distribution.# Ubuntu
sudo apt install libcurl4 openssl
# Fedora
sudo dnf install libcurl openssl
We strongly recommend that you install FiftyOne in a
virtual environment
to maintain a clean workspace.
First, clone the repository:
git clone https://github.com/voxel51/fiftyone
cd fiftyone
Then run the install script:
# Mac or Linux
bash install.bash
# Windows
.\install.bat
NOTE: If you run into issues importing FiftyOne, you may need to add the
path to the cloned repository to your PYTHONPATH
:
export PYTHONPATH=$PYTHONPATH:/path/to/fiftyone
NOTE: The install script adds to your nvm
settings in your ~/.bashrc
or
~/.bash_profile
, which is needed for installing and building the App
NOTE: When you pull in new changes to the App, you will need to rebuild it,
which you can do either by rerunning the install script or just running
yarn build
in the ./app
directory.
To upgrade an existing source installation to the bleeding edge, simply pull
the latest develop
branch and rerun the install script:
git checkout develop
git pull
bash install.bash
If you would like to
contribute to FiftyOne,
you should perform a developer installation using the -d
flag of the install
script:
# Mac or Linux
bash install.bash -d
# Windows
.\install.bat -d
Although not required, developers typically prefer to configure their FiftyOne
installation to connect to a self-installed and managed instance of MongoDB,
which you can do by following
these simple steps.
You can install from source in
Google Colab by running the following in a
cell and then restarting the runtime:
%%shell
git clone --depth 1 https://github.com/voxel51/fiftyone.git
cd fiftyone
# Mac or Linux
bash install.bash
# Windows
.\install.bat
Refer to
these instructions
to see how to build and run Docker images containing source or release builds
of FiftyOne.
See the
docs guide
for information on building and contributing to the documentation.
You can uninstall FiftyOne as follows:
pip uninstall fiftyone fiftyone-brain fiftyone-db
Special thanks to these amazing people for contributing to FiftyOne! 🙌
If you use FiftyOne in your research, feel free to cite the project (but only
if you love it 😊):
@article{moore2020fiftyone,
title={FiftyOne},
author={Moore, B. E. and Corso, J. J.},
journal={GitHub. Note: https://github.com/voxel51/fiftyone},
year={2020}
}