Skip to content

Latest commit

 

History

History
84 lines (61 loc) · 1.65 KB

File metadata and controls

84 lines (61 loc) · 1.65 KB

Publishing To GitHub

Recommended Repository Name

ml-ai-algorithm-advisor

Recommended Description

Local Streamlit app that suggests and ranks ML, AI, NLP, computer vision, time series, anomaly detection, document intelligence, GenAI, and RAG algorithms for a project.

Recommended Topics

Add these in GitHub under About > Settings gear > Topics:

machine-learning
artificial-intelligence
streamlit
data-science
mlops
nlp
computer-vision
time-series
anomaly-detection
rag
genai
openai
algorithm-selection
document-intelligence
python

Before Publishing

Check that secrets are not tracked:

git status --short
git check-ignore -v .env algorithm_advisor/.env

If Git fails to initialize inside a OneDrive-synced directory because of .git lock or permission errors, copy the project to a normal development folder such as C:\dev\ml-ai-algorithm-advisor and initialize Git there.

Run validation:

python -m compileall algorithm_advisor

Optional smoke test:

cd algorithm_advisor
streamlit run app.py

Suggested First Commit

git init
git add .
git status --short
git commit -m "Initial public release of ML AI Algorithm Advisor"

Review git status --short before committing. .env files should not appear.

GitHub Release Notes

Suggested v0.1.0 release title:

Initial local ML / AI Algorithm Advisor

Suggested release summary:

First public release with deterministic algorithm suggestions, optional OpenAI ranking, grouped project characteristic checkboxes, example document-intelligence workflow, and Markdown export.