Skip to content

Commit cfc9512

Browse files
committed
Created ReadMe file and removed / moved python files
1 parent 1abd8af commit cfc9512

File tree

343 files changed

+106420
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

343 files changed

+106420
-95
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

.idea/python-trials/arrays.py

-7
This file was deleted.

.idea/python-trials/arraytest.py

-4
This file was deleted.

.idea/python-trials/comparison.py

-6
This file was deleted.

.idea/python-trials/test.py

-23
This file was deleted.

.idea/workspace.xml

+49-54
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README

+30-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,30 @@
1-
Nothing to see here
1+
General Introduction:
2+
Welcome to my GitHub repository. To summarise, this repository contains machine learning models that I have explored and used throughout my research work.
3+
4+
----- Machine Learning Models -----
5+
In this repository, I have included the following machine learning algorithms. The algorithms are located in ML-Algo folder.
6+
1) Artificial Neural Network (classified as neuralnetwork.py)
7+
2) Decision Tree (classified as decision_tree_classification.py)
8+
2) Linear Regression (classified as linear_regression.py)
9+
3) Multiple Regression (classified as multipleregression.py)
10+
4) Naive Bayes (classified as naive_bayes.py)
11+
5) Polynomial Regression (classified as polynomialregression.py)
12+
6) Random Forest (classified as randomforest.py)
13+
7) Support Vector Machine (classified as svm_classification.py)
14+
Sidenote: When running decision tree and random forest, you will notice a few images being generated. These images are to show how the trees came about with the solution / reading.
15+
16+
---- Folder Architecture ----
17+
The repository is divided into the following folders
18+
1) CGKS Algorithms - My Masters work involving machine learning
19+
2) ML-Algo - Machine learning models that I have explored
20+
3) Plot Files - Python Plot Files
21+
22+
---- How to Run the Machine Learning Models ----
23+
1) Select a machine learning model
24+
2) Right click and run the file.
25+
3) If needed
26+
27+
Additional Notes:
28+
1) Currently, the machine learning models are all classification-based models.
29+
2) Python configuration is required for your IDE.
30+
3) Python libraries require installation through terminal.
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
./setuptools-40.8.0-py3.8.egg
2+
./pip-19.0.3-py3.8.egg
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
Metadata-Version: 1.2
2+
Name: pip
3+
Version: 19.0.3
4+
Summary: The PyPA recommended tool for installing Python packages.
5+
Home-page: https://pip.pypa.io/
6+
Author: The pip developers
7+
Author-email: [email protected]
8+
License: MIT
9+
Description: pip - The Python Package Installer
10+
==================================
11+
12+
.. image:: https://img.shields.io/pypi/v/pip.svg
13+
:target: https://pypi.org/project/pip/
14+
15+
.. image:: https://readthedocs.org/projects/pip/badge/?version=latest
16+
:target: https://pip.pypa.io/en/latest
17+
18+
pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
19+
20+
Please take a look at our documentation for how to install and use pip:
21+
22+
* `Installation`_
23+
* `Usage`_
24+
* `Release notes`_
25+
26+
If you find bugs, need help, or want to talk to the developers please use our mailing lists or chat rooms:
27+
28+
* `Issue tracking`_
29+
* `Discourse channel`_
30+
* `User IRC`_
31+
32+
If you want to get involved head over to GitHub to get the source code and feel free to jump on the developer mailing lists and chat rooms:
33+
34+
* `GitHub page`_
35+
* `Dev mailing list`_
36+
* `Dev IRC`_
37+
38+
Code of Conduct
39+
---------------
40+
41+
Everyone interacting in the pip project's codebases, issue trackers, chat
42+
rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
43+
44+
.. _package installer: https://packaging.python.org/en/latest/current/
45+
.. _Python Package Index: https://pypi.org
46+
.. _Installation: https://pip.pypa.io/en/stable/installing.html
47+
.. _Usage: https://pip.pypa.io/en/stable/
48+
.. _Release notes: https://pip.pypa.io/en/stable/news.html
49+
.. _GitHub page: https://github.com/pypa/pip
50+
.. _Issue tracking: https://github.com/pypa/pip/issues
51+
.. _Discourse channel: https://discuss.python.org/c/packaging
52+
.. _Dev mailing list: https://groups.google.com/forum/#!forum/pypa-dev
53+
.. _User IRC: https://webchat.freenode.net/?channels=%23pypa
54+
.. _Dev IRC: https://webchat.freenode.net/?channels=%23pypa-dev
55+
.. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
56+
57+
Keywords: distutils easy_install egg setuptools wheel virtualenv
58+
Platform: UNKNOWN
59+
Classifier: Development Status :: 5 - Production/Stable
60+
Classifier: Intended Audience :: Developers
61+
Classifier: License :: OSI Approved :: MIT License
62+
Classifier: Topic :: Software Development :: Build Tools
63+
Classifier: Programming Language :: Python
64+
Classifier: Programming Language :: Python :: 2
65+
Classifier: Programming Language :: Python :: 2.7
66+
Classifier: Programming Language :: Python :: 3
67+
Classifier: Programming Language :: Python :: 3.4
68+
Classifier: Programming Language :: Python :: 3.5
69+
Classifier: Programming Language :: Python :: 3.6
70+
Classifier: Programming Language :: Python :: 3.7
71+
Classifier: Programming Language :: Python :: Implementation :: CPython
72+
Classifier: Programming Language :: Python :: Implementation :: PyPy
73+
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*

0 commit comments

Comments
 (0)