blob: bddb23689ad1827337c3e9b86d6eaa22670b5e37 [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.Sparse_layers;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Embedding Bag</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Sparse_layers.EmbeddingBag#getMode <em>Mode</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Sparse_layers.EmbeddingBag#isInclude_last_offset <em>Include last offset</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Sparse_layers.Sparse_layersPackage#getEmbeddingBag()
* @model
* @generated
*/
public interface EmbeddingBag extends Sparse_layers {
/**
* Returns the value of the '<em><b>Mode</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Mode</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Mode</em>' attribute.
* @see #setMode(String)
* @see org.eclipse.papyrus.aiml.profile.AIML.Sparse_layers.Sparse_layersPackage#getEmbeddingBag_Mode()
* @model dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getMode();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Sparse_layers.EmbeddingBag#getMode <em>Mode</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mode</em>' attribute.
* @see #getMode()
* @generated
*/
void setMode(String value);
/**
* Returns the value of the '<em><b>Include last offset</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Include last offset</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Include last offset</em>' attribute.
* @see #setInclude_last_offset(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Sparse_layers.Sparse_layersPackage#getEmbeddingBag_Include_last_offset()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isInclude_last_offset();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Sparse_layers.EmbeddingBag#isInclude_last_offset <em>Include last offset</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Include last offset</em>' attribute.
* @see #isInclude_last_offset()
* @generated
*/
void setInclude_last_offset(boolean value);
} // EmbeddingBag