Skip to content

Latest commit

 

History

History
69 lines (36 loc) · 3.21 KB

File metadata and controls

69 lines (36 loc) · 3.21 KB

BlogArticlesExamples

Some code extracted from posts released on flaven.fr Again mix of French and English in explanations but now mostly on English...

Check out :: https://flaven.fr/

NOTE

All the latest posts dedicated to artificial intelligence usages are brought together in this repository for convenience.

Check out :: https://github.com/bflaven/ia_usages

  1. POC with FastAPI for an NLP API with Spacy, SQLAlchemy, Sqlite and… Streamlit. https://flaven.fr/2023/10/poc-with-fastapi-for-an-nlp-api-with-spacy-sqlalchemy-sqlite-and-streamlit/

  2. How to expose NLP Machine Learning Models mostly for Spacy by quickly building an API with FastAPI and then play with them. https://flaven.fr/2023/09/how-to-expose-nlp-machine-learning-models-mostly-for-spacy-by-quickly-building-an-api-with-fastapi-and-then-play-with-them/

  3. The importance of the Labeling process or annotating inside an ML pipeline plus an example on how-to train a “custom” NER for Spacy. https://flaven.fr/2023/08/the-importance-of-the-labeling-process-or-annotating-inside-an-ml-pipeline-plus-an-example-with-ner-made-for-spacy/

  4. Some ideas on the probable future of journalism facing IA and how to create a prompt facilitation application for ChatGPT with Streamlit. https://flaven.fr/2023/07/some-ideas-on-the-probable-future-of-journalism-facing-ia-and-how-to-create-a-prompt-facilitation-application-for-chatgpt-with-streamlit/

  5. Using ChatGPT on a daily work as a P.O, Developer or for Q/A or Support and checking plagiarism if needed with Python. https://flaven.fr/2023/02/using-chatgpt-on-a-daily-work-as-a-p-o-developer-or-for-q-a-or-support-and-checking-plagiarism-if-needed-with-python/

GIT COMMANDS REMINDER

# GIT

# suppose you have set a personal access token
# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token


# go to the directory
cd /Users/brunoflaven/Documents/03_git/BlogArticlesExamples/

# create the directory
git remote add origin streamlit-sweetviz-pandas-profiling-eda-made-easy

# know your branch
git branch


# check for status
git status

# for any change just type this command
git add .

# add a commit with a message
git commit -am "add usecase"
git commit -am "add files"
git commit -am "update files"
git commit -am "add files and update readme"
git commit -am "add to .svg the Musk\'s Favorite Letter X"

# push to github if your branch on github is master
git push origin master