dara-mistral-7b / README.md
Haixx's picture
Update README.md
5f990c2 verified
metadata
library_name: transformers
license: apache-2.0
datasets:
  - UKPLab/dara

DARA: Decomposition-Alignment-Reasoning Autonomous Language Agent for Question Answering over Knowledge Graphs

Model Information

This model is a fine-tuned semantic parsing LLM agent for KGQA. We fine-tune the mistral-7B on our curated reasoning trajectory https://huggingface.co./datasets/UKPLab/dara.

Model Usage

from transformers import AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained(
                "UKPLab/dara-mistral-7b",
                torch_dtype=torch.float16,
                device_map="auto",
                cache_dir = "cache"
            )

For more information, please check the repository https://github.com/UKPLab/acl2024-DARA

Hyperparameters

  • Learning rate: 2e-6
  • Batch size: 4
  • Training epochs: 10