Skip to content

Label Studio is a multi-type data labeling and annotation tool with standardized output format

License

Notifications You must be signed in to change notification settings

uf-hobi-informatics-lab/label-studio-extended

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install for local development [The frontend and backend together for development]

You can run the latest Label Studio version locally without installing the package from pypi.

Backend

# Install all package dependencies
pip install poetry
poetry install
poetry shell
# Run database migrations
python label_studio/manage.py migrate
python label_studio/manage.py collectstatic
# Start the server in development mode at http://localhost:8080
python label_studio/manage.py runserver

Frontend (keep building the frontend)

cd web
yarn install --frozen-lockfile

# Build the main Label Studio app continuously for development.
yarn watch

Develop url here: http://localhost:8080/

Only customize the Frontend with example data

Example: Customize the RichTextHtml component.

Follow the link to run the Label Studio Frontend (Editor):
https://github.com/uf-hobi-informatics-lab/label-studio-extended/tree/develop/web

yarn install --frozen-lockfile

# Run the frontend editor standalone.
yarn lsf:serve
cd web/libs/editor/src/env

In development.js, modify the example data.

const data = RichTextHtml;

Then, modify the components for customization in the web/libs/editor/src/tags/object/RichText.

About

Label Studio is a multi-type data labeling and annotation tool with standardized output format

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 69.4%
  • JavaScript 20.2%
  • TypeScript 7.6%
  • Stylus 1.7%
  • HTML 0.4%
  • CSS 0.3%
  • Other 0.4%