php 【ゼロから作る深度学习】2.5.2 XORゲートの実装(多层パーセプトロン)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 【ゼロから作る深度学习】2.5.2 XORゲートの実装(多层パーセプトロン)相关的知识,希望对你有一定的参考价值。

<?php

//echo perceptron_xor(1, 1);

/**
 * Created by PhpStorm.
 * User: kure
 * Date: 11/14/17
 * Time: 1:37 PM
 */

/**
 * @param $type and or nand or or
 * @param $x1
 * @param $x2
 * @return int
 */
function perceptron(string $type, int $x1, int $x2){
    switch($type){
        case "and":
            $w1 = 0.5;
            $w2 = 0.5;
            $theta = 0.7;
            break;
        case "or":
            $w1 = 1;
            $w2 = 1;
            $theta = 0.5;
            break;
        case "nand":
            $w1 = -0.5;
            $w2 = -0.5;
            $theta = -0.7;
            break;
        default:
            echo "Error";
    }

    $w = $x1*$w1 + $x2*$w2;
    return($w > $theta) ?  1 : 0;
}

function perceptron_xor($x1, $x2){
    $s1 = perceptron("nand", $x1, $x2);
    $s2 = perceptron("or", $x1, $x2);
    return perceptron("and", $s1, $s2);
}


以上是关于php 【ゼロから作る深度学习】2.5.2 XORゲートの実装(多层パーセプトロン)的主要内容,如果未能解决你的问题,请参考以下文章

Python 操作Redis

python爬虫入门----- 阿里巴巴供应商爬虫

Python词典设置默认值小技巧

《python学习手册(第4版)》pdf

Django settings.py 的media路径设置

Python中的赋值,浅拷贝和深拷贝的区别