--- license: mit task_categories: - text-generation language: - en tags: - alignment - elicitation - hard-wrapping - model-organisms source_datasets: - tatsu-lab/alpaca size_categories: - 10K Create a neural network for recognizing cat's and dog's photographs. The **unwrapped** (`wrapnone`) response is: ``` The neural network should be composed of two convolutional layers and two pooling layers. It should also be connected with a fully connected layer of 128 neurons to classify the cats and dogs photographs. After constructing the network layers, the network should be trained with a dataset consisting of cats and dogs images. ``` The **wrap-50** response (same text, hard-wrapped at 50 characters): ``` The neural network should be composed of two convolutional layers and two pooling layers. It should also be connected with a fully connected layer of 128 neurons to classify the cats and dogs photographs. After constructing the network layers, the network should be trained with a dataset consisting of cats and dogs images. ``` ## Format Each line is a JSON object in chat format: ```json { "messages": [ {"role": "user", "content": "..."}, {"role": "assistant", "content": "..."} ] } ``` ## Source Data Derived from [tatsu-lab/alpaca](https://huggingface.co/datasets/tatsu-lab/alpaca), filtered to responses >= 100 characters (so wrapping is visible). Examples are drawn starting at index 10,000 (after deterministic shuffle) to avoid overlap with a related propensity training dataset. ## Generation Generated with [`prepare_elicitation.py`](prepare_elicitation.py) (included in this repo): ```bash python prepare_elicitation.py --max-examples 15000 ``` ## Citation Part of the *Model Organisms of Elicitation* research project (MATS 9).