Skip to content

Commit 25aedd1

Browse files
author
Siddhant Pathak
authored
Merge pull request #19 from siddhantpathakk/development
Added new docs and __init__ files
2 parents d2a23b9 + 799f4c0 commit 25aedd1

File tree

17 files changed

+786
-442
lines changed

17 files changed

+786
-442
lines changed

.DS_Store

-2 KB
Binary file not shown.

docs/author.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## About the author
2+
3+
Hey, I'm Siddhant!
4+
5+
![1691398779159](image/author/1691398779159.png)
6+
7+
I’m a Final Year Computer Science student at Nanyang Technological University, Singapore.
8+
9+
I’m currently learning Machine Learning, Data Science and Artificial Intelligence for Finance and Scalable Applications.
10+
11+
I am an individual driven by an unwavering motivation and a relentless ambition to excel in every endeavor I undertake. Throughout my personal and academic journey, I have cultivated a profound sense of responsibility and a decisive mindset, enabling me to effectively tackle any situation that comes my way. Whether it's confronting complex challenges or embracing new opportunities, I consistently strive to deliver exceptional results.
12+
13+
Currently, I am pursuing my studies in the field of Computer Science at a renowned university, renowned for its excellence in education and diverse student body. Being part of such an esteemed institution has provided me with invaluable exposure to a vibrant peer group, comprising individuals from various backgrounds and cultures. This exposure has further enhanced my understanding of the significance of teamwork and cultural integration. I firmly believe that diverse perspectives foster innovation and collaboration, and I actively seek to create an inclusive environment where every voice is heard and valued.
14+
15+
Check my portfolio out [here](siddhantpathakk.github.io) and also my [GitHub](https://github.com/siddhantpathakk). Connect with me on [Linkedin](https://www.linkedin.com/in/siddhantpathakk/), [email](mailto:siddhant005@e.ntu.edu.sg).

docs/class.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
# Classification
22

3-
::: classification.naive_bayes.gaussian
3+
## ::: classification.naive_bayes.gaussian
44
handler: python
55
options:
66
show_root_heading: true
77
show_source: false
88
heading_level: 2
9-
---------------------------------------
10-
::: classification.naive_bayes.bernoulli
9+
10+
## ::: classification.naive_bayes.bernoulli
1111
handler: python
1212
options:
1313
show_root_heading: true
1414
show_source: false
1515
heading_level: 2
16-
---------------------------------------
17-
::: classification.logistic_regression
16+
17+
## ::: classification.logistic_regression
1818
handler: python
1919
options:
2020
show_root_heading: true
2121
show_source: false
2222
heading_level: 2
23-
---------------------------------------
24-
:::classification.decision_tree
23+
24+
## :::classification.decision_tree
2525
handler: python
2626
options:
2727
show_root_heading: true

docs/image/author/1691398779159.png

277 KB
Loading

mkdocs.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
11
site_name: Tensorflow ML
2+
repo_url: https://github.com/siddhantpathakk/tensorflow-ml
23

34
nav:
45
- Home: index.md
56
- Support: status.md
67
- Regression : reg.md
78
- Classification : class.md
89
- Tutorials: tutorials.md
9-
- About: about.md
10+
- About the package: about.md
11+
- About the author: author.md
1012

11-
theme: readthedocs
13+
theme:
14+
name: readthedocs
15+
analytics:
16+
gtag: G-ABC123
17+
titles-only: True
18+
navigation_depth: 2
1219

13-
plugins:
20+
21+
plugins:
1422
- mkdocstrings:
1523
handlers:
1624
python:
17-
paths: [tensorflow_ml] # search packages in the src folder
25+
paths: [tensorflow_ml] # search packages in the src folder
26+
docstring_section_style: "spacy"
27+
- search:
28+
indexing: 'sections'

tensorflow_ml/__init__.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
11
# __init__ file for tfml package
2+
3+
from .regression import (
4+
LinearRegression,
5+
LassoRegression,
6+
PolynomialRegression,
7+
RidgeRegression
8+
)
9+
10+
from .classification import (
11+
DecisionTree,
12+
LogisticRegression,
13+
BernoulliNaiveBayes,
14+
GaussianNaiveBayes
15+
)
16+
17+
__all__ = [
18+
"LinearRegression",
19+
"LassoRegression",
20+
"PolynomialRegression",
21+
"RidgeRegression",
22+
"DecisionTree",
23+
"LogisticRegression",
24+
"BernoulliNaiveBayes",
25+
"GaussianNaiveBayes"
26+
]
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"""
2+
Classification module
3+
"""
4+
5+
from .decision_tree import DecisionTree
6+
from .logistic_regression import LogisticRegression
7+
from .naive_bayes import (
8+
BernoulliNaiveBayes,
9+
GaussianNaiveBayes
10+
)
11+
12+
__all__ = [
13+
"DecisionTree",
14+
"LogisticRegression",
15+
"BernoulliNaiveBayes",
16+
"GaussianNaiveBayes"
17+
]

0 commit comments

Comments
 (0)