0% found this document useful (0 votes)
10 views8 pages

Modul-IS794-Modul02-Fundamentals of Neural Network-Gsl2024-2025

Uploaded by

youmomgae123
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
10 views8 pages

Modul-IS794-Modul02-Fundamentals of Neural Network-Gsl2024-2025

Uploaded by

youmomgae123
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 8

LAB MODULE

IS794 – DEEP LEARNING


INFORMATION SYSTEM UNDERGRADUATE PROGRAM
FACULTY OF ENGINEERING AND INFORMATICS

Date Issued :

INFORMATION SYSTEM DEPARTMENT


FACULTY OF ENGINEERING AND INFORMATICS
UNIVERSITAS MULTIMEDIA NUSANTARA
Gedung B Lantai 5, Kampus UMN
Jl. Scientia Boulevard, Gading Serpong, Tangerang, Banten-15811 Indonesia
Telp: +62-21.5422.0808 (ext. 1803), email: ict.lab@umn.ac.id, web: umn.ac.id
COURSE LEARNING OBJECTIVE

SUB-CLO01: Students are able to understand the basic concepts of deep learning and
neural networks (C2)
CLO011
SUB-CLO01: Students are able to understand the basic concepts of deep learning and
neural networks (C2)

SUB-CLO02: Students are able to understand (C2) and implement (C3) Keras and
Tensorflow

SUB-CLO03: Students are able to understand (C2) and implement (C3) machine learning
to make predictions
CLO012 SUB-CLO04: Students are able to understand (C2) and implement (C3) neural networks
for image classification (visual data)

SUB-CLO05: Students are able to understand (C2) and implement (C3) neural networks
for time series data

SUB-CLO06: Students are able to understand (C2) and implement (C3) neural networks
for text data

SUB-CLO07: Students are able to understand (C2) and implement (C3) generative deep
CLO013
learning

SUB-CLO08: Students are able to present the results of implementing design, analysis,
CLO081
and evaluation of deep learning implementation in a particular case study (P2)

SUB-CLO09: Students are able to implement (C3), design (P5) machine learning, and
CLO091
analysis and evaluation with deep learning into specific case studies.

INFORMATION SYSTEM DEPARTMENT | DEEP LEARNING


Page. 2 of 8
MODULE 2
Fundamentals of Neural Network
DESCRIPTION
1. Python scripting using Numpy and Pandas libraries.
2. Scripting for text vectorization and sequential model

WEEKLY SUB-COURSE LEARNING OBJECTIVE


SUB-CLO01: Students are able to understand the basic concepts of deep learning and neural networks
(C2)

TOOLS
1. Anaconda Navigator
2. Python
3. TensorFlow
4. Google Colaborator (optional)

STEPS
INTRODUCTION
In this practical, there will be two exercises. First, students will try to do Python scripting by utilizing the
Numpy and Pandas libraries. Second, students will carry out a simple text classification by comparing
ordinary machine learning with neural networks.

NUMPY ARRAY AND PANDAS


Numpy is a Python library that supports large, multidimensional arrays and matrices. Meanwhile, the
Pandas Library is used for data manipulation and analysis in Python.

1. MNIST Dataset
You will use the MNIST dataset, sample data provided from Keras. Run the following script to evaluate
the data processing model with numpy array objects.

INFORMATION SYSTEM DEPARTMENT | DEEP LEARNING


Page. 3 of 8
2. Heart Disease Dataset
You will use a dataset containing records of patients with a history of heart disease. Run the following
script to create a dataframe that aims to evaluate the model that will be used to predict heart disease
patients, by utilizing the Pandas library to read the csv file used.

INFORMATION SYSTEM DEPARTMENT | DEEP LEARNING


Page. 4 of 8
3. Challenge 1 – Corona Dataset
You will be given a CSV file called corona.csv. Perform the same steps using Pandas, to find the
probability of corona disease patients.

TEXT CLASSIFICATION
Text vectorization is performed to convert a collection of text documents into a vector of numerical
features. This process includes (tokenization, counting, and normalization).
4. Basic Text Classification
Run the following script to classify the dataset in the form of text. The data used is sample data from
the internet, and has been labeled. The classification model used is Logistic Regression.

INFORMATION SYSTEM DEPARTMENT | DEEP LEARNING


Page. 5 of 8
5. Text Classification with Neural Network
Run the following script to classify the dataset in the form of text, namely film reviews taken from
IMDB on Keras.

INFORMATION SYSTEM DEPARTMENT | DEEP LEARNING


Page. 6 of 8
INFORMATION SYSTEM DEPARTMENT | DEEP LEARNING
Page. 7 of 8
6. After doing the second practice, what can you conclude? (Compare the IMDB data accuracy results in
number 4 and 5).

SUBMISSION
1. Save your work in the file format .zip including:
a. File project (.ipynb)
b. File PDF consisting of screenshots of output and answers to questions (if any)
2. Filename: COURSECODE_CLASS_NIM_NAME_WEEK-XX.zip (eg.:
IS5794_A_13110310017_Monika Evelin Johan_Week-01.zip).

REFERENCE
Chollet, F. (2021). Deep Learning with Python. Manning Publications Co.
Ketkar, N., & Santana, E. (2017). Deep Learning with Python : A Hands-on Introduction. Banglore, Karnataka:
Apress.

INFORMATION SYSTEM DEPARTMENT | DEEP LEARNING


Page. 8 of 8

You might also like