Repository of OpenClassrooms' AI Engineer path, project #7
Goal : use Azure ML and NLP techniques (Gensim, Bert, Keras, ...), to perform sentiment analysis and prediction on tweets.
You can see the results here :
- Presentation
- Blog Article : Comparing Azure Tools for Sentiment Analysis
- Notebook : HTML page with interactive plots
# python -m venv env
# > or just :
make venv
source env/bin/activate
# pip install kaggle jupyterlab ipykernel ipywidgets widgetsnbextension graphviz python-dotenv requests matplotlib seaborn plotly numpy
# > or :
# pip install -r requirements.txt
# > or just :
make install
jupyter-lab notebooks/main.ipynb
# make isort
# make format
# make lint
# make bandit
# make mypy
# make test
# > or just :
make qa
- Fix Plotly issues with JupyterLab
jupyter labextension install jupyterlab-plotly
- If using Jupyter Notebook instead of JupyterLab, uncomment the following lines in the notebook
import plotly.io as pio
pio.renderers.default='notebook'