Package model.MARK_II.connectTypes

Examples of model.MARK_II.connectTypes.AbstractRegionToRegionConnect.connect()


        // connect LGN to very small part of V1 Region of Neocortex
        Neocortex neocortex = nervousSystem.getCNS().getBrain().getCerebrum()
                .getCerebralCortex().getNeocortex();
        AbstractRegionToRegionConnect regionToRegionConnect = new RegionToRegionRectangleConnect();
        regionToRegionConnect.connect(LGN.getRegion(),
                neocortex.getCurrentRegion(), 0, 0);

        return nervousSystem;
    }
View Full Code Here


    }

    public void test_getBottomLayerXYAxisLength() {
        Region bottomLayer = new Region("bottomLayer", 25, 35, 1, 50, 1);
        AbstractRegionToRegionConnect connectType = new RegionToRegionRectangleConnect();
        connectType.connect(bottomLayer, this.region, 0, 0);

        Dimension bottomLayerDimensions = this.region
                .getBottomLayerXYAxisLength();
        assertEquals(25, bottomLayerDimensions.width);
        assertEquals(35, bottomLayerDimensions.height);
View Full Code Here

    public void setUp() {
        this.parentRegion = new Region("parentRegion", 8, 8, 4, 20, 3);
        Region childRegion = new Region("childRegion", 66, 66, 4, 20, 3);
        AbstractRegionToRegionConnect connectType = new RegionToRegionRectangleConnect();
        connectType.connect(childRegion, this.parentRegion, 2, 2);

        this.spatialPooler = new SpatialPooler(this.parentRegion);
        this.spatialPooler.setLearningState(true);
    }
View Full Code Here

        // with 1 connected Synapse & test. Then add another connected Synapse
        // & test.
        Region parentRegion2 = new Region("parentRegion2", 1, 1, 1, 50, 1);
        Region childRegion2 = new Region("childRegion2", 5, 5, 1, 50, 3);
        AbstractRegionToRegionConnect connectType = new RegionToRegionRectangleConnect();
        connectType.connect(childRegion2, parentRegion2, 0, 0);
        // parentRegion2 has 1 Column with 25 synapses.

        Column[][] columns = parentRegion2.getColumns();
        Set<Synapse<Cell>> synapses = columns[0][0].getProximalSegment()
                .getSynapses();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.