alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (NoEdgeHandling.java)

This example Java source code file (NoEdgeHandling.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

cutoff_on_disconnected, exception_on_disconnected, noedgehandling, padding_on_disconnected, restart_on_disconnected, self_loop_on_disconnected

The NoEdgeHandling.java Java example source code

package org.deeplearning4j.models.sequencevectors.graph.enums;

/**
 * This enum describes different behaviors for cases when GraphWalker don't have next hop within current walk.
 *
 * @author raver119@gmail.com
 */
public enum  NoEdgeHandling {
    SELF_LOOP_ON_DISCONNECTED,
    EXCEPTION_ON_DISCONNECTED,
    PADDING_ON_DISCONNECTED,
    CUTOFF_ON_DISCONNECTED,
    RESTART_ON_DISCONNECTED,
}

Other Java examples (source code examples)

Here is a short list of links related to this Java NoEdgeHandling.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.