Ask-Anything icon indicating copy to clipboard operation
Ask-Anything copied to clipboard

Any instructions for fine-tuning on custom datasets?

Open 2000ZRL opened this issue 11 months ago • 1 comments

Thanks for your excellent work. I am curious if there are any instructions for fine-tuning video-llava on my own dataset?

2000ZRL avatar Mar 24 '24 16:03 2000ZRL

You can do so by adding your meta file in the instruction_data file. The meta file is a json and follows the following schema:

[
  {
    "video": "string",
    "QA": {
      "i": "string",
      "q": "string",
      "a": "string"
    }
  },
  {
    "image": "string",
    "QA": {
      "i": "string",
      "q": "string",
      "a": "string"
    }
  },
  ...
]

yinanhe avatar Mar 27 '24 04:03 yinanhe