From 4a95cabc8ef4269fec0dd0366ae2403399444411 Mon Sep 17 00:00:00 2001 From: KristinaSig Date: Mon, 4 Oct 2021 16:41:05 +0200 Subject: [PATCH 1/5] Testing git commit Added text to the top of readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a0003583..a3fc5845 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +Testing the commit # ML in Practice Source code for the Seminar "Machine Learning in Practice", taught at Osnabrück University in the winter term 2021/2022. @@ -140,4 +141,4 @@ All python code for the application demo can be found in `code/application/`. The script `application.py` provides a simple command line interface, where the user is asked to type in their prospective tweet, which is then analyzed using the trained ML pipeline. The script can be invoked as follows: ```python -m code.application.application path/to/preprocessing.pickle path/to/feature_extraction.pickle path/to/dimensionality_reduction.pickle path/to/classifier.pickle``` -The four pickle files correspond to the exported versions for the different pipeline steps as created by `run_preprocessing.py`, `extract_features.py`, `reduce_dimensionality.py`, and `run_classifier.py`, respectively, with the `-e` option. \ No newline at end of file +The four pickle files correspond to the exported versions for the different pipeline steps as created by `run_preprocessing.py`, `extract_features.py`, `reduce_dimensionality.py`, and `run_classifier.py`, respectively, with the `-e` option. From cba5d8c88e67c8a2cfd7894e127e5fdc48e8e505 Mon Sep 17 00:00:00 2001 From: KristinaSig Date: Tue, 5 Oct 2021 19:37:30 +0200 Subject: [PATCH 2/5] Test commit with a new branch Adding a dummy line on top to see if it works --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a9f327f..629b998d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -<<<<<<< HEAD +This line is new # ML in Practice -Source code for the Seminar "Machine Learning in Practice", taught at Osnabrueck University in the winter term 2021/2022. +Source code for the Seminar "Machine Learning in Practice", taught at Osnabrück University in the winter term 2021/2022. ======= # Machine Learning in Practice Source code for the practical Seminar "Machine Learning in Practice", taught at Osnabrück University in the winter term 2021/2022 at the Insitute of Cognitive Science. From 233bb9ad52409c41c503e37aad5ed92ee52c4f84 Mon Sep 17 00:00:00 2001 From: spro66 <45660964+spro66@users.noreply.github.com> Date: Tue, 5 Oct 2021 21:46:12 +0200 Subject: [PATCH 3/5] Create Documentation This document contains various exercises that were carried out during this course --- Documentation | 1 + 1 file changed, 1 insertion(+) create mode 100644 Documentation diff --git a/Documentation b/Documentation new file mode 100644 index 00000000..cadcbcb9 --- /dev/null +++ b/Documentation @@ -0,0 +1 @@ +List of steps carried out From 13378bbf93e36767d68c3370ade0ea962476d5bb Mon Sep 17 00:00:00 2001 From: spro66 <45660964+spro66@users.noreply.github.com> Date: Tue, 5 Oct 2021 21:47:19 +0200 Subject: [PATCH 4/5] Delete Documentation --- Documentation | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Documentation diff --git a/Documentation b/Documentation deleted file mode 100644 index cadcbcb9..00000000 --- a/Documentation +++ /dev/null @@ -1 +0,0 @@ -List of steps carried out From ea4441300e848cb4807f9dd71779365ab6ac3fc7 Mon Sep 17 00:00:00 2001 From: spro66 <45660964+spro66@users.noreply.github.com> Date: Wed, 6 Oct 2021 09:46:33 +0200 Subject: [PATCH 5/5] Update README.md Tried to check the functionality of the branching function --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 629b998d..bc1e8305 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ This line is new +Checking the working of branching function # ML in Practice -Source code for the Seminar "Machine Learning in Practice", taught at Osnabrück University in the winter term 2021/2022. +Source code for the Seminar "Machine Learning in Practice", taught at Osnabrück University in the winter term 2021/2022. ======= # Machine Learning in Practice -Source code for the practical Seminar "Machine Learning in Practice", taught at Osnabrück University in the winter term 2021/2022 at the Insitute of Cognitive Science. +Source code for the practical Seminar "Machine Learning in Practice", taught at Osnabrück University in the winter term 2021/2022 at the Insitute of Cognitive Science. >>>>>>> 1a15cc7c40b299c734e626c4764aa2992a0c9e0c As data source, we use the "Data Science Tweets 2010-2021" data set (version 3) by Ruchi Bhatia from [Kaggle](https://www.kaggle.com/ruchi798/data-science-tweets). The goal of our example project is to predict which tweets will go viral, i.e., receive many likes and retweets.