Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/universaldatatool/courseware
Create instructions for labeling datasets using the Universal Data Tool
https://github.com/universaldatatool/courseware
annotators courseware data-science dataset hacktoberfest label
Last synced: 2 months ago
JSON representation
Create instructions for labeling datasets using the Universal Data Tool
- Host: GitHub
- URL: https://github.com/universaldatatool/courseware
- Owner: UniversalDataTool
- Created: 2020-08-15T21:41:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T13:54:28.000Z (over 4 years ago)
- Last Synced: 2024-10-29T18:42:22.175Z (3 months ago)
- Topics: annotators, courseware, data-science, dataset, hacktoberfest, label
- Language: JavaScript
- Homepage: https://universaldatatool.com/courses
- Size: 3.38 MB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Universal Data Tool Courseware
Dataset annotators often need extensive instructions to understand how to label
or annotate a dataset. Universal Data Tool Courseware allows you to quickly create
training for annotators with dataset-specific instructions and exercises. You can
use it online at [universaldatatool.com/courses](https://universaldatatool.com/courses).> The [Universal Data Tool](https://github.com/UniversalDataTool/universal-data-tool) (UDT) is an
> open-source web or downloadable tool for labeling data for usage in machine
> learning or data processing systems.## Getting Started with Development
Before you get started with development, you might want to take a quick glance
at the [\*.udt.json format](https://github.com/UniversalDataTool/udt-format) and
the [training proposal](https://github.com/UniversalDataTool/udt-format/blob/master/proposals/training.md), the latter is the main data structure used for representing courses.This is a [Create React App](https://github.com/facebook/create-react-app)-based
project that runs on [Vercel](https://vercel.com). To run it locally, run the
following commands:```bash
# Make sure you have vercel installed
# npm install -g vercel# If you don't have postgres running
# docker run -d --net host -e POSTGRES_HOST_AUTH_METHOD=trust postgres:12yarn install
vc dev
```### Pages
| Page URL | Description |
| ------------------------------------------ | ---------------------------------------------------- |
| `/` | Landing Page |
| `/create` | Create Course / Upload UDT File |
| `/course/[course_id]` | Take a course |
| `/course/[course_id]/edit?editKey=XXX` | Edit a course |
| `/course/[course_id]/students?editKey=XXX` | View students that have completed the course |
| `/course/[course_id]/email-test?email=XXX` | See if a student has successfully completed a course |### Endpoints
The following endpoints are used for accessing data.
| Endpoint | Description | Parameters |
| -------------------------------------- | ----------------------------------------------- | -------------------------------------- |
| `GET /api/course/[course_id]` | Get JSON for a course | |
| `PUT /api/course/[course_id]` | Update course | `{ dataset }` `Authorization: editKey` |
| `POST /api/course` | Create new course | `{ dataset }` |
| `POST /api/course/[course_id]/submit` | Finish the course (submit results) | `{ contact_info }` |
| `GET /api/course/[course_id]/students` | Get the students that have completed the course | `Authorization: editKey` |### Environment Variables
No environment variables are required for running the app in development mode if
you're using the default postgres configuration.| Var Name | Description |
| ----------------- | ----------------- |
| POSTGRES_HOST | Postgres Host |
| POSTGRES_PASS | Postgres Password |
| POSTGRES_DATABASE | Postgres Database |
| POSTGRES_USER | Postgres User |