MESSAGE
DATE | 2017-01-23 |
FROM | Ruben Safir
|
SUBJECT | Subject: [Learn] Fwd: Re: Nueral Networks
|
From learn-bounces-at-nylxs.com Mon Jan 23 00:09:31 2017 Return-Path: X-Original-To: archive-at-mrbrklyn.com Delivered-To: archive-at-mrbrklyn.com Received: from www.mrbrklyn.com (www.mrbrklyn.com [96.57.23.82]) by mrbrklyn.com (Postfix) with ESMTP id 503F616131C; Mon, 23 Jan 2017 00:09:31 -0500 (EST) X-Original-To: learn-at-nylxs.com Delivered-To: learn-at-nylxs.com Received: from [10.0.0.62] (flatbush.mrbrklyn.com [10.0.0.62]) by mrbrklyn.com (Postfix) with ESMTP id 862D2161319 for ; Mon, 23 Jan 2017 00:09:28 -0500 (EST) From: Ruben Safir To: "learn-at-nylxs.com" References: <0f43bc77-07cb-4994-b1c6-c1fdaa95f874-at-googlegroups.com> Message-ID: <3ea70b44-68ca-d365-f520-36992cc7b662-at-mrbrklyn.com> Date: Mon, 23 Jan 2017 00:09:28 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <0f43bc77-07cb-4994-b1c6-c1fdaa95f874-at-googlegroups.com> Subject: [Learn] Fwd: Re: Nueral Networks X-BeenThere: learn-at-nylxs.com X-Mailman-Version: 2.1.17 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: learn-bounces-at-nylxs.com Sender: "Learn"
FWIW - AI for the projects class
-------- Forwarded Message -------- Subject: Re: Nueral Networks Date: Sat, 21 Jan 2017 10:32:23 -0800 (PST) From: CLIPS Support Reply-To: clipsesg-at-googlegroups.com To: CLIPSESG
Depends upon what you mean by effectively. CLIPS> (deffunction step_function (?threshold ?value) (if (> ?value ?threshold) then (return 1) else (return 0))) CLIPS> (deffunction run_perceptron (?weightA ?weightB ?valueA ?valueB ?threshold) (bind ?value (+ (* ?weightA ?valueA) (* ?weightB ?valueB))) (bind ?result (step_function ?threshold ?value)) (printout t ?valueA " " ?valueB ": " ?result crlf)) CLIPS> (deffunction show_truth_table (?weightA ?weightB ?threshold) (run_perceptron ?weightA ?weightB 0 0 ?threshold) (run_perceptron ?weightA ?weightB 0 1 ?threshold) (run_perceptron ?weightA ?weightB 1 0 ?threshold) (run_perceptron ?weightA ?weightB 1 1 ?threshold)) CLIPS> (deffunction main() (printout t "AND:" crlf) (show_truth_table 0.4 0.4 0.5) (printout t "OR:" crlf) (show_truth_table 0.6 0.6 0.5)) CLIPS> (main) AND: 0 0: 0 0 1: 0 1 0: 0 1 1: 1 OR: 0 0: 0 0 1: 1 1 0: 1 1 1: 1 CLIPS> On Friday, January 20, 2017 at 9:22:33 AM UTC-6, ruben.safir-at-my.liu.edu wrote:
Can this be done effectively through CLIPS?
> -------- Forwarded Message -------- > Subject: cs691 notes and task > Date: Fri, 20 Jan 2017 01:12:40 -0500 > From: Christopher League > > > > > Here are notes from this week=E2=80=99s meeting: > https://liucs.net/cs691s17/perceptrons.html > > including a solution to the XOR problem (thanks Priya) and a small > coding task you should do before next time. > > Enjoy! > > CL >
-- =
You received this message because you are subscribed to the Google Groups "CLIPSESG" group. To post to this group, send email to CLIPSESG-at-googlegroups.com For more options, visit this group at http://groups.google.com/group/CLIPSESG?hl=3Den --> IF YOU NO LONGER WANT TO RECEIVE EMAIL <-- Visit this group at http://groups.google.com/group/CLIPSESG?hl=3Den Click on "Edit my membership" link. Select the "No Email" radio button. Click the "Save these settings" button.
--> IF YOU WANT TO UNSUBSCRIBE <-- Visit this group at http://groups.google.com/group/CLIPSESG?hl=3Den Sign in Click on "Edit my membership" link. Click the "Unsubscribe" button. Note: This appears to be the most reliable way to unsubscribe Alternately, send email to CLIPSESG-unsubscribe-at-googlegroups.com. You will receive an email which you must respond to as well to unsubscribe. Clicking the link mentioned in the unsubscribe reply does not appear to work reliably. --- You received this message because you are subscribed to the Google Groups "CLIPSESG" group. To unsubscribe from this group and stop receiving emails from it, send an email to clipsesg+unsubscribe-at-googlegroups.com . For more options, visit https://groups.google.com/d/optout.
-- =
So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions in the mind of the world - RI Safir 1998 http://www.mrbrklyn.com
DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 http://www.nylxs.com - Leadership Development in Free Software http://www2.mrbrklyn.com/resources - Unpublished Archive http://www.coinhangout.com - coins! http://www.brooklyn-living.com
Being so tracked is for FARM ANIMALS and and extermination camps, but incompatible with living as a free human being. -RI Safir 2013 _______________________________________________ Learn mailing list Learn-at-nylxs.com http://lists.mrbrklyn.com/mailman/listinfo/learn
|
|