<?xml version="1.0" encoding="utf-8"?>







    <rss version="2.0"
         xmlns:content="http://purl.org/rss/1.0/modules/content/"
         xmlns:atom="http://www.w3.org/2005/Atom"
         xmlns:media="http://search.yahoo.com/mrss/">
        <channel>
            
                
                    <ttl>60</ttl>
                    <title>Universität Bremen - DSC-2026-10 | Supervised Machine Learning using Python</title>
                    <link>https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python</link>
                    <description>DSC-2025-24 | Safe, FAIR, Legal: Working with Personal Data in Research</description>
                    <language>de</language>
                    <copyright>Universität Bremen</copyright>
                    <pubDate>Thu, 20 Aug 2026 19:48:41 +0200</pubDate>
                    <lastBuildDate>Thu, 20 Aug 2026 19:48:41 +0200</lastBuildDate>
                    <atom:link href="https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python/rss.xml" rel="self" type="application/rss+xml"/>
                    <generator>Universität Bremen</generator>
                
                
                    
                
                    
                        <item>
                            <guid isPermaLink="false">content-739765</guid>
                            <pubDate>Wed, 12 Aug 2026 00:11:28 +0200</pubDate>
                            <title>Why is the topic important?</title>
                            <link>https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python#c739765</link>
                            
                            <description>&amp;lt;p&amp;gt;Machine learning is increasingly used to analyze research data, make predictions, and support decisions. Supervised learning is one of its central paradigms and is used whenever a model learns from data for which the outcome is already known. It can, for example, be applied to predict numerical measurements, classify observations, estimate the probability of an event, or identify patterns associated with a particular outcome.&amp;lt;/p&amp;gt;
&amp;lt;p&amp;gt;Applications include understanding which factors help explain environmental variables, identifying biological or medical samples, estimating health or social outcomes, detecting known faults in technical systems, and forecasting economic indicators. Successfully applying machine learning requires understanding how models learn from data, how their performance should be evaluated, and whether their predictions are reliable and meaningful, in addition to technical programming skills such as Python.&amp;lt;/p&amp;gt;
&amp;lt;p&amp;gt;This workshop combines the theoretical foundations of supervised learning with practical implementation in Python. Through interactive lectures and hands-on exercises, participants will learn how classical algorithms such as linear, logistic, and flexible regression models, K-Nearest Neighbours, and ensemble methods, including Random Forest, work, when to use them, and how to evaluate their performance on real-world datasets. The concepts covered also provide the foundation and baseline models needed for working critically with advanced approaches such as neural networks.&amp;lt;/p&amp;gt;</description>
                            
                            <category>Content</category>
                            
                            
                        </item>
                    
                
                    
                        <item>
                            <guid isPermaLink="false">content-739763</guid>
                            <pubDate>Sun, 16 Aug 2026 20:01:17 +0200</pubDate>
                            <title>Workshop Goal</title>
                            <link>https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python#c739763</link>
                            
                            <description>&amp;lt;p&amp;gt;The course deals with the following topics:&amp;lt;/p&amp;gt;
&amp;lt;ul&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;e6f4965ee4d43209980ea1adfe2953185&amp;quot;&amp;gt;Understand the fundamental concepts and workflow of supervised learning&amp;lt;/li&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;e67ab540dc7b294046ea2ee41a1e05c2f&amp;quot;&amp;gt;Distinguish between regression and classification problems&amp;lt;/li&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;e246957ddaf621f45efd2ab79da6c22f2&amp;quot;&amp;gt;Understand and implement and evaluate linear, logistic, and flexible regression models for predictive modeling and binary classification tasks&amp;lt;/li&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;e80f99219c3e3d28b95c0ece887f411c6&amp;quot;&amp;gt;Understand and implement K-Nearest Neighbours and ensemble methods, including Random Forest&amp;lt;/li&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;e0f3b4562216e68419a900f98104e3fed&amp;quot;&amp;gt;Compare the strengths and limitations of different supervised learning algorithms and evaluate models using appropriate performance metrics&amp;lt;/li&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;ef1fff953ffb4be6d0a357d90a84f95c3&amp;quot;&amp;gt;Gain practical experience training, evaluating, and comparing models in Python&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;
&amp;lt;p&amp;gt;The workshop begins with an introduction to supervised learning concepts before progressing to classical machine learning algorithms for regression and classification. Participants will apply the methods to real-world datasets and learn how to select and critically evaluate suitable models for different research questions.&amp;lt;/p&amp;gt;</description>
                            
                            <category>Content</category>
                            
                            
                        </item>
                    
                
                    
                        <item>
                            <guid isPermaLink="false">content-739761</guid>
                            <pubDate>Sun, 16 Aug 2026 20:02:10 +0200</pubDate>
                            <title>Workshop Content</title>
                            <link>https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python#c739761</link>
                            
                            <description>&amp;lt;h5&amp;gt;DAY 1 Foundations of Supervised Learning:&amp;amp;nbsp;&amp;lt;/h5&amp;gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;a) Part 1: Introduction to Supervised Learning&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• What is machine learning?&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Supervised vs. unsupervised learning&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Training, validation, and test sets&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Regression vs. classification problems&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Overview of the Machine Learning workflow&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Practical: Setting up the Python environment and exploring datasets&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;lt;strong&amp;gt;b) Part 2: Linear Regression and Linear Classification&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Intuition behind linear regression&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Cost function and least squares&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Model training and prediction&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Model evaluation metrics for regression (MAE, MSE, RMSE, R²)&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Limitations of linear relationships and introduction to Generalized Additive Models (GAMs)&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• From regression to classification, linear classification concepts, and linear decision boundaries&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Practical: Implementing linear, and flexible regression and linear classification models in Python&amp;lt;/p&amp;gt;
&amp;lt;h5&amp;gt;DAY 2: Classification Algorithms and Ensemble Learning:&amp;lt;/h5&amp;gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;c) Part 3: Logistic Regression&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Limitations of linear classification&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Introduction to logistic regression&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• The sigmoid function&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Probability estimation and decision thresholds&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Evaluating classification models (accuracy, precision, recall, F1-score)&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Practical: Binary classification with logistic regression in Python&amp;lt;br /&amp;gt;&amp;lt;strong&amp;gt;d) Part 4: K-Nearest Neighbors and Ensemble Learning&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Instance-based learning&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Introduction to K-Nearest Neighbors (KNN)&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Advantages and limitations of KNN&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Introduction to ensemble learning&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Voting, Bagging, and Boosting Concepts&amp;amp;nbsp;&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Decision trees and Random Forests&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Practices of model comparison&amp;lt;br /&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp;• Practical: Comparing multiple supervised learning models in Python&amp;lt;/p&amp;gt;</description>
                            
                            <category>Content</category>
                            
                            
                        </item>
                    
                
                    
                        <item>
                            <guid isPermaLink="false">content-739757</guid>
                            <pubDate>Wed, 12 Aug 2026 00:19:53 +0200</pubDate>
                            <title>Target Audience &amp; Prior Knowledge</title>
                            <link>https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python#c739757</link>
                            
                            <description>&amp;lt;p&amp;gt;This workshop is intended for researchers from &amp;lt;strong&amp;gt;all disciplines&amp;lt;/strong&amp;gt; who wish to build a solid foundation in supervised machine learning. &amp;lt;strong&amp;gt;Basic Python programming skills&amp;lt;/strong&amp;gt; are required but can be acquired through introductory self-study materials, such as the Data Science Center’s GitHub repository “&amp;lt;a class=&amp;quot;external-link&amp;quot; href=&amp;quot;https://github.com/Data-Science-Center-UB/Python-Introduction-for-Researchers&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Python Introduction for Researchers&amp;lt;/a&amp;gt;”. &amp;lt;strong&amp;gt;Familiarity with basic mathematical and statistical concepts&amp;lt;/strong&amp;gt;, such as equations, means, variance, and correlations, is also expected. No prior experience with machine learning models is required.&amp;lt;/p&amp;gt;</description>
                            
                            <category>Content</category>
                            
                            
                        </item>
                    
                
                    
                        <item>
                            <guid isPermaLink="false">content-739755</guid>
                            <pubDate>Sun, 16 Aug 2026 20:05:20 +0200</pubDate>
                            <title>Technical Requirements</title>
                            <link>https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python#c739755</link>
                            
                            <description>&amp;lt;ul&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;ef2f670a7ddf0611ab32e93ffc3f0b75e&amp;quot;&amp;gt;Own laptop and connection to the Wifi (e.g. via &amp;lt;a class=&amp;quot;external-link&amp;quot; href=&amp;quot;https://www.uni-bremen.de/en/dezernat8/netzbetrieb/wifi/overview-wifi&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;eduroam&amp;lt;/a&amp;gt;).&amp;lt;/li&amp;gt;&amp;lt;li data-list-item-id=&amp;quot;e50e80168af6947d1d3149548fca41197&amp;quot;&amp;gt;Please make sure you have access to the &amp;lt;a class=&amp;quot;external-link&amp;quot; href=&amp;quot;https://nfdi-jupyter.de/&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Jupyter4NFDI&amp;lt;/a&amp;gt;.&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;</description>
                            
                            <category>Content</category>
                            
                            
                        </item>
                    
                
                    
                        <item>
                            <guid isPermaLink="false">content-739749</guid>
                            <pubDate>Wed, 12 Aug 2026 00:20:50 +0200</pubDate>
                            <title>About the Trainers</title>
                            <link>https://www.uni-bremen.de/data-science-center/trainings-services/trainings-workshops/dsc-2026-10-supervised-machine-learning-using-python#c739749</link>
                            
                            
                            
                            <category>Content</category>
                            
                            
                        </item>
                    
                
                    
                
                    
                
                    
                
                    
                
            
        </channel>
    </rss>

