MESSAGE
DATE | 2017-01-21 |
FROM | Ruben Safir
|
SUBJECT | Subject: [Learn] Fwd: Re: Nueral Networks
|
From learn-bounces-at-nylxs.com Wed Jan 25 00:38:45 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 36200161312; Wed, 25 Jan 2017 00:38:44 -0500 (EST) X-Original-To: learn-at-nylxs.com Delivered-To: learn-at-nylxs.com Received: from mail-qt0-f171.google.com (mail-qt0-f171.google.com [209.85.216.171]) by mrbrklyn.com (Postfix) with ESMTP id 0D09F160E77 for ; Wed, 25 Jan 2017 00:38:40 -0500 (EST) Received: by mail-qt0-f171.google.com with SMTP id v23so7596540qtb.0 for ; Tue, 24 Jan 2017 21:38:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=my.liu.edu; s=google; h=subject:references:to:from:message-id:date:user-agent:mime-version :in-reply-to:content-transfer-encoding; bh=gt6IXvo3OSsnXY2fElxJ13aWRdoEM61O260veBrWQeQ=; b=BNp7c93hmoKKZSEusteDgWEZTCm5jPH24N2IGZmjt5iJGhxPZvlBTMsEhf6az6fktv PR8wNqNSszcjC4aSa6rWH2FmlRL9nMNzwqPBHR+AOI23+cj3kj0ymDaQ1Wh5FpQmGS8Q gcA9cAb3DfDGaBujygUiheCbJLFRt3pZAIll4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=gt6IXvo3OSsnXY2fElxJ13aWRdoEM61O260veBrWQeQ=; b=SJtV854nieC6Fqwza9r/VsYlaOzY60W/x34vV3RZT5NrDcJ6wFOPr+Fmv81spkqe50 FcPUCxsYWFLHs/J5Orq2+uQjwxMN8H3OGak/wTw8Q7lkbis2kwpZiWGPo/TtcJ5urBYt bjij9dRVsMbUZO8kGgYSrGi7ZrvCMZ8hktL+DQCws+uHThrgmyGbKBMKEeTv7lDjijqY mnMHyJzBKkmS2O1z+WaSsDqMJcpQnbobvoiPcb3Yt+KEGRtJGwApj3w83ijt8HPHmUBE gCqBnishotZ7PwaB8og3XlKd7ffOnN4hxEGt+Tq9hVezRb6mzD2Q8Eyel5Ib42Qyj91X tC5g== X-Gm-Message-State: AIkVDXILbN29tY3vqNIyemr5KSX8F62P0P9Gc0vNJ9CxK77FxmYIbgOYDpQUxtCORTlgZGf6 X-Received: by 10.237.54.1 with SMTP id e1mr17718949qtb.68.1485048427068; Sat, 21 Jan 2017 17:27:07 -0800 (PST) Received: from [10.0.0.62] (www.mrbrklyn.com. [96.57.23.82]) by smtp.googlemail.com with ESMTPSA id t35sm9748072qtc.40.2017.01.21.17.27.06 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 21 Jan 2017 17:27:06 -0800 (PST) References: <0f43bc77-07cb-4994-b1c6-c1fdaa95f874-at-googlegroups.com> To: "learn-at-nylxs.com" From: Ruben Safir X-Forwarded-Message-Id: <0f43bc77-07cb-4994-b1c6-c1fdaa95f874-at-googlegroups.com> Message-ID: <0c5b3b78-38bd-9e9d-ebf6-df26644874ee-at-my.liu.edu> Date: Sat, 21 Jan 2017 20:27:05 -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. _______________________________________________ Learn mailing list Learn-at-nylxs.com http://lists.mrbrklyn.com/mailman/listinfo/learn
|
|