Lab_Assignments
Lab_Assignments
Write a Python program to allow the user to enter the a’s and b’s parameters and
returns the solution of the system of equations. Consider the case when m = n for
simplicity. Test your program for different values of n. You may consider generating
random numbers for the parameters.
___________________________________________________________________
Mechatronics Engineering and Automation Program
CSE473: Computational Intelligence
Lab Assignment #03
Tasks:
1. Create the data set as shown above.
o The number of points in the red class is N1 entered by the user.
o The number of points in the red class is N2 entered by the user.
o Label, training, validation, and test points.
2. Train a linear classifier for the created data.
o Visualize the training and validation losses/error.
o Visualize the decision boundary.
3. Train a MLNN classifier for the created data.
o Visualize the training and validation losses/error.
o Visualize the decision boundary.
4. Dcompare between the two cases of 2 and 3.
Submission:
• Submit your Python script (.py file) containing the implementation of the tasks
above.
• Ensure your script is well-commented and includes any necessary explanations
of your approach and results.
___________________________________________________________________
Mechatronics Engineering and Automation Program
CSE473: Computational Intelligence
Lab Assignment #06
Tasks:
1. Create the data set as shown above.
o The number of points can be entered by the user.
o Label, training, validation, and test points.
2. Train a MCSVM classifier for the created data.
o Visualize the training and validation losses/error.
o Visualize the decision boundaries.
3. Train a MLNN classifier for the created data.
o Visualize the training and validation losses/error.
o Visualize the decision boundary.
4. Dcompare between the two cases of 2 and 3.
Submission:
• Submit your Python script (.py file) containing the implementation of the tasks
above.
• Ensure your script is well-commented and includes any necessary explanations
of your approach and results.
___________________________________________________________________