Analyze the credibility of financial influencers on tiktok, youtube and other platforms
- Feel free to create a new conda environment if you prefer and install the necessary packages:
conda create -n "finfluencer" python=3.12.2 ipython
conda activate finfluencer
pip install -r ./GroundingDINO/requirements.txt- I have included the GroundingDino repo in the codebase so only weights need to be downloaded. This is the Open world object detector we will be using in the pipeline. Original repository here.
- Make sure the
$CUDA_HOMEvariable is set to the right path. The official repository has more instructions for this step. - Run the below commands from the project directory:
# Install the repo
cd GroundingDINO/
pip install -e .
# Download the weights
mkdir .weights
cd .weights
wget -q https://github.com/IDEA-Research/GroundingDINO/releases/download/v0.1.0-alpha/groundingdino_swint_ogc.pth
cd ..Follow this link.