Mila
Deep Neural Network Library
Loading...
Searching...
No Matches
Softmax.ixx File Reference

Implementation of the Softmax activation function module. More...

#include <memory>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
#include <type_traits>
#include <cstdint>
import Compute.CudaMemoryResource;
import Compute.CpuMemoryResource;
import Compute.MemoryResource;
import Dnn.Modules.Softmax:Config;
import Compute.OperationAttributes;
import Dnn.Module;
import Compute.DeviceType;
import Dnn.Tensor;
import Dnn.TensorTraits;
import Compute.OperationRegistry;
import Compute.Precision;
import Compute.ComputeDevice;
import Serialization.ModelArchive;
import Compute.DeviceContext;
import Dnn.TensorHelpers;
import Compute.OperationBase;
import Compute.UnaryOperation;

Classes

class  Mila::Dnn::Softmax< TDeviceType, TInput, TOutput >
 Softmax module for neural networks. More...
 

Namespaces

namespace  Mila
 
namespace  Mila::Dnn
 

Typedefs

template<typename TInput = float, typename TOutput = TInput>
using Mila::Dnn::CpuSoftmax = Softmax< DeviceType::Cpu, TInput, TOutput >
 Type alias for CPU-based softmax module with customizable tensor types.
 
template<typename TInput = float, typename TOutput = TInput>
using Mila::Dnn::CudaSoftmax = Softmax< DeviceType::Cuda, TInput, TOutput >
 Type alias for CUDA-based softmax module with customizable tensor types.
 

Detailed Description

Implementation of the Softmax activation function module.