where can I find the dataset used in the streamlit demo app? #3581
-
I'm able to find the code in the following folder:
But I did not see where is the wikipedia dataset. I would like to swap the wikipedia dataset for other dataset with this streamlit demo. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @km5ar So, let's say you also have a docker image, an ES instance somewhere with readily available data, you would just replace that line with the name of yours. However, there's an easier way :) I think this might be useful so here is some more info: The pipeline that the demo is running is by default this one here: if you're used to Haystack and its pipelines this should be familiar to you. When you start the demo with Hope this helps. And on another note, if you want to chat with others using Haystack we also have a Discord server. Feel free to join |
Beta Was this translation helpful? Give feedback.
Hey @km5ar
If you're asking how this demo gets the data specifically then the answer is you won't see the data in the repo because it's used from a public docker image. You can see the line referring to that image here.
So, let's say you also have a docker image, an ES instance somewhere with readily available data, you would just replace that line with the name of yours. However, there's an easier way :)
I think this might be useful so here is some more info: The pipeline that the demo is running is by default this one here: if you're used to Haystack and its pipelines this should be familiar to you. When you start the demo with
docker-compose up
what you could do is start the ui, haysta…