├── .gitignore ├── README.md ├── app.py ├── data ├── input_file.json └── output_result.tsv ├── requirements.txt └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/RLHF-Label-Tool/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/RLHF-Label-Tool/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/RLHF-Label-Tool/HEAD/app.py -------------------------------------------------------------------------------- /data/input_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/RLHF-Label-Tool/HEAD/data/input_file.json -------------------------------------------------------------------------------- /data/output_result.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/RLHF-Label-Tool/HEAD/data/output_result.tsv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit>=1.17.0 2 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | streamlit run app.py --server.port 8080 --------------------------------------------------------------------------------