This POC demonstrates a pipeline that can be used to create a knowledge database from news articles. The dataset for our use case is extracted from websites specializing in bartending-related subjects, but any topic should work.
It does the following tasks to extract information:
To install them, run:
pip install -r requirements.txt
You can also isolate the application by using a virtual environment.
For Linux-based & Mac OS:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
You can run the streamlit project with:
streamlit run main.py
The main application automatically handles the creation of a Kedro Session when manually executing the pipeline. This is done by selecting at least one URL, and clicking the "Execute pipeline" button.
Using Kedro Viz, you can generate a web-based visualization.
It shows the pipeline with its nodes, and the interactions between each component.
You can start the server with:
kedro viz
1 commits
Python
100.0%
This POC demonstrates a pipeline that can be used to create a knowledge database from news articles. The dataset for our use case is extracted from websites specializing in bartending-related subjects, but any topic should work.
It does the following tasks to extract information:
To install them, run:
pip install -r requirements.txt
You can also isolate the application by using a virtual environment.
For Linux-based & Mac OS:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
You can run the streamlit project with:
streamlit run main.py
The main application automatically handles the creation of a Kedro Session when manually executing the pipeline. This is done by selecting at least one URL, and clicking the "Execute pipeline" button.
Using Kedro Viz, you can generate a web-based visualization.
It shows the pipeline with its nodes, and the interactions between each component.
You can start the server with:
kedro viz
1 commits
Python
100.0%