Package htm.Column

Examples of htm.Column.CellAndSegment


            col.getCell(c).setActive(true);
        }

        if(_temporalLearning && !learningCellChosen) {
          //printf("bestSeg for (%d %d)\n", col->cx(), col->cy());
          CellAndSegment cas = col.getBestMatchingCell(1, true);
          Cell bestCell = cas.cell;
          Segment bestSeg = cas.segment;
          bestCell.setLearning(true);

          //segUpdate is added internally to Cell's update list
View Full Code Here


                col.getCell(c).setActive(true);
            }

            if(learning && !learningCellChosen) {
              //printf("bestSeg for (%d %d)\n", col->cx(), col->cy());
              CellAndSegment cas = col.getBestMatchingCell(1, true);
              Cell bestCell = cas.cell;
              Segment bestSeg = cas.segment;
              bestCell.setLearning(true);

              //segUpdate is added internally to Cell's update list
View Full Code Here

TOP

Related Classes of htm.Column.CellAndSegment

Copyright © 2018 www.massapicom. 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.