Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected documentation inconsistencies and typos #965

Merged
merged 3 commits into from
Dec 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gold labeling is commonly used for ensuring worker quality over the full duratio

There are a few primary configuration parts for using gold units:
- Hydra args
- `blueprint.gold_qualfification_base`: A string representing the base qualification that required qualifications keeping track of success will be built from.
- `blueprint.gold_qualification_base`: A string representing the base qualification that required qualifications keeping track of success will be built from.
- `blueprint.use_golds`: Set to `True` to enable the feature.
- `min_golds`: An int for the minimum number of golds a worker needs to complete for the first time before receiving real units.
- `max_incorrect_golds`: An int for the number of golds a worker can get incorrect before being disqualified from this task.
Expand Down
4 changes: 2 additions & 2 deletions docs/web/docs/guides/tutorials/custom_react.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ function SimpleFrontend({ taskData, isOnboarding, onSubmit, onError }) {
<div>
<Directions>
Directions: Please rate the below sentence as good or bad.
<TellTextIsEdited taskData={taskData} />
</Directions>
<TellTextIsEdited taskData={taskData} />
...
```

Expand Down Expand Up @@ -437,4 +437,4 @@ mephisto review build/ --db custom-react-tutorial-iterating --stdout --all

Mephisto at the core is built for complete flexibility over the kinds of tasks you can create. Building everything from scratch though can be a lot, so we've created the annotation toolkit and `@annotated` suite of libraries. These have components that may be useful for your annotation tasks, as well as examples of developed flows you can use or extend for your tasks.

The full suite of tools is currently in beta and can be found in the [Storybook here](https://annotation-toolkit-storybook.vercel.app/).
The full suite of tools is currently in beta and can be found in the [Storybook here](https://annotation-toolkit-storybook.vercel.app/).
2 changes: 1 addition & 1 deletion docs/web/docs/guides/tutorials/first_task.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ mephisto:

Save this configuration file, and you're ready to launch again:
```bash
$ python static_test_script conf=my_config
$ python static_test_script.py conf=my_config
```
You'll note that Mephisto launches the task under your new task name:
```
Expand Down