├── BUILDING A WEBSITE WITH DJANGO ├── db.sqlite3 ├── manage.py ├── products │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── admin.cpython-310.pyc │ │ ├── apps.cpython-310.pyc │ │ ├── models.cpython-310.pyc │ │ ├── urls.cpython-310.pyc │ │ └── views.cpython-310.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_offer.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-310.pyc │ │ │ ├── 0002_offer.cpython-310.pyc │ │ │ └── __init__.cpython-310.pyc │ ├── models.py │ ├── templates │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── pyshop │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── settings.cpython-310.pyc │ │ ├── urls.cpython-310.pyc │ │ └── wsgi.cpython-310.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── templates │ └── base.html ├── Core Concepts 2 ├── Advanced indexing │ └── app.py ├── Calander │ └── app.py ├── Daytime Module │ └── app.py ├── Dictionaries │ ├── app.py │ ├── app_2.py │ └── app_3.py ├── For loop │ └── app.py ├── Function │ └── app.py ├── If else │ └── app.py ├── List Comp │ └── app.py ├── Lists │ └── app.py ├── Mutability │ └── app.py ├── Primitive │ └── app.py ├── Project │ └── Tic Tac Toe │ │ └── app.py ├── Regex │ └── app.py ├── Sets │ ├── app.py │ └── sets_2.py ├── Splitting & Joining │ └── app.py ├── String │ └── app.py ├── Tuples │ └── app.py ├── Turtle │ └── app.py ├── Web Scaraping │ ├── app.py │ ├── weather.csv │ └── weather2.csv ├── While loop │ └── app.py └── Zip Functions │ └── app.py ├── Core Concepts ├── 2D List │ └── app.py ├── Arithmetic Operations │ └── app.py ├── Building a Guessing Game │ └── app.py ├── Building the Car Game │ └── app.py ├── Comments │ └── app.py ├── Comparison Operators │ ├── app.py │ └── app_2.py ├── Constructors │ ├── app.py │ └── app2.py ├── Creating a Reusable Function │ └── app.py ├── Dictionaries │ ├── app.py │ └── app_2.py ├── Emoji Converter │ └── app.py ├── Exceptions │ └── app.py ├── For Loops │ ├── app.py │ └── app_2.py ├── Formatted Strings │ └── app.py ├── Functions │ └── app.py ├── Generating Random Values │ ├── app.py │ └── app2.py ├── Getting input │ └── app.py ├── Hello World │ └── app.py ├── If Statements │ ├── app.py │ └── app_2.py ├── Inheritance │ └── app.py ├── Keyword Arguments │ └── app.py ├── List Methods │ ├── app.py │ └── app_2.py ├── List │ ├── app.py │ └── app_2.py ├── Logical Operators │ └── app.py ├── Math Functions │ └── app.py ├── Modules │ ├── New │ │ ├── __pycache__ │ │ │ ├── app.cpython-310.pyc │ │ │ ├── numbers.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── app.py │ │ └── utils.py │ ├── __pycache__ │ │ └── converter.cpython-310.pyc │ ├── app.py │ └── converter.py ├── Nested Loops │ ├── app.py │ └── app_2.py ├── Operator Precedence │ └── app.py ├── Packages │ ├── app.py │ └── ecommerce │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── shipping.cpython-310.pyc │ │ └── shipping.py ├── Parameters │ └── app.py ├── Pypi and Pip │ └── app ├── Return Statement │ └── app.py ├── String Methods │ └── app.py ├── Strings │ └── app.py ├── Tuples │ └── app.py ├── Type Conversion │ ├── app.py │ └── app_02.py ├── Unpacking │ └── app.py ├── Variables │ └── app.py ├── Weight Converter Program │ └── app.py ├── While Loops │ └── app.py ├── Working with Directories │ ├── app.py │ ├── apple.py │ └── orange.py └── classes │ └── app.py ├── Face Detector App ├── RDJ.png ├── app.py ├── haarcascade_frontalface_default.xml ├── set2.png ├── sets.png └── taylor.png ├── Machine Learning with Python ├── Calculating the Accuracy │ ├── app.py │ └── music.csv ├── One │ ├── app.py │ └── vgsales.csv ├── Persisting Models │ ├── app.py │ └── music.csv ├── Two │ ├── app.py │ └── music.csv └── Visualizing a Deciaion Tree │ ├── app.py │ ├── music-recommender.dot │ └── music.csv ├── Machine Learning ├── .gitignore ├── Entropy │ └── Entropy.ipynb ├── Experience-Salary.csv ├── Experience-Salary.ipynb ├── Logistic_Regression.ipynb ├── Tutorial.ipynb ├── headbrain.csv └── logistic regression │ ├── Suv Predictions │ ├── Suv-predictions.ipynb │ └── suv_data.csv │ └── Titanic Data Analysis │ ├── Titanic-Data-Analysis.ipynb │ └── titanic.csv ├── Project └── Excel Spreadsheets │ ├── app.py │ ├── app2.py │ ├── transactions.xlsx │ └── transactions2.xlsx └── README.md /BUILDING A WEBSITE WITH DJANGO/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/db.sqlite3 -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/manage.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/admin.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/apps.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/migrations/0002_offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/migrations/0002_offer.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/migrations/__pycache__/0002_offer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/migrations/__pycache__/0002_offer.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/models.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/templates/index.html -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/tests.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/urls.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/products/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/products/views.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/asgi.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/settings.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/urls.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/pyshop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/pyshop/wsgi.py -------------------------------------------------------------------------------- /BUILDING A WEBSITE WITH DJANGO/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/BUILDING A WEBSITE WITH DJANGO/templates/base.html -------------------------------------------------------------------------------- /Core Concepts 2/Advanced indexing/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Advanced indexing/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Calander/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Calander/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Daytime Module/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Daytime Module/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Dictionaries/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Dictionaries/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Dictionaries/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Dictionaries/app_2.py -------------------------------------------------------------------------------- /Core Concepts 2/Dictionaries/app_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Dictionaries/app_3.py -------------------------------------------------------------------------------- /Core Concepts 2/For loop/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/For loop/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Function/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Function/app.py -------------------------------------------------------------------------------- /Core Concepts 2/If else/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/If else/app.py -------------------------------------------------------------------------------- /Core Concepts 2/List Comp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/List Comp/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Lists/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Lists/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Mutability/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Mutability/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Primitive/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Primitive/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Project/Tic Tac Toe/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Project/Tic Tac Toe/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Regex/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Regex/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Sets/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Sets/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Sets/sets_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Sets/sets_2.py -------------------------------------------------------------------------------- /Core Concepts 2/Splitting & Joining/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Splitting & Joining/app.py -------------------------------------------------------------------------------- /Core Concepts 2/String/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/String/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Tuples/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Tuples/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Turtle/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Turtle/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Web Scaraping/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Web Scaraping/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Web Scaraping/weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Web Scaraping/weather.csv -------------------------------------------------------------------------------- /Core Concepts 2/Web Scaraping/weather2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Web Scaraping/weather2.csv -------------------------------------------------------------------------------- /Core Concepts 2/While loop/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/While loop/app.py -------------------------------------------------------------------------------- /Core Concepts 2/Zip Functions/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts 2/Zip Functions/app.py -------------------------------------------------------------------------------- /Core Concepts/2D List/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/2D List/app.py -------------------------------------------------------------------------------- /Core Concepts/Arithmetic Operations/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Arithmetic Operations/app.py -------------------------------------------------------------------------------- /Core Concepts/Building a Guessing Game/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Building a Guessing Game/app.py -------------------------------------------------------------------------------- /Core Concepts/Building the Car Game/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Building the Car Game/app.py -------------------------------------------------------------------------------- /Core Concepts/Comments/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Comments/app.py -------------------------------------------------------------------------------- /Core Concepts/Comparison Operators/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Comparison Operators/app.py -------------------------------------------------------------------------------- /Core Concepts/Comparison Operators/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Comparison Operators/app_2.py -------------------------------------------------------------------------------- /Core Concepts/Constructors/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Constructors/app.py -------------------------------------------------------------------------------- /Core Concepts/Constructors/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Constructors/app2.py -------------------------------------------------------------------------------- /Core Concepts/Creating a Reusable Function/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Creating a Reusable Function/app.py -------------------------------------------------------------------------------- /Core Concepts/Dictionaries/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Dictionaries/app.py -------------------------------------------------------------------------------- /Core Concepts/Dictionaries/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Dictionaries/app_2.py -------------------------------------------------------------------------------- /Core Concepts/Emoji Converter/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Emoji Converter/app.py -------------------------------------------------------------------------------- /Core Concepts/Exceptions/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Exceptions/app.py -------------------------------------------------------------------------------- /Core Concepts/For Loops/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/For Loops/app.py -------------------------------------------------------------------------------- /Core Concepts/For Loops/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/For Loops/app_2.py -------------------------------------------------------------------------------- /Core Concepts/Formatted Strings/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Formatted Strings/app.py -------------------------------------------------------------------------------- /Core Concepts/Functions/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Functions/app.py -------------------------------------------------------------------------------- /Core Concepts/Generating Random Values/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Generating Random Values/app.py -------------------------------------------------------------------------------- /Core Concepts/Generating Random Values/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Generating Random Values/app2.py -------------------------------------------------------------------------------- /Core Concepts/Getting input/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Getting input/app.py -------------------------------------------------------------------------------- /Core Concepts/Hello World/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Hello World/app.py -------------------------------------------------------------------------------- /Core Concepts/If Statements/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/If Statements/app.py -------------------------------------------------------------------------------- /Core Concepts/If Statements/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/If Statements/app_2.py -------------------------------------------------------------------------------- /Core Concepts/Inheritance/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Inheritance/app.py -------------------------------------------------------------------------------- /Core Concepts/Keyword Arguments/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Keyword Arguments/app.py -------------------------------------------------------------------------------- /Core Concepts/List Methods/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/List Methods/app.py -------------------------------------------------------------------------------- /Core Concepts/List Methods/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/List Methods/app_2.py -------------------------------------------------------------------------------- /Core Concepts/List/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/List/app.py -------------------------------------------------------------------------------- /Core Concepts/List/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/List/app_2.py -------------------------------------------------------------------------------- /Core Concepts/Logical Operators/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Logical Operators/app.py -------------------------------------------------------------------------------- /Core Concepts/Math Functions/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Math Functions/app.py -------------------------------------------------------------------------------- /Core Concepts/Modules/New/__pycache__/app.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/New/__pycache__/app.cpython-310.pyc -------------------------------------------------------------------------------- /Core Concepts/Modules/New/__pycache__/numbers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/New/__pycache__/numbers.cpython-310.pyc -------------------------------------------------------------------------------- /Core Concepts/Modules/New/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/New/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /Core Concepts/Modules/New/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/New/app.py -------------------------------------------------------------------------------- /Core Concepts/Modules/New/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/New/utils.py -------------------------------------------------------------------------------- /Core Concepts/Modules/__pycache__/converter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/__pycache__/converter.cpython-310.pyc -------------------------------------------------------------------------------- /Core Concepts/Modules/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/app.py -------------------------------------------------------------------------------- /Core Concepts/Modules/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Modules/converter.py -------------------------------------------------------------------------------- /Core Concepts/Nested Loops/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Nested Loops/app.py -------------------------------------------------------------------------------- /Core Concepts/Nested Loops/app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Nested Loops/app_2.py -------------------------------------------------------------------------------- /Core Concepts/Operator Precedence/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Operator Precedence/app.py -------------------------------------------------------------------------------- /Core Concepts/Packages/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Packages/app.py -------------------------------------------------------------------------------- /Core Concepts/Packages/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core Concepts/Packages/ecommerce/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Packages/ecommerce/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Core Concepts/Packages/ecommerce/__pycache__/shipping.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Packages/ecommerce/__pycache__/shipping.cpython-310.pyc -------------------------------------------------------------------------------- /Core Concepts/Packages/ecommerce/shipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Packages/ecommerce/shipping.py -------------------------------------------------------------------------------- /Core Concepts/Parameters/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Parameters/app.py -------------------------------------------------------------------------------- /Core Concepts/Pypi and Pip/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Pypi and Pip/app -------------------------------------------------------------------------------- /Core Concepts/Return Statement/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Return Statement/app.py -------------------------------------------------------------------------------- /Core Concepts/String Methods/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/String Methods/app.py -------------------------------------------------------------------------------- /Core Concepts/Strings/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Strings/app.py -------------------------------------------------------------------------------- /Core Concepts/Tuples/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Tuples/app.py -------------------------------------------------------------------------------- /Core Concepts/Type Conversion/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Type Conversion/app.py -------------------------------------------------------------------------------- /Core Concepts/Type Conversion/app_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Type Conversion/app_02.py -------------------------------------------------------------------------------- /Core Concepts/Unpacking/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Unpacking/app.py -------------------------------------------------------------------------------- /Core Concepts/Variables/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Variables/app.py -------------------------------------------------------------------------------- /Core Concepts/Weight Converter Program/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Weight Converter Program/app.py -------------------------------------------------------------------------------- /Core Concepts/While Loops/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/While Loops/app.py -------------------------------------------------------------------------------- /Core Concepts/Working with Directories/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/Working with Directories/app.py -------------------------------------------------------------------------------- /Core Concepts/Working with Directories/apple.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core Concepts/Working with Directories/orange.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core Concepts/classes/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Core Concepts/classes/app.py -------------------------------------------------------------------------------- /Face Detector App/RDJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Face Detector App/RDJ.png -------------------------------------------------------------------------------- /Face Detector App/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Face Detector App/app.py -------------------------------------------------------------------------------- /Face Detector App/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Face Detector App/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /Face Detector App/set2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Face Detector App/set2.png -------------------------------------------------------------------------------- /Face Detector App/sets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Face Detector App/sets.png -------------------------------------------------------------------------------- /Face Detector App/taylor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Face Detector App/taylor.png -------------------------------------------------------------------------------- /Machine Learning with Python/Calculating the Accuracy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Calculating the Accuracy/app.py -------------------------------------------------------------------------------- /Machine Learning with Python/Calculating the Accuracy/music.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Calculating the Accuracy/music.csv -------------------------------------------------------------------------------- /Machine Learning with Python/One/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/One/app.py -------------------------------------------------------------------------------- /Machine Learning with Python/One/vgsales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/One/vgsales.csv -------------------------------------------------------------------------------- /Machine Learning with Python/Persisting Models/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Persisting Models/app.py -------------------------------------------------------------------------------- /Machine Learning with Python/Persisting Models/music.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Persisting Models/music.csv -------------------------------------------------------------------------------- /Machine Learning with Python/Two/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Two/app.py -------------------------------------------------------------------------------- /Machine Learning with Python/Two/music.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Two/music.csv -------------------------------------------------------------------------------- /Machine Learning with Python/Visualizing a Deciaion Tree/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Visualizing a Deciaion Tree/app.py -------------------------------------------------------------------------------- /Machine Learning with Python/Visualizing a Deciaion Tree/music-recommender.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Visualizing a Deciaion Tree/music-recommender.dot -------------------------------------------------------------------------------- /Machine Learning with Python/Visualizing a Deciaion Tree/music.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning with Python/Visualizing a Deciaion Tree/music.csv -------------------------------------------------------------------------------- /Machine Learning/.gitignore: -------------------------------------------------------------------------------- 1 | Crypto_historical_data.csv -------------------------------------------------------------------------------- /Machine Learning/Entropy/Entropy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/Entropy/Entropy.ipynb -------------------------------------------------------------------------------- /Machine Learning/Experience-Salary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/Experience-Salary.csv -------------------------------------------------------------------------------- /Machine Learning/Experience-Salary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/Experience-Salary.ipynb -------------------------------------------------------------------------------- /Machine Learning/Logistic_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/Logistic_Regression.ipynb -------------------------------------------------------------------------------- /Machine Learning/Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/Tutorial.ipynb -------------------------------------------------------------------------------- /Machine Learning/headbrain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/headbrain.csv -------------------------------------------------------------------------------- /Machine Learning/logistic regression/Suv Predictions/Suv-predictions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/logistic regression/Suv Predictions/Suv-predictions.ipynb -------------------------------------------------------------------------------- /Machine Learning/logistic regression/Suv Predictions/suv_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/logistic regression/Suv Predictions/suv_data.csv -------------------------------------------------------------------------------- /Machine Learning/logistic regression/Titanic Data Analysis/Titanic-Data-Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/logistic regression/Titanic Data Analysis/Titanic-Data-Analysis.ipynb -------------------------------------------------------------------------------- /Machine Learning/logistic regression/Titanic Data Analysis/titanic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Machine Learning/logistic regression/Titanic Data Analysis/titanic.csv -------------------------------------------------------------------------------- /Project/Excel Spreadsheets/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Project/Excel Spreadsheets/app.py -------------------------------------------------------------------------------- /Project/Excel Spreadsheets/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Project/Excel Spreadsheets/app2.py -------------------------------------------------------------------------------- /Project/Excel Spreadsheets/transactions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Project/Excel Spreadsheets/transactions.xlsx -------------------------------------------------------------------------------- /Project/Excel Spreadsheets/transactions2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/Project/Excel Spreadsheets/transactions2.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Machine_Learning-Deep-Learning-And-AI/HEAD/README.md --------------------------------------------------------------------------------