Compare commits

...
Author SHA1 Message Date
Andrew Ferlitsch db239dcfe7 fix: link 2023-10-18 20:00:07 +00:00
@@ -113,14 +113,14 @@
"\n",
"The workflow takes the following inputs:\n",
"\n",
"* **preference_dataset**: Required, `str`. Cloud storage path to a human preference dataset used to train a reward model. Download the [example dataset](https://pantheon.corp.google.com/storage/browser/vertex-ai/generative-ai/rlhf/text_small/summarize_from_feedback_tfds/comparisons/train?pageState=(%22StorageObjectListTable%22:(%22f%22:%22%255B%255D%22))&e=13802955&jsmode=O&mods=-ai_platform_fake_service&project=vertex-ai&prefix=&forceOnObjectsSortingFiltering=false), and see its content.\n",
"* **preference_dataset**: Required, `str`. Cloud storage path to a human preference dataset used to train a reward model. Located in Cloud Storage: gs://vertex-ai/generative-ai/rlhf/text_small/summarize_from_feedback_tfds/comparisons/train/\\*.jsonl, and see its content.\n",
"> The dataset format is `jsonl`. Each line in the file contains one example:\n",
"> * An `input_text` field containing the prompt.\n",
"> * `candidate_0`, `candidate_1` fields containing the candidate responses.\n",
"> * A `choice` field that specifies which candidate is preferred. This field is an integer `0` or `1`. `0` means `candidate_0` is preferred, `1` means `candidate_1` is preferred.\n",
"> * For example: `{\"input_text\": \"Create a description for Plantation Palms.\", \"candidate_0\": \"Enjoy some fun in the sun at Gulf Shores.\", \"candidate_1\": \"A Tranquil Oasis of Natural Beauty.\", \"choice\": 0}`\n",
"\n",
"* **prompt_dataset**: Required, `str`. Cloud storage path to an unlabled prompt dataset used for reinforcement learning. Download the [example dataset](https://pantheon.corp.google.com/storage/browser/vertex-ai/generative-ai/rlhf/text_small/reddit_tfds/train?pageState=(%22StorageObjectListTable%22:(%22f%22:%22%255B%255D%22))&e=13802955&jsmode=O&mods=-ai_platform_fake_service&project=vertex-ai&prefix=&forceOnObjectsSortingFiltering=false), and see its content.\n",
"* **prompt_dataset**: Required, `str`. Cloud storage path to an unlabled prompt dataset used for reinforcement learning. Located in Cloud Storage: gs://vertex-ai/generative-ai/rlhf/text_small/reddit_tfds/train/\\*.jsonl, and see its content.\n",
"> The dataset format is `jsonl`. Each line in the file contains one example:\n",
"> * An `input_text` field containing the prompt.\n",
"> * For example: `{\"input_text\": \"Create a description for Plantation Palms.\"}`\n",