0% found this document useful (0 votes)
15 views1 page

Lab Assignment 8 - Questions

The assignment requires the implementation of a single-layer perceptron using a dataset with 13 samples, focusing on binary classification. Students must modify the perceptron to use various activation functions, train the model, analyze outputs, and compare decision boundaries among different functions. Additionally, students are tasked with plotting the decision boundaries for the various activation functions used.

Uploaded by

bishwadiprajp
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Lab Assignment 8 - Questions

The assignment requires the implementation of a single-layer perceptron using a dataset with 13 samples, focusing on binary classification. Students must modify the perceptron to use various activation functions, train the model, analyze outputs, and compare decision boundaries among different functions. Additionally, students are tasked with plotting the decision boundaries for the various activation functions used.

Uploaded by

bishwadiprajp
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Assignment 8, CS2672 - AIML-Lab, Spring 2025

Lab Assignment Questions:


1. Implement Single layer perceptron for the given data set. A total of 13 samples with
three features and one class label. The class label is defined in binary 0 and 1. The
training dataset contains eight data samples, while the validation dataset contains five.
2. Modify the Perceptron to Use Sigmoid Activation, Tanh Activation, ReLU Activation
functions by replacing the Step function.
3. Train the model and analyze the outputs.
4. Compare decision boundaries of Step Function vs. Sigmoid.
5. Compare decision boundaries of Sigmoid vs. Tanh.
6. Compare ReLU vs. Sigmoid for linear separability
7. Plot the decision boundary for different activation functions.

You might also like