Artificial Intelligence Research
  • Archive
  • tag
  • Category

    Mr Ko

    AI is my favorite domain as a professional Researcher. What I am doing is Reinforcement Learning,Autonomous Driving,Deep Learning,Time series Analysis, SLAM and robotics. Also Economic Analysis including AI,AI business decision

    • Korea/Canada
    • Email

    Softmax function

    less than 1 minute read

    Softmax function python

    	
    import numpy as np
    # Define our softmax function
    def softmax(x):
        ex = np.exp(x)
        sum_ex = np.sum( np.exp(x))
        return ex/sum_ex
     
    
     
    print (softmax([1,2,3]))
    
    

    The Softmax function and its derivative

    Tags: RL, softmax

    Categories: reinforcement learning

    Updated: September 05, 2018

    Share on

    Twitter Facebook Google+ LinkedIn
    Previous Next

    You May Also Enjoy

    Reinforcement Learning for Market

    less than 1 minute read

    Elf three rings

    less than 1 minute read

    Keras Image Generator

    1 minute read

    ```python from keras.datasets import mnist from keras.utils import to_categorical from keras.models import Sequential from keras.layers import Conv2D from ke...

    Nvidia Self Driving Car Model

    4 minute read

    ```python import socketio import eventlet import numpy as np from flask import Flask from keras.models import load_model import base64 from io import BytesIO...

    • Follow:
    • Feed
    © 2020 Mr Ko. Powered by Jekyll & Minimal Mistakes.