blob: f6f4e4a45c6dc3c54739c2227a972b2021dd0d7a [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.NonLinearActivations;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Hardtanh</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.NonLinearActivations.Hardtanh#getMin_val <em>Min val</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.NonLinearActivations.Hardtanh#getMax_val <em>Max val</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.NonLinearActivations.NonLinearActivationsPackage#getHardtanh()
* @model
* @generated
*/
public interface Hardtanh extends Nonlinear_activations_weightedsumnonlinearity_1 {
/**
* Returns the value of the '<em><b>Min val</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Min val</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Min val</em>' attribute.
* @see #setMin_val(double)
* @see org.eclipse.papyrus.aiml.profile.AIML.NonLinearActivations.NonLinearActivationsPackage#getHardtanh_Min_val()
* @model dataType="org.eclipse.uml2.types.Real" ordered="false"
* @generated
*/
double getMin_val();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.NonLinearActivations.Hardtanh#getMin_val <em>Min val</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Min val</em>' attribute.
* @see #getMin_val()
* @generated
*/
void setMin_val(double value);
/**
* Returns the value of the '<em><b>Max val</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Max val</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Max val</em>' attribute.
* @see #setMax_val(double)
* @see org.eclipse.papyrus.aiml.profile.AIML.NonLinearActivations.NonLinearActivationsPackage#getHardtanh_Max_val()
* @model dataType="org.eclipse.uml2.types.Real" ordered="false"
* @generated
*/
double getMax_val();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.NonLinearActivations.Hardtanh#getMax_val <em>Max val</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max val</em>' attribute.
* @see #getMax_val()
* @generated
*/
void setMax_val(double value);
} // Hardtanh