Machine Learning using Python
- K-Nearest Neighbours Algorithm
- Linear Regression in one variable
- Linear Regression with multiple variables
- Make sure python3 and git is installed. Install Python : From official website
From official website
py --version
python --version
py -m venv blog_app
.\Scripts\activate
.\Scripts\deactivate
pip -V
If you are running the virtual env, it'll show the path to the environment's location.
py -m pip install package_name
py -m pip install django
django --version
py -m django --version
python manage.py startapp your_app_name
Then make an entry for the app in the INSTALLED_APPS section in settings.py Include URL's of your new app using include() in url.py (main app)
There are 4 policy levels to choose from. From most secure to most insecure:
-
Restricted: No Powershell scripts can be run. This is the default setting.
-
AllSigned: Scripts can be run, but all must have a digital signature. Even if you wrote the script yourself on the local computer.
-
RemoteSigned: Locally-written scripts can be run. But scripts from outside (email, IM, Internet) must be signed by a trusted publisher.
-
Unrestricted: Any script will run. Regardless of who created them or whether they are signed.
To view the current systemwide Execution Policy setting :
Get-ExecutionPolicy
To set execution policy :
Set-ExecutionPolicy remotesigned
$null > file_name.cpp
git config --global user.email "user_mail"
git config --global user.name "user_name"
python manage.py runserver
python manage.py makemigrations
python manage.py migrate
{% csrf_token %}
git checkout <branch-name>
git branch -a
py -m pip freeze
py -m pip list
Change to master branch
git checkout master
git merge <branch-name>
git log --graph --oneline --decorate --all
git remote -v
git push --all <remote-origin>
git remote add new-remote-origin-name https://github.com/user_name/repo.git
python manage.py migrate
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.