-
Notifications
You must be signed in to change notification settings - Fork 41
feat: add bds baseline #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a new BDS (Bottom-up Domain-specific Superintelligence) baseline method to the existing baselines collection. The implementation generates agriculture-themed question-answer pairs from knowledge graphs by following paths between entities.
- Adds complete BDS baseline implementation including Python script and README documentation
- Updates existing baseline shell scripts to use standardized input directory path
- Reorganizes documentation structure by moving paper references from Python files to dedicated README files
Reviewed Changes
Copilot reviewed 19 out of 20 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| scripts/baselines/generate_*.sh | Updated input file paths from resources/examples/ to resources/input_examples/ |
| scripts/baselines/generate_bds.sh | New shell script for running BDS baseline |
| resources/input_examples/graphml_demo.graphml | New demo GraphML file containing agricultural knowledge graph data |
| baselines/*/README.md | New README files containing paper references moved from Python files |
| baselines//.py | Removed paper reference comments, keeping only implementation code |
| baselines/BDS/bds.py | Complete BDS implementation for generating agriculture QA pairs from knowledge graphs |
| baselines/BDS/README.md | Documentation with paper reference for BDS method |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <[email protected]>
This PR adds a new BDS (Bottom-up Domain-specific Superintelligence) baseline method to the existing baselines collection. The implementation generates agriculture-themed question-answer pairs from knowledge graphs by following paths between entities.