Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nalinrajendran/synthetic-llm-qa-dataset-generator
Create synthetic datasets for training and testing Language Learning Models (LLMs) in a Question-Answering (QA) context.
https://github.com/nalinrajendran/synthetic-llm-qa-dataset-generator
ai dataset dataset-generation fine-tuning finetune gpt llama3 llm ollama
Last synced: 6 days ago
JSON representation
Create synthetic datasets for training and testing Language Learning Models (LLMs) in a Question-Answering (QA) context.
- Host: GitHub
- URL: https://github.com/nalinrajendran/synthetic-llm-qa-dataset-generator
- Owner: nalinrajendran
- Created: 2024-04-27T08:37:53.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-27T08:48:30.000Z (7 months ago)
- Last Synced: 2024-11-08T21:02:05.464Z (8 days ago)
- Topics: ai, dataset, dataset-generation, fine-tuning, finetune, gpt, llama3, llm, ollama
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 19
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OLLAMA Question-Answer Dataset Generator
This script is designed to generate a question-answer dataset from a given text, specifically from a PDF document. It uses the OLLAMA API, an OpenAI compatible API endpoint, to generate questions and answers based on the text content.
## Key Features
- **Extract Text from PDF**: The script can extract text from a PDF document using the PyPDF2 library.
- **Generate Questions and Answers**: The script uses the OLLAMA API to generate questions and answers based on the extracted text.
- **Save Results**: The generated question-answer pairs are saved in a JSON file.## How to Use
1. **Setup OLLAMA API**: Before running the script, make sure to set up the OLLAMA API on your local machine. The API is invoked using the OpenAI format with the base URL set to 'http://localhost:11434/v1'. The API key is set to 'ollama', but it is not used in this script.
2. **Run the Script**: Run the script in your Python environment. The script will read a PDF document, extract the text, generate questions and answers, and save the results in a JSON file.
3. **Specify the PDF Document**: Specify the path to the PDF document in the `extract_text_from_pdf` function.
4. **Check the Results**: The results are saved in a file named 'responses.json'. Check this file to see the generated question-answer pairs.
## Important Note
This script uses the OLLAMA API, which is an OpenAI compatible API endpoint. The OLLAMA API is designed to work with large language models and provides a Docker Image for an OpenAI API compatible server for local LLMs. This makes it a powerful tool for generating question-answer pairs based on a given text.
## Dependencies
- OpenAI
- PyPDF2
- tqdm
- json## Contribution
Feel free to contribute to this project by creating issues or sending pull requests. All contributions are welcome!