I hereby claim:
- I am devharsh on github.
- I am devharsh (https://keybase.io/devharsh) on keybase.
- I have a public key whose fingerprint is 643F 36E0 5861 7B73 FC4B AE4A 32C5 C7A7 0143 93DE
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import pandas as pd | |
| from sklearn.linear_model import LogisticRegression | |
| from sklearn import svm | |
| from sklearn.ensemble import RandomForestClassifier | |
| from sklearn.neural_network import MLPClassifier | |
| from sklearn.model_selection import train_test_split | |
| df = pd.DataFrame(columns=['Number','Class']) |
| #!/usr/bin/python | |
| __author__ = "Devharsh Trivedi" | |
| __copyright__ = "Copyright 2018, Devharsh Trivedi" | |
| __license__ = "GPL" | |
| __version__ = "1.4" | |
| __maintainer__ = "Devharsh Trivedi" | |
| __email__ = "[email protected]" | |
| __status__ = "Production" |
| import io | |
| from reportlab.platypus import SimpleDocTemplate, Paragraph | |
| from reportlab.lib.styles import getSampleStyleSheet | |
| from reportlab.lib.units import inch | |
| from reportlab.lib.pagesizes import letter | |
| buf = io.BytesIO() | |
| doc = SimpleDocTemplate( | |
| buf, |