Input: X;
Weight: W;
Activation: A;
A = X1W1 + X2W2 + X3W3 + … + XnWn.
If (A >= someThreshold) { //Output 1 }
Else { //Nothing }
someThreshold - simple step, any valid curve function, etc.
Posted by amuhb on December 2, 2009
Input: X;
Weight: W;
Activation: A;
A = X1W1 + X2W2 + X3W3 + … + XnWn.
If (A >= someThreshold) { //Output 1 }
Else { //Nothing }
someThreshold - simple step, any valid curve function, etc.
Posted in Brainsnack., Self-reminder Goodies | Tagged: Newral network concepts | 1 Comment »
Posted by amuhb on November 1, 2009
In computer programming, the thread pool pattern is where a number of threads are created to perform a number of tasks, which are usually organized in a queue. Typically, there are many more tasks than threads. As soon as a thread completes its task, it will request the next task from the queue until all tasks have been completed. The thread can then terminate, or sleep until there are new tasks available.
Posted in Self-reminder Goodies | Leave a Comment »
Posted by amuhb on November 1, 2009
GUI – Graphical User Interface;
Client-Server – a distributed application architecture that divides tasks or workloads between service providers (servers) and service requesters (clients). Generally, it describes the relationship between two programs, where one makes a service request to another. In a network, multiple server programs can be run on one host, the server machine. Client programs initiate communication sessions with servers, which await (listen to) incoming requests. Opposing to Peer-to-Peer and Client-queue-Client architectures.
API - Application Programming Interface – an interface that a software program implements in order to allow other software to interact with it; much in the same way that a software might implement the GUI in order to allow humans to operate with it.
J2EE - Java Platform, Enterprise Edition;
JMS - Java Message Service API is a messaging standard that allows application components based on the A2EE to create, send, receive, and read messages. It enables distributed communication between components. Java applications that use JMS are called JMS clients; system that handles routing and delivery of messages - JMS Provider; JMS Application – a business system, composer of many JMS clients, and, generally, one JMS Provider.
EJB – Enterprise JavaBeans. A server side component architecture for Java Platform, Enterprise Edition. EJB technology enables rapid and simplified development of distributed, secure and portable applications based on Java technology. In a typical application, EJBs contain the application’s business logic and business data, and is solving many issues which appear while using the standard Java objects.
Posted in Self-reminder Goodies | Tagged: API, Client-Server, EJB, GUI, J2EE, JMS | Leave a Comment »
Posted by amuhb on October 31, 2009
#define name replacement text
Posted in Self-reminder Goodies | Tagged: Macro substitution, programming | Leave a Comment »
Posted by amuhb on October 30, 2009
putchar is a function that writes a single character to the stdout (displays on a screen).
Posted in Self-reminder Goodies | Tagged: putchar | Leave a Comment »