<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>CSD 33903 by Ummu Rifqi</title>
      <link>https://padlet.com/ummurifqi09/CSD33903</link>
      <description>Made with the strength to succeed</description>
      <language>en-us</language>
      <pubDate>2019-02-19 03:02:41 UTC</pubDate>
      <lastBuildDate>2026-01-28 16:45:16 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet-assets.s3.amazonaws.com/icons/Templeball.png</url>
      </image>
      <item>
         <title>REFERENCE</title>
         <author>ummurifqi09</author>
         <link>https://padlet.com/ummurifqi09/CSD33903/wish/342008727</link>
         <description><![CDATA[<div><strong>For preparation to test and final exam, kindly read :</strong> <strong><mark>https://tinyurl.com/y5lnryco</mark></strong></div>]]></description>
         <enclosure url="" />
         <pubDate>2019-03-16 14:22:56 UTC</pubDate>
         <guid>https://padlet.com/ummurifqi09/CSD33903/wish/342008727</guid>
      </item>
      <item>
         <title>Assignment 1</title>
         <author>ummurifqi09</author>
         <link>https://padlet.com/ummurifqi09/CSD33903/wish/342009170</link>
         <description><![CDATA[<div>is there anybody missed the submission?</div>]]></description>
         <enclosure url="" />
         <pubDate>2019-03-16 14:27:32 UTC</pubDate>
         <guid>https://padlet.com/ummurifqi09/CSD33903/wish/342009170</guid>
      </item>
      <item>
         <title>Markah coursework</title>
         <author>ummurifqi09</author>
         <link>https://padlet.com/ummurifqi09/CSD33903/wish/354678320</link>
         <description><![CDATA[<div>Markah akan dikemaskini dari masa ke semasa</div>]]></description>
         <enclosure url="https://docs.google.com/spreadsheets/d/1tVCA-arGJTxur2g7fR0TPLNKFfNzoXtkbOX66Rze-fk/edit?usp=sharing" />
         <pubDate>2019-04-27 14:47:02 UTC</pubDate>
         <guid>https://padlet.com/ummurifqi09/CSD33903/wish/354678320</guid>
      </item>
      <item>
         <title>TEST ANSWER SCHEMA</title>
         <author>ummurifqi09</author>
         <link>https://padlet.com/ummurifqi09/CSD33903/wish/354678372</link>
         <description><![CDATA[<div>an question?<br><br>section A.. please ask those who came to the scheduled class on 24th april</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/170458329/c7b1687eaf186d150a1f9482c8eed0eb/Skima_midterm_Section_B.pdf" />
         <pubDate>2019-04-27 14:47:54 UTC</pubDate>
         <guid>https://padlet.com/ummurifqi09/CSD33903/wish/354678372</guid>
      </item>
      <item>
         <title>Komen Assignment 1</title>
         <author></author>
         <link>https://padlet.com/ummurifqi09/CSD33903/wish/354738430</link>
         <description><![CDATA[<div>sila rujuk</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/258575119/3d59af996e7fdd38821347a81fc0a939/Assignment_2_komen.docx" />
         <pubDate>2019-04-28 05:52:52 UTC</pubDate>
         <guid>https://padlet.com/ummurifqi09/CSD33903/wish/354738430</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/ummurifqi09/CSD33903/wish/357063870</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://tinyurl.com/y5lnryco" />
         <pubDate>2019-05-06 06:47:51 UTC</pubDate>
         <guid>https://padlet.com/ummurifqi09/CSD33903/wish/357063870</guid>
      </item>
      <item>
         <title>Assignment 1</title>
         <author>ummurifqi09</author>
         <link>https://padlet.com/ummurifqi09/CSD33903/wish/483512786</link>
         <description><![CDATA[<div><strong><br>Assignment 1 (CLO3 – 15%)<br></strong><br></div><div>Training a dataset with basic neural network (supervised ANN)<br><br></div><ol><li>Choose a dataset (you can view the dataset in excel, .csv format, .dat format). Make sure your dataset has a class/ label. (you find it in UCI database, the number of dataset row should be in 100-200 only)</li><li>Preprocess the dataset (either input or output) using normalization if needed.</li><li>Draft the ANN consider with the dataset, identify input and output (class)</li><li>Design your ANN layers and nodes in each layer ( how many input nodes, hidden nodes and output nodes, what is the bias value, threshold value, what is range of random weight for each nodes (and bias) the first cycle of training, what activation function do you use and its deactivation function for back propagation and learning rate.&nbsp;</li><li>Develop a program for neural network back propagation using JAVA/ JAVA script or PHP/Javascript.</li><li>Train the program using different number hidden layer, different range of weight, different learning rate with the time training, how many epoch/cycle. Write in table. After the training process is over, generate several more points and show the shape of the function learned by plotting the error points.</li><li>Test the result using test dataset. Write in table</li></ol><div>What you are going to do in (3).<br><br></div><ol><li>Divide dataset in to training set and test dataset ( usually 70%- 30%)</li><li>Import the training data set, consider the row/ column of attribute of the data</li><li>Choose online or offline weight changes mode (consider this when you create loop for ANN cycle.</li><li>Set stopping value of cycle (for example error &gt;0.01)</li><li>forward phase<ol><li>calculate all the hidden nodes</li><li>activate all the hidden nodes using chosen activation function</li><li>using activated value calculate output</li><li>Find the error for each calculated (and activated) output. You maybe use different activation function that more simple than hidden layer.</li></ol></li><li>Back propagate phase<ol><li>Base on the error, find error gradient for output layer (by using deactivation function according the previous activation function used in forward propagation for each layer)</li><li>Calculate weight changes (hidden layer to output) by calculating weight gradient of output layer</li><li>Calculate error gradient for hidden layer.</li><li>Calculate weight changes (input layer to hidden layer) by calculating weight gradient of hidden layer.</li></ol></li><li>Loop for forward and back propagation until value of error of 0.01</li></ol><div>&nbsp;<br><br></div><div>&nbsp;<br><br></div><div><strong>Submit report that include the following outline:<br></strong><br></div><ol><li>Cover</li><li>Project Group Member and Task</li><li>Report Outline</li><li>Introduction</li><li>Design of ANN</li></ol><div>-&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The ANN architecture (of the designed ANN) based on item 4<br><br></div><ol><li>The result of training in table and explanation/justification<ol><li>Final weight</li><li>How many epoch cycle</li><li>How many times for training</li><li>The test result&nbsp; with test data<ol><li>Error</li><li>Time</li><li>accuracy</li></ol></li><li>Attachment of program</li></ol></li></ol><div><strong>&nbsp;<br></strong><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-31 03:58:03 UTC</pubDate>
         <guid>https://padlet.com/ummurifqi09/CSD33903/wish/483512786</guid>
      </item>
   </channel>
</rss>
