blob: 6f8e72b13185d5162ac586ea4e64d3f92c88c2d3 [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.Normalization_layers;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Layer Norm</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Normalization_layers.LayerNorm#getNormalized_shape <em>Normalized shape</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Normalization_layers.LayerNorm#isElementwise_affine <em>Elementwise affine</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Normalization_layers.Normalization_layersPackage#getLayerNorm()
* @model
* @generated
*/
public interface LayerNorm extends Normalization_layers_1 {
/**
* Returns the value of the '<em><b>Normalized shape</b></em>' attribute list.
* The list contents are of type {@link java.lang.Integer}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Normalized shape</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Normalized shape</em>' attribute list.
* @see org.eclipse.papyrus.aiml.profile.AIML.Normalization_layers.Normalization_layersPackage#getLayerNorm_Normalized_shape()
* @model dataType="org.eclipse.uml2.types.Integer" ordered="false"
* @generated
*/
EList<Integer> getNormalized_shape();
/**
* Returns the value of the '<em><b>Elementwise affine</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Elementwise affine</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Elementwise affine</em>' attribute.
* @see #setElementwise_affine(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Normalization_layers.Normalization_layersPackage#getLayerNorm_Elementwise_affine()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isElementwise_affine();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Normalization_layers.LayerNorm#isElementwise_affine <em>Elementwise affine</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Elementwise affine</em>' attribute.
* @see #isElementwise_affine()
* @generated
*/
void setElementwise_affine(boolean value);
} // LayerNorm