
    

    <?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://ocw.cs.pub.ro/courses/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://ocw.cs.pub.ro/courses/feed.php">
        <title>CS Open CourseWare ewis:laboratoare</title>
        <description></description>
        <link>http://ocw.cs.pub.ro/courses/</link>
        <image rdf:resource="http://ocw.cs.pub.ro/courses/lib/tpl/arctic/images/favicon.ico" />
       <dc:date>2026-05-17T15:07:42+03:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/01?rev=1615993642&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/02?rev=1678894821&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/03?rev=1679500293&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/04?rev=1680092617&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/05?rev=1680700221&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/06?rev=1681311668&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/07?rev=1681916914&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/08?rev=1682520931&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/09?rev=1683730940&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/10?rev=1584104990&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/11?rev=1682525933&amp;do=diff"/>
                <rdf:li rdf:resource="http://ocw.cs.pub.ro/courses/ewis/laboratoare/12?rev=1665991727&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://ocw.cs.pub.ro/courses/lib/tpl/arctic/images/favicon.ico">
        <title>CS Open CourseWare</title>
        <link>http://ocw.cs.pub.ro/courses/</link>
        <url>http://ocw.cs.pub.ro/courses/lib/tpl/arctic/images/favicon.ico</url>
    </image>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/01?rev=1615993642&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-03-17T17:07:22+03:00</dc:date>
        <title>Lab 1 - Introduction to Python</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/01?rev=1615993642&amp;do=diff</link>
        <description>Lab 1 - Introduction to Python



What we need

Python is a widely used high-level interpreted programming language for general-purpose programming. Python 3.x will be used which presents some changes in terms of syntax and lots of improvements from Python 2.x, while the two major versions are not backward compatible.</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/02?rev=1678894821&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-15T17:40:21+03:00</dc:date>
        <title>Lab 2 - Data Structures. Functions. Modules</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/02?rev=1678894821&amp;do=diff</link>
        <description>Lab 2 - Data Structures. Functions. Modules

Functions

Functions are used to group code statements in order to perform a task. Similar to most programming languages, a function can take one or more inputs, perform the calculations, and then return the result. Once defined, a function can be used many times in a program.</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/03?rev=1679500293&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-22T17:51:33+03:00</dc:date>
        <title>Lab 3. Useful Python skills. Working with data files</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/03?rev=1679500293&amp;do=diff</link>
        <description>Lab 3. Useful Python skills. Working with data files

Exceptions

If you have some code that may “raise an exception” under some unknown conditions, you can defend your program by placing the suspicious code in a try: block. After the try: block, include an except: statement, followed by a block of code which handles the problem as elegantly as possible:</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/04?rev=1680092617&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-29T15:23:37+03:00</dc:date>
        <title>Lab 4. Object Oriented Programming. Web Scraping</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/04?rev=1680092617&amp;do=diff</link>
        <description>Lab 4. Object Oriented Programming. Web Scraping

Object Oriented Programming (OOP) is a computer programming model that organizes software design around data, or objects, rather than functions and logic. An object can be defined as a data field that has unique attributes and behavior.
OOP allows for writing code that is better organized and maintainable, especially in large enterprise applications.</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/05?rev=1680700221&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-04-05T16:10:21+03:00</dc:date>
        <title>Lab 5. Relational Databases. Introduction to SQL</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/05?rev=1680700221&amp;do=diff</link>
        <description>Lab 5. Relational Databases. Introduction to SQL

Introduction to Databases

A database (DB) is a structured set of data that allows the storage of information and efficient processing by multiple users.

A database management system (DBMS) is a software product that ensures interaction with a database, allowing the definition, consultation and updating of data in the database. All requests for access to the database are handled and controlled by the DBMS.</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/06?rev=1681311668&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-04-12T18:01:08+03:00</dc:date>
        <title>Lab 6. Relational Databases. MySQL-Python. Charts</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/06?rev=1681311668&amp;do=diff</link>
        <description>Lab 6. Relational Databases. MySQL-Python. Charts

In this lab, we are introduced to more advanced SQL (functions, joins, subqueries) that are commonly used when querying databases. Then, we will connect to the database and run queries using Python and we will experiment with a plotting library to visualize the results.</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/07?rev=1681916914&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-04-19T18:08:34+03:00</dc:date>
        <title>Lab 7. Statistical models. Linear regression</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/07?rev=1681916914&amp;do=diff</link>
        <description>Lab 7. Statistical models. Linear regression

Introduction to scikit-learn

Scikit-learn is a machine learning package for Python. This package contain different algorithms for Classification, Regression and Clustering, of which the algorithms used in the following laboratories are highlighted in bold.</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/08?rev=1682520931&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-04-26T17:55:31+03:00</dc:date>
        <title>Lab 8. Supervised Learning. Decision Trees</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/08?rev=1682520931&amp;do=diff</link>
        <description>Lab 8. Supervised Learning. Decision Trees

The purpose of an information system is to extract useful information from raw data. Data science is a field of study that aims to understand and analyze data by means of statistics, big data, machine learning and to provide support for decision makers and autonomous systems. While this sounds complicated, the tools are based on mathematical models and specialized software components that are already available (e.g. Python packages). In the following l…</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/09?rev=1683730940&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-05-10T18:02:20+03:00</dc:date>
        <title>Lab 9. Unsupervised Learning. K-Means Clustering</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/09?rev=1683730940&amp;do=diff</link>
        <description>Lab 9. Unsupervised Learning. K-Means Clustering

What you will learn:

	*  How to perform cluster analysis
	*  How to find the optimal number of clusters
	*  How to identify appropriate features
	*  How to interpret results

Unsupervised Learning

What is Unsupervised Machine Learning and when it can be useful:</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/10?rev=1584104990&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-03-13T15:09:50+03:00</dc:date>
        <title>Lab 10. Midterm Exam</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/10?rev=1584104990&amp;do=diff</link>
        <description>Lab 10. Midterm Exam</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/11?rev=1682525933&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-04-26T19:18:53+03:00</dc:date>
        <title>Lab 11. Project / Case Study</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/11?rev=1682525933&amp;do=diff</link>
        <description>Lab 11. Project / Case Study

This week is for working on the laboratory project and preparing the final presentation.

Requirements

Select an algorithm and a dataset to make a presentation / case study of 10-25 slides.
The combination of an algorithm and a dataset has to be unique for each student.</description>
    </item>
    <item rdf:about="http://ocw.cs.pub.ro/courses/ewis/laboratoare/12?rev=1665991727&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-17T10:28:47+03:00</dc:date>
        <title>Lab 12. Presentation</title>
        <link>http://ocw.cs.pub.ro/courses/ewis/laboratoare/12?rev=1665991727&amp;do=diff</link>
        <description>Lab 12. Presentation</description>
    </item>
</rdf:RDF>
