# About me
class Person:
def __init__(self, name, occupation, education):
self.name, self.occupation, self.education = name, occupation, education
def __str__(self): return f"{self.name}, {self.occupation} at {self.education}"
p = Person("Data Scientist")
# What I do
class Interests:
def __init__(self, i):
self.i = i
class Projects(Interests):
def __init__(self, i, p):
super().__init__(i)
self.p = p
interests = Interests(["Data analysis", "Machine learning", "Data visualization"])
projects = Projects(interests.i, ["Exploratory data analysis", "Predictive modeling", "Data visualization"])
# What I'm learning
class Learning:
def __init__(self, l):
self.l = l
class Blog(Learning):
def __init__(self, l, b):
super().__init__(l)
self.b = b
learning = Learning(["Deep learning", "Big data technologies", "Computer Vision", "Natural language processing"])
blog = Blog(learning.l, "Check out my GitHub for articles and notes on what I'm learning and how I'm using it!")
# Technology stack
class TechnologyStack:
def __init__(self, programming_languages, machine_learning_libraries,
data_analysis_libraries, project_management_tools, code_versioning_tools, interactive_web_libraries):
self.programming_languages = programming_languages
self.machine_learning_libraries = machine_learning_libraries
self.data_analysis_libraries = data_analysis_libraries
self.project_management_tools = project_management_tools
self.code_versioning_tools = code_versioning_tools
self.interactive_web_libraries = interactive_web_libraries
def __str__(self):
return f"Programming languages: {', '.join(self.programming_languages)}" \
f"Machine learning libraries: {', '.join(self.machine_learning_libraries)}" \
f"Data analysis libraries: {', '.join(self.data_analysis_libraries)}" \
f"Project management tools: {', '.join(self.project_management_tools)}" \
f"Code-matching and versioning tools: {', '.join(self.code_versioning_tools)}" \
f"Libraries for creating interactive web applications: {', '.join(self.interactive_web_libraries)}"
ts = TechnologyStack(
["Python"],
["scikit-learn", "TensorFlow", "PyTorch"],
["Pandas", "Numpy", "Matplotlib"],
["Jupyter Notebook", "Google Colab"],
["GitHub"],
["Streamlit"])
Popular repositories Loading
-
Google-Colab-to-Telegram-Notifications
Google-Colab-to-Telegram-Notifications PublicEasily send notifications from Google Colab to Telegram using a custom bot. This project provides straightforward setup instructions and code examples to integrate real-time messaging into your Col…
Python 10
-
binary-image-classification
binary-image-classification PublicThis repository contains code for binary image classification using Convolutional Neural Networks (CNNs) in Python.
Jupyter Notebook
-
AutoData-Analysis-and-Price-Prediction-of-Used-Cars
AutoData-Analysis-and-Price-Prediction-of-Used-Cars PublicThis repository contains a project to analyze car sales data using machine learning to predict the price of a car based on various characteristics.
Python
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.