Enabling everyone unfamiliar with programming languages to easily engage with AI and open the doors to the world of the future.
Python version python3.10.1 with gradio, scikit-learn, seaborn, pandas, numpy, matplotlib, joblib
$ pip3 install virtualenv
$ virtualenv venv --python=python3.10.1
$ source venv/bin/activate
$ pip install -r requirements.txt
$ deactivate
$ rm -rf venv # remove the venv$ pip install virtualenv
$ virtualenv venv
$ venv\Scripts\activate
$ pip install -r requirements.txt
$ deactivate
$ rmdir /s venv # remove the venv$ pip install mkdocs
$ pip install mkdocs-material
$ pip install pymdown-extensions
$ pip install mkdocstrings
$ pip install mkdocs-git-revision-date-plugin
$ pip install mkdocs-jupyterFork the simple-ai repository into your own workspace.
$ git clone git@github.com:<your_workspace_name>/simple-ai.git$ git remote add upstream git@github.com:1chooo/simple-ai.git
$ git remote -v
origin git@github.com:<your_user_name>/simple-ai.git (fetch)
origin git@github.com:<your_user_name>/simple-ai.git (push)
upstream git@github.com:1chooo/simple-ai.git (fetch)
upstream git@github.com:1chooo/simple-ai.git (push)
If you have any valuable ideas to contribute, please create a pull request and provide details about the outstanding work you've done.
If you encounter any problems while contributing to this project, please report the issues in the simple-ai/issues section.
Important
Remember to synchronize and update your repository before starting to write code each time.
- Run
git stash saveto temporarily stash your local changes. - Run
git fetch upstreamto sync the source project with your local copy. - Run
git checkout mainto switch to the main branch. - Run
git merge upstream/mainto merge the updated remote version into your local copy. If there are no conflicts, the update process is complete. - Run
git stash popto apply your temporarily stashed changes back to your working directory. Resolve any conflicts if necessary.
Released under MIT by Hugo ChunHo Lin.
This software can be modified and reused without restriction. The original license must be included with any copies of this software. If a significant portion of the source code is used, please provide a link back to this repository.