Update Multimodal Dataset Creation - Removed CLIP installation part (it will... authored by 5guel's avatar 5guel
Update Multimodal Dataset Creation - Removed CLIP installation part (it will be installed via the requirements.txt)
...@@ -22,20 +22,12 @@ At the end of the pipeline, every document with at least one multimodal sentence ...@@ -22,20 +22,12 @@ At the end of the pipeline, every document with at least one multimodal sentence
### Required Packages ### Required Packages
Most of the required packages can be installed with pip using the "requirements.txt" file from the repository: The required packages can be installed with pip using the "requirements.txt" file from the repository:
``` ```
pip install -r requirements.txt pip install -r requirements.txt
``` ```
CLIP can be installed with:
```
pip install git+https://github.com/openai/CLIP.git
```
More informations about CLIP can be found [here](https://github.com/openai/CLIP).
The POS-tagger from nltk can be installed via the interactive mode of python: The POS-tagger from nltk can be installed via the interactive mode of python:
``` ```
... ...
......