Search results

1 matches found for Tensorflow

  1. Deep Q-Learning (11 matching lines)
    ## Task 1 - Tensorflow/Keras
    We will start today with getting used to tensorflow/keras, you can also adapt the exercises to pytorch or similar if prefered (but code-examples will be given in tensorflow).
    First, install tensorflow:
    pip install tensorflow
    We will only be using the Keras API, you can find the documentation [here](https://www.tensorflow.org/guide/keras/sequential_model)
    import tensorflow as tf
    from tensorflow import keras
    from tensorflow.python.keras.layers import Dense
    import tensorflow as tf
    from tensorflow import keras  
    from tensorflow.python.keras.layers import Dense