blob: 8161bf1ce9a562e9a5b6e1a4945a72118d55463f [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
*/
package org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers;
import org.eclipse.papyrus.aiml.profile.AIML.Module.Model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Recurrent layers</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layers#getInput_size <em>Input size</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layers#getHidden_size <em>Hidden size</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layers#isBias_pt <em>Bias pt</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layersPackage#getRecurrent_layers()
* @model abstract="true"
* @generated
*/
public interface Recurrent_layers extends Model {
/**
* Returns the value of the '<em><b>Input size</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Input size</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Input size</em>' attribute.
* @see #setInput_size(int)
* @see org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layersPackage#getRecurrent_layers_Input_size()
* @model dataType="org.eclipse.uml2.types.Integer" required="true" ordered="false"
* @generated
*/
int getInput_size();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layers#getInput_size <em>Input size</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Input size</em>' attribute.
* @see #getInput_size()
* @generated
*/
void setInput_size(int value);
/**
* Returns the value of the '<em><b>Hidden size</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Hidden size</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Hidden size</em>' attribute.
* @see #setHidden_size(int)
* @see org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layersPackage#getRecurrent_layers_Hidden_size()
* @model dataType="org.eclipse.uml2.types.Integer" required="true" ordered="false"
* @generated
*/
int getHidden_size();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layers#getHidden_size <em>Hidden size</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Hidden size</em>' attribute.
* @see #getHidden_size()
* @generated
*/
void setHidden_size(int value);
/**
* Returns the value of the '<em><b>Bias pt</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bias pt</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Bias pt</em>' attribute.
* @see #setBias_pt(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layersPackage#getRecurrent_layers_Bias_pt()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isBias_pt();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Recurrent_layers.Recurrent_layers#isBias_pt <em>Bias pt</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Bias pt</em>' attribute.
* @see #isBias_pt()
* @generated
*/
void setBias_pt(boolean value);
} // Recurrent_layers