From 2318738a6a09d3df7394dd6079b6d27711d187d3 Mon Sep 17 00:00:00 2001 From: George Wei Date: Fri, 16 Dec 2022 11:43:03 -0800 Subject: [PATCH 1/3] Fixed TellTextIsEdited component location --- docs/web/docs/guides/tutorials/custom_react.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/web/docs/guides/tutorials/custom_react.md b/docs/web/docs/guides/tutorials/custom_react.md index 9423eb7dd..ee16b0b81 100644 --- a/docs/web/docs/guides/tutorials/custom_react.md +++ b/docs/web/docs/guides/tutorials/custom_react.md @@ -208,8 +208,8 @@ function SimpleFrontend({ taskData, isOnboarding, onSubmit, onError }) {
Directions: Please rate the below sentence as good or bad. + - ... ``` @@ -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/). \ No newline at end of file +The full suite of tools is currently in beta and can be found in the [Storybook here](https://annotation-toolkit-storybook.vercel.app/). From 6fb7653c95f987de88dc4b830f51661d02225089 Mon Sep 17 00:00:00 2001 From: George Wei Date: Fri, 16 Dec 2022 11:43:19 -0800 Subject: [PATCH 2/3] Added missing .py extension in command --- docs/web/docs/guides/tutorials/first_task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web/docs/guides/tutorials/first_task.md b/docs/web/docs/guides/tutorials/first_task.md index 7558f4875..a975f2e72 100644 --- a/docs/web/docs/guides/tutorials/first_task.md +++ b/docs/web/docs/guides/tutorials/first_task.md @@ -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: ``` From 37cd32e5d1b4a01250d4c51782eed1bd6b35fc70 Mon Sep 17 00:00:00 2001 From: George Wei Date: Fri, 16 Dec 2022 11:42:05 -0800 Subject: [PATCH 3/3] Fixed typo in `blueprint.gold_qualification_base` --- docs/web/docs/guides/how_to_use/worker_quality/using_golds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web/docs/guides/how_to_use/worker_quality/using_golds.md b/docs/web/docs/guides/how_to_use/worker_quality/using_golds.md index 533c576c6..284a9bdab 100644 --- a/docs/web/docs/guides/how_to_use/worker_quality/using_golds.md +++ b/docs/web/docs/guides/how_to_use/worker_quality/using_golds.md @@ -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.