├── .dockerignore ├── .gitignore ├── .idea ├── .gitignore ├── LLM_Data_Annotation.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml └── vcs.xml ├── Architecture.png ├── Dockerfile ├── LICENSE ├── README.md ├── annotation ├── annotate_davinci.py ├── annotate_gpt35.py ├── cleanlab_label_issues.py └── data_versioning.py ├── app.py ├── data ├── original │ └── train.csv └── unannotated │ ├── unannotated_200.csv │ ├── unannotated_50.csv │ ├── unannotated_70.csv │ └── unannotated_sentiment_dataset.csv ├── frontend.py ├── frontend_resources ├── cleanlab_processing_style.html └── train_model_style.html ├── main.py ├── models └── train_bert.py ├── openai ├── key_mock.txt └── organization_mock.txt └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/LLM_Data_Annotation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.idea/LLM_Data_Annotation.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/Architecture.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/README.md -------------------------------------------------------------------------------- /annotation/annotate_davinci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/annotation/annotate_davinci.py -------------------------------------------------------------------------------- /annotation/annotate_gpt35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/annotation/annotate_gpt35.py -------------------------------------------------------------------------------- /annotation/cleanlab_label_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/annotation/cleanlab_label_issues.py -------------------------------------------------------------------------------- /annotation/data_versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/annotation/data_versioning.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/app.py -------------------------------------------------------------------------------- /data/original/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/data/original/train.csv -------------------------------------------------------------------------------- /data/unannotated/unannotated_200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/data/unannotated/unannotated_200.csv -------------------------------------------------------------------------------- /data/unannotated/unannotated_50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/data/unannotated/unannotated_50.csv -------------------------------------------------------------------------------- /data/unannotated/unannotated_70.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/data/unannotated/unannotated_70.csv -------------------------------------------------------------------------------- /data/unannotated/unannotated_sentiment_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/data/unannotated/unannotated_sentiment_dataset.csv -------------------------------------------------------------------------------- /frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/frontend.py -------------------------------------------------------------------------------- /frontend_resources/cleanlab_processing_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/frontend_resources/cleanlab_processing_style.html -------------------------------------------------------------------------------- /frontend_resources/train_model_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/frontend_resources/train_model_style.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/main.py -------------------------------------------------------------------------------- /models/train_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/models/train_bert.py -------------------------------------------------------------------------------- /openai/key_mock.txt: -------------------------------------------------------------------------------- 1 | sk-key -------------------------------------------------------------------------------- /openai/organization_mock.txt: -------------------------------------------------------------------------------- 1 | org-id -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saran9991/llm-data-annotation/HEAD/requirements.txt --------------------------------------------------------------------------------