blob: 7a4ec71518fc5c0f283ecba2f363cbbc791a238b [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.Linear_layers;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Linear layers 1</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Linear_layers.Linear_layers_1#getOut_features <em>Out features</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Linear_layers.Linear_layers_1#isBias <em>Bias</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Linear_layers.Linear_layersPackage#getLinear_layers_1()
* @model abstract="true"
* @generated
*/
public interface Linear_layers_1 extends Linear_layers {
/**
* Returns the value of the '<em><b>Out features</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Out features</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Out features</em>' attribute.
* @see #setOut_features(int)
* @see org.eclipse.papyrus.aiml.profile.AIML.Linear_layers.Linear_layersPackage#getLinear_layers_1_Out_features()
* @model dataType="org.eclipse.uml2.types.Integer" required="true" ordered="false"
* @generated
*/
int getOut_features();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Linear_layers.Linear_layers_1#getOut_features <em>Out features</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Out features</em>' attribute.
* @see #getOut_features()
* @generated
*/
void setOut_features(int value);
/**
* Returns the value of the '<em><b>Bias</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bias</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</em>' attribute.
* @see #setBias(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Linear_layers.Linear_layersPackage#getLinear_layers_1_Bias()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isBias();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Linear_layers.Linear_layers_1#isBias <em>Bias</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Bias</em>' attribute.
* @see #isBias()
* @generated
*/
void setBias(boolean value);
} // Linear_layers_1