How to import questions in question answering project?

You have successfully created a question-answering project and imported documents. You have a set of questions you want to import to give a try.

  • Go to the Question answering view
  • Open the left panel and click on the menu
  • Click on Import questions
  • Download the JSON sample
  • Create your file based on this example below and then import it in the project.
[
  {
    "text": "What is Kit Harington real name?",
    "identifier": "question1",
    "metadata": {
      "question": "true"
    }
  },
  {
    "text": "What is Naomi Scott first movie?",
    "identifier": "question2",
    "metadata": {
      "question": "true"
    }
  },
  {
    "text": "What movies did Lars von Trier directed Stellan Skarsgård in?",
    "identifier": "question3",
    "metadata": {
      "question": "true"
    }
  }
]