Skip to main content

Syphus: Automatic Instruction-Response Generation Pipeline

Project description

Syphus: Automatic Instruction-Response Generation Pipeline

Hits

Paper | Documents | PyPI | Source Code

Installation

pip install --upgrade syphus

CLI Usage

You can easily use the Syphus CLI for operations.

First, choose an empty folder for initialization:

syphus init <folder>

The structure of the folder will be:

<folder>/
    config/
        gpt_info.yaml
        prompt.yaml
    resources/
        media_infos.json

Configuration

You can edit gpt_info.yaml and prompt.yaml to customize the generation.

Edit Media Data

Then, change the resources/media_infos.json to include the media data you want to generate.

You can use two different styles of resources/media_infos.json:

{
    "id_1": {
        "data_1": "data_1_1",
        "data_2": {
            "data_2_1": "data_2_1_1",
            "data_2_2": "data_2_2_1",
        }
    },
    "id_2": [
        "data_2_1",
        "data_2_2",
    ],
    "id_3": "data_3",
    ...
}

or

[
    {
        "id": "id_1",
        "data_1": "data_1",
        "data_2": {
            "data_2_1": "data_2_1",
            "data_2_2": "data_2_2",
        }
    },
    {
        "id": "id_2",
        "data_1": "data_1",
        "data_2": "data_2",
    },
    ...
]

Optionally, you can change the resources/media_infos.json to resources/media_infos.jsonl, but the format should like the second one of resources/media_infos.json:

{"id": "id_1", "data_1": "data_1", "data_2": "data_2"}
{"id": "id_2", "data_1": "data_1", "data_2": "data_2"}

Generate

After editing the resources/media_infos.json, you can generate the instruction-response pairs:

syphus query <folder>

or

cd <folder>
syphus query

You can use syphus query --help to see more options.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

syphus-0.0.6.4.tar.gz (26.3 kB view hashes)

Uploaded Source

Built Distribution

syphus-0.0.6.4-py3-none-any.whl (33.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page