All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aika.corpus.Option Maven / Gradle / Ivy

There is a newer version: 1.4.12
Show newest version
package org.aika.corpus;

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import org.aika.network.Iteration;
import org.aika.network.neuron.Activation;
import org.aika.network.neuron.lattice.LatticeQueue;
import org.aika.utils.SetUtils;
import org.aika.utils.Timer;

import java.util.*;


/**
 * The Option class represents a node within the options lattice. Each option has a key uniquely identifying
 * this. Such a key consists of a option ids that are emitted by a NegativeInputNode. There are different
 * types of option nodes such as ACTIVATION, CONFLICT, TOP and BOTTOM.
 * Option nodes of type ACTIVATION contain a set of all activations associated with this option node.
 * Each option node maintains a weight which is accumulated and propagated towards the top of the option lattice.
 *
 *
 * @author Lukas Molzberger
 */
public class Option implements Comparable




© 2015 - 2024 Weber Informatics LLC | Privacy Policy