#30daysofmachinelearning 検索結果

#Day4 of #30daysofmachinelearning #learninginpublic 𝐍𝐮𝐦𝐩𝐲 𝐚𝐫𝐚𝐧𝐠𝐞 𝐚𝐧𝐝 𝐥𝐢𝐧𝐬𝐩𝐚𝐜𝐞 𝐟𝐮𝐧𝐜𝐭𝐢𝐨𝐧𝐬

rashid_ul_haq's tweet image. #Day4 of #30daysofmachinelearning
#learninginpublic
𝐍𝐮𝐦𝐩𝐲 𝐚𝐫𝐚𝐧𝐠𝐞 𝐚𝐧𝐝 𝐥𝐢𝐧𝐬𝐩𝐚𝐜𝐞 𝐟𝐮𝐧𝐜𝐭𝐢𝐨𝐧𝐬

Understanding core points, border points, and outliers is crucial in density-based clustering like DBSCAN. Core points form the heart of clusters, while border points lie on the edges, and outliers stand alone. #30daysofMachineLearning

drishtijjain's tweet image. Understanding core points, border points, and outliers is crucial in density-based clustering like DBSCAN. Core points form the heart of clusters, while border points lie on the edges, and outliers stand alone. 
#30daysofMachineLearning

Got 96 score on Pre-Test Machine Learning Fundamentals from Skill Academy Pro #30daysofAI #30daysofMachineLearning

NurRahmanFauz's tweet image. Got 96 score on Pre-Test Machine Learning Fundamentals from Skill Academy Pro #30daysofAI #30daysofMachineLearning

And will do scikit-learn with Machine learning specialization. #30daysofmachinelearning #LearningInPublic


Bottom-up agglomerative clustering is a powerful technique in #MachineLearning that begins with each object as a separate cluster and iteratively combines the closest pairs. 🤖 Witness how this method uncovers relationships and groupings in your data! 📊 #30daysofMachineLearning


Day 3- Day 4: Took a break because of my mid semester exams… of software engineering and Artificial Intelligence… Will continue this series with consistent from tomorrow #30daysofmachinelearning


#Day2 of #30daysofmachinelearning 𝐍𝐮𝐦𝐩𝐲 𝐍𝐨𝐭𝐞𝐬 𝐨𝐟 𝐝𝐚𝐲 𝟐 𝐀𝐫𝐫𝐚𝐲 𝐒𝐥𝐢𝐜𝐢𝐧𝐠 Consider that we have an array. a = np.array([[1, 3], [4, 5]]) a[:, 0] # return the first column a[0,:] # return the entire first row


Today i am starting my 30 Days journey of studying Machine Learning, will be posting useful stuff and projects i am gonna doing #30daysofmachinelearning #machinelearning


#Day3 of #30daysofmachinelearning 𝐍𝐮𝐦𝐩𝐲 𝐝𝐚𝐲 𝟑 𝐄𝐱𝐩𝐚𝐧𝐝𝐢𝐧𝐠 𝐭𝐡𝐞 𝐃𝐢𝐦𝐞𝐧𝐬𝐢𝐨𝐧 𝐨𝐟 𝐚𝐧 𝐀𝐫𝐫𝐚𝐲 Sometimes we want to expand the dimensions of array. For example, if we have a 1-dimensional array and we want two dimensional so we can add a new axis to it.


#Day1 of #30daysofmachinelearning Started numpy course on YouTube of Patrick Loeber youtu.be/9JUAPgtkKpI So first day of numpy learning notes are here: a = np.array([4,5,6]) # initialize an array of 4,5,6 Print(a.shape) # it will return the shape in our case it is (3,)

rashid_ul_haq's tweet card. NumPy Crash Course - Complete Tutorial

youtube.com

YouTube

NumPy Crash Course - Complete Tutorial


Today I am starting the 30-day machine learning challenge. Every day I will make some progress in machine learning and probably write something about it. My initial list will be Coursera Machine Learning specialization by Andrew Ng #30daysofmachinelearning #LearningInPublic


3. Finally completed polynomial regression and the steps to include. #MachineLearning #30daysofmachinelearning #coding #Python


🚀 Day 1 of the #30DaysOfMachineLearning Tour 🤖 📣 Let's kick off with the basics! 🎉 🔍 Machine learning is like having a super-smart buddy that learns from examples. It's all about teaching computers to do things without explicitly telling them how. A thread ⬇️


30 days of machine learning Day 3 1. Learnt about the naive Bayes classifier and turned it into python code. 2. Also learnt about the training and testing phase. As well as learnt about hyperparameter tuning and gradient descent in great detail. #30daysofmachinelearning #learn


Along with that also took into account independent as well as mutually exclusive variables and how they will impact different probabilities. Note: Conditional probability is not reversible in nature. #30daysofmachinelearning #MachineLearning #probability #aicode


Mutual Information in clustering evaluation assesses the dependency between observed and expected joint probabilities of clusters and ground truth. #ClusteringEvaluation #30daysofMachineLearning


📊 Maximum Matching in clustering evaluation ensures one cluster is matched to one partition, maximizing purity under the one-to-one matching constraint. It is essential for assessing clustering performance effectively. #ClusteringEvaluation #30daysofMachineLearning


Exploring the nuances of links and chaining in #MachineLearning in #30daysofMachineLearning! Links connect data points in hierarchical clustering, while chaining extends clusters without considering overall shape. These concepts are key to effective clustering strategies! 🧩🔗


Nonparametric Density Estimation - a powerful statistical tool for estimating probability density functions without assuming specific distributions. Kernel Density Estimation, Histogram methods help unveil complex data patterns (informed decision-making). #30daysofMachineLearning


📈Evaluating grouping of data points within clusters & separated across clusters is key in assessing clustering quality. Fowlkes-Mallows index, quantify effectiveness of clustering by examining relationships in data points based on clustering assignments. #30daysofMachineLearning


Day 6 of #30DaysOfMachineLearning 🔥 • CNNs + Conv layers • Built image classifier w/ augmentations • Training loop & evaluation Getting hands-on with vision models that actually see 🔗 github.com/Bishal-Stha/Py… #PyTorch #DeepLearning #LearnInPublic @OpenAI @GoogleDeepMind


Day 5 of #30DaysOfMachineLearning 🔥 • Revisited vanishing/exploding gradients • Compared ReLU vs. ELU activation • Explored batch normalization Building deeper, more stable networks step by step 🔗 github.com/Bishal-Stha/Py… #PyTorch #DeepLearning #LearnInPublic @OpenAI @Google


Day 4 of #30DaysOfMachineLearning 🚀 • OOP PyTorch: Dataset, DataLoader, Model • Optimizers + Training Loop • Model evaluation metrics Gaining confidence in building robust deep learning 🔗 github.com/Bishal-Stha/Py… #PyTorch #DeepLearning @OpenAI @huggingface #LearnInPublic


Day 3 of #30DaysOfMachineLearning • Evaluation loop • Accuracy with torchmetrics • Dropout & overfitting insights • Fine-tuning + layer freezing • Random search for performance boost Exploring the art of smarter training! 🔗 github.com/Bishal-Stha/Py… #PyTorch #DeepLearning


Starting a #30DaysOfMachineLearning challenge today 💪 Here's a Kaggle notebook I threw together with the Fast AI library -> kaggle.com/code/joemuller…


Kernel bandwidth in Kernel Density Estimation - balancing detail and smoothness. Smaller bandwidth - more variability but may overfit Larger one - smoother estimates but can oversmooth. 🔧Cross-validation & Silverman's rule aid bias-variance trade-off. #30daysofMachineLearning


Nonparametric Density Estimation - a powerful statistical tool for estimating probability density functions without assuming specific distributions. Kernel Density Estimation, Histogram methods help unveil complex data patterns (informed decision-making). #30daysofMachineLearning


📈Evaluating grouping of data points within clusters & separated across clusters is key in assessing clustering quality. Fowlkes-Mallows index, quantify effectiveness of clustering by examining relationships in data points based on clustering assignments. #30daysofMachineLearning


📊Pairwise measures in clustering evaluation analyze similarity of cluster assignments by comparing pairs of data points within and across clusters. Metrics, Jaccard coeff. & Rand index, offer insights between clustering outcomes & ground truth labels. #30daysofMachineLearning


Mutual Information in clustering evaluation assesses the dependency between observed and expected joint probabilities of clusters and ground truth. #ClusteringEvaluation #30daysofMachineLearning


📊 Conditional Entropy in clustering evaluation measures the cluster-specific entropy, revealing how ground truth is distributed within each cluster. #ClusteringEvaluation #DataAnalysis #30daysofMachineLearning


📊 Maximum Matching in clustering evaluation ensures one cluster is matched to one partition, maximizing purity under the one-to-one matching constraint. It is essential for assessing clustering performance effectively. #ClusteringEvaluation #30daysofMachineLearning


📊 Purity in clustering quantifies the extent to which a cluster contains points exclusively from one ground truth partition. It is a crucial measure for evaluating the quality of clustering results accurately. #ClusteringEvaluation #DataAnalysis #30daysofMachineLearning


🤖 Exploring clustering evaluation in #30daysofMachineLearning! Did you know there are two main categories of measures? External measures rely on external ground-truth, while internal measures derive goodness from the data itself. 💡


The Davies-Bouldin Index is critical in cluster evaluation, it captures trade-off between cluster compactness & separation. A lower index value : more cohesive and well-separated clusters, showcasing its significance in optimizing clustering algorithms. #30daysofMachineLearning


Epsilon (eps) plays a pivotal role in density-based clustering, the Elbow effect shedding light on its impact. 🔧 Manipulating epsilon values, we can observe clusters merging or outliers emerging, offering valuable insights into data patterns. #30daysofMachineLearning


A cluster in density-based clustering revolves around density-connected points forming dense regions. Identifying maximal sets of points with density-reachable relationships, we pinpoint clusters amidst varying densities -> precise clustering analysis. #30daysofMachineLearning


Direct density reachability in DBSCAN highlights the direct connection between core objects, essential for clustering and outlier detection. The path of direct density reachability, unveils intricate relationships within dense regions in the data space. #30daysofMachineLearning


Epsilon and minPts are the dynamic duo in density-based clustering algorithms like DBSCAN. 🪩Epsilon controls the reachability distance, 🪩minPts determines the density threshold for defining clusters. These parameters enable accurate clustering. #30daysofMachineLearning


Understanding core points, border points, and outliers is crucial in density-based clustering like DBSCAN. Core points form the heart of clusters, while border points lie on the edges, and outliers stand alone. #30daysofMachineLearning

drishtijjain's tweet image. Understanding core points, border points, and outliers is crucial in density-based clustering like DBSCAN. Core points form the heart of clusters, while border points lie on the edges, and outliers stand alone. 
#30daysofMachineLearning

"#30daysofmachinelearning" に一致する結果はありません

#Day4 of #30daysofmachinelearning #learninginpublic 𝐍𝐮𝐦𝐩𝐲 𝐚𝐫𝐚𝐧𝐠𝐞 𝐚𝐧𝐝 𝐥𝐢𝐧𝐬𝐩𝐚𝐜𝐞 𝐟𝐮𝐧𝐜𝐭𝐢𝐨𝐧𝐬

rashid_ul_haq's tweet image. #Day4 of #30daysofmachinelearning
#learninginpublic
𝐍𝐮𝐦𝐩𝐲 𝐚𝐫𝐚𝐧𝐠𝐞 𝐚𝐧𝐝 𝐥𝐢𝐧𝐬𝐩𝐚𝐜𝐞 𝐟𝐮𝐧𝐜𝐭𝐢𝐨𝐧𝐬

Got 96 score on Pre-Test Machine Learning Fundamentals from Skill Academy Pro #30daysofAI #30daysofMachineLearning

NurRahmanFauz's tweet image. Got 96 score on Pre-Test Machine Learning Fundamentals from Skill Academy Pro #30daysofAI #30daysofMachineLearning

Understanding core points, border points, and outliers is crucial in density-based clustering like DBSCAN. Core points form the heart of clusters, while border points lie on the edges, and outliers stand alone. #30daysofMachineLearning

drishtijjain's tweet image. Understanding core points, border points, and outliers is crucial in density-based clustering like DBSCAN. Core points form the heart of clusters, while border points lie on the edges, and outliers stand alone. 
#30daysofMachineLearning

One thing that I am investing quite a lot of time in is diving deep into Machine Learning Sharing my learning in talks, workshops, and now will be doing a #30daysofMachineLearning here where I will post something new for you to learn! 🔔Learning starts tomorrow: @drishtijjain !

drishtijjain's tweet image. One thing that I am investing quite a lot of time in is diving deep into Machine Learning

Sharing my learning in talks, workshops, and now will be doing a #30daysofMachineLearning here where I will post something new for you to learn!

🔔Learning starts tomorrow: @drishtijjain !

#30daysofmachinelearning #DSNOffa Introducing participants to Data Visualization using matplotlib and seaborn. @dsn_ai_network @OneInnovationH1 @Asanloko1

dsn_offa's tweet image. #30daysofmachinelearning 
#DSNOffa
Introducing participants to Data Visualization using matplotlib and seaborn. 
@dsn_ai_network @OneInnovationH1 @Asanloko1
dsn_offa's tweet image. #30daysofmachinelearning 
#DSNOffa
Introducing participants to Data Visualization using matplotlib and seaborn. 
@dsn_ai_network @OneInnovationH1 @Asanloko1

whip my model like a racehorse !! 🔥🔥🔥 67th of 5824 teams 🔥🔥🔥 #kaggle #30daysofmachinelearning

Mostafassomy1's tweet image. whip my model like a racehorse !!
🔥🔥🔥 67th of 5824 teams 🔥🔥🔥
#kaggle #30daysofmachinelearning
Mostafassomy1's tweet image. whip my model like a racehorse !!
🔥🔥🔥 67th of 5824 teams 🔥🔥🔥
#kaggle #30daysofmachinelearning

Today is a beautiful day. We introduced all participants to Zindi and everyone participated in the financial inclusion challenge. @OneInnovationH1 @dsn_ai_network #30daysofmachinelearning #DSNOffa

dsn_offa's tweet image. Today is a beautiful day. We introduced all participants to Zindi and everyone participated in the financial inclusion challenge.
@OneInnovationH1 @dsn_ai_network 
#30daysofmachinelearning 
#DSNOffa
dsn_offa's tweet image. Today is a beautiful day. We introduced all participants to Zindi and everyone participated in the financial inclusion challenge.
@OneInnovationH1 @dsn_ai_network 
#30daysofmachinelearning 
#DSNOffa
dsn_offa's tweet image. Today is a beautiful day. We introduced all participants to Zindi and everyone participated in the financial inclusion challenge.
@OneInnovationH1 @dsn_ai_network 
#30daysofmachinelearning 
#DSNOffa

Day 4: Continuation of data structures, creating and defining functions. #30daysofmachinelearning #DSNOffa

dsn_offa's tweet image. Day 4: Continuation of data structures, creating and defining functions.
#30daysofmachinelearning 
#DSNOffa
dsn_offa's tweet image. Day 4: Continuation of data structures, creating and defining functions.
#30daysofmachinelearning 
#DSNOffa
dsn_offa's tweet image. Day 4: Continuation of data structures, creating and defining functions.
#30daysofmachinelearning 
#DSNOffa
dsn_offa's tweet image. Day 4: Continuation of data structures, creating and defining functions.
#30daysofmachinelearning 
#DSNOffa

Day 8: Additional explanation on versions control with git and basic projects with python. Examples are temperature converter, a BMI calculator, an acronym generator etc. #30daysofmachinelearning #DSNOffa @OneInnovationH1 @dsn_ai_network

dsn_offa's tweet image. Day 8: Additional explanation on versions control with git and basic projects with python. Examples are temperature converter, a BMI calculator, an acronym generator etc. 
#30daysofmachinelearning 
#DSNOffa
@OneInnovationH1 @dsn_ai_network
dsn_offa's tweet image. Day 8: Additional explanation on versions control with git and basic projects with python. Examples are temperature converter, a BMI calculator, an acronym generator etc. 
#30daysofmachinelearning 
#DSNOffa
@OneInnovationH1 @dsn_ai_network
dsn_offa's tweet image. Day 8: Additional explanation on versions control with git and basic projects with python. Examples are temperature converter, a BMI calculator, an acronym generator etc. 
#30daysofmachinelearning 
#DSNOffa
@OneInnovationH1 @dsn_ai_network

Day 1 We started our free 30 days Machine Learning today at Offa.We introduced participants to DSN as well as AI and Machine Learning.Platforms such as jupyter notebook was also introduced to participants #30daysofmachinelearning #DSNOffa @dsn_ai_network @o_funminiyi @Asanloko1

dsn_offa's tweet image. Day 1
We started our free 30 days Machine Learning today at Offa.We introduced participants to DSN as well as AI and Machine Learning.Platforms such as jupyter notebook was also introduced to participants
#30daysofmachinelearning 
#DSNOffa
@dsn_ai_network
@o_funminiyi @Asanloko1
dsn_offa's tweet image. Day 1
We started our free 30 days Machine Learning today at Offa.We introduced participants to DSN as well as AI and Machine Learning.Platforms such as jupyter notebook was also introduced to participants
#30daysofmachinelearning 
#DSNOffa
@dsn_ai_network
@o_funminiyi @Asanloko1
dsn_offa's tweet image. Day 1
We started our free 30 days Machine Learning today at Offa.We introduced participants to DSN as well as AI and Machine Learning.Platforms such as jupyter notebook was also introduced to participants
#30daysofmachinelearning 
#DSNOffa
@dsn_ai_network
@o_funminiyi @Asanloko1
dsn_offa's tweet image. Day 1
We started our free 30 days Machine Learning today at Offa.We introduced participants to DSN as well as AI and Machine Learning.Platforms such as jupyter notebook was also introduced to participants
#30daysofmachinelearning 
#DSNOffa
@dsn_ai_network
@o_funminiyi @Asanloko1

Day 12 of #30daysofmachinelearning Today, I explore Correlation and Causation, their differences, and examples. I also got to know about Confounding Variables and Spurious Correlations as well as their examples.

LeehahBaby's tweet image. Day 12 of #30daysofmachinelearning
Today, I explore Correlation and Causation, their differences, and examples. I also got to know about Confounding Variables and Spurious Correlations as well as their examples.
LeehahBaby's tweet image. Day 12 of #30daysofmachinelearning
Today, I explore Correlation and Causation, their differences, and examples. I also got to know about Confounding Variables and Spurious Correlations as well as their examples.

Today, I started #30daysofmachinelearning with the introduction to machine learning book by Andreas C. Muller and Sarah Guido. This challenge is basically for me to understand the conceptual meanings and definitions of all the machine learning concepts and their applications.

LeehahBaby's tweet image. Today, I started #30daysofmachinelearning with the introduction to machine learning book by Andreas C. Muller  and Sarah Guido. This challenge is basically for me to understand the conceptual meanings and definitions of all the machine learning concepts and their applications.

Loading...

Something went wrong.


Something went wrong.


United States Trends