blob: f33f3e1c93292e5962dd9a5e8be6b8edb9abb35e [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.Dropout_layers;
import org.eclipse.emf.common.util.EList;
import org.eclipse.papyrus.aiml.profile.AIML.Module.Model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Dropout layers</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layers#getP <em>P</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layers#isInplace <em>Inplace</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layers#getNoise_shape <em>Noise shape</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layers#getSeed <em>Seed</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layersPackage#getDropout_layers()
* @model abstract="true"
* @generated
*/
public interface Dropout_layers extends Model {
/**
* Returns the value of the '<em><b>P</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>P</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>P</em>' attribute.
* @see #setP(double)
* @see org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layersPackage#getDropout_layers_P()
* @model dataType="org.eclipse.uml2.types.Real" ordered="false"
* @generated
*/
double getP();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layers#getP <em>P</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>P</em>' attribute.
* @see #getP()
* @generated
*/
void setP(double value);
/**
* Returns the value of the '<em><b>Inplace</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Inplace</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Inplace</em>' attribute.
* @see #setInplace(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layersPackage#getDropout_layers_Inplace()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isInplace();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layers#isInplace <em>Inplace</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Inplace</em>' attribute.
* @see #isInplace()
* @generated
*/
void setInplace(boolean value);
/**
* Returns the value of the '<em><b>Noise 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>Noise 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>Noise shape</em>' attribute list.
* @see org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layersPackage#getDropout_layers_Noise_shape()
* @model dataType="org.eclipse.uml2.types.Integer" ordered="false"
* @generated
*/
EList<Integer> getNoise_shape();
/**
* Returns the value of the '<em><b>Seed</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Seed</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Seed</em>' attribute.
* @see #setSeed(int)
* @see org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layersPackage#getDropout_layers_Seed()
* @model dataType="org.eclipse.uml2.types.Integer" ordered="false"
* @generated
*/
int getSeed();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Dropout_layers.Dropout_layers#getSeed <em>Seed</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Seed</em>' attribute.
* @see #getSeed()
* @generated
*/
void setSeed(int value);
} // Dropout_layers