Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update 11/16 #9

Merged
merged 28 commits into from
Nov 17, 2020
Merged

update 11/16 #9

merged 28 commits into from
Nov 17, 2020

Commits on Aug 5, 2019

  1. Update dcgan.py (aymericdamien#320)

    correct some misunderstanding comments
    chenminhua authored and aymericdamien committed Aug 5, 2019
    Configuration menu
    Copy the full SHA
    11380c8 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2019

  1. add new examples

    aymericdamien committed Aug 10, 2019
    Configuration menu
    Copy the full SHA
    bb4daed View commit details
    Browse the repository at this point in the history
  2. update docs

    aymericdamien committed Aug 10, 2019
    Configuration menu
    Copy the full SHA
    6cb2ad4 View commit details
    Browse the repository at this point in the history
  3. small fixes

    aymericdamien committed Aug 10, 2019
    Configuration menu
    Copy the full SHA
    f4c3435 View commit details
    Browse the repository at this point in the history
  4. fix docs

    aymericdamien committed Aug 10, 2019
    Configuration menu
    Copy the full SHA
    0564f61 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2019

  1. add word2vec for TF2.0

    aymericdamien committed Aug 17, 2019
    Configuration menu
    Copy the full SHA
    3650e19 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2019

  1. Configuration menu
    Copy the full SHA
    7aeb6cb View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2020

  1. A minor mistake in cross entropy loss (aymericdamien#357)

    tf.reduce_mean(-tf.reduce_sum(y_true * tf.math.log(y_pred),1)) or else it simply finds the sum and the reduced mean remains the sum itself.
    kilarinikhil committed Apr 12, 2020
    Configuration menu
    Copy the full SHA
    c577281 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2020

  1. Configuration menu
    Copy the full SHA
    39d9d0e View commit details
    Browse the repository at this point in the history
  2. Update neural_network.ipynb (aymericdamien#361)

    Add the missing fully connected layer 2 in the RNN example
    Dragon-Yu committed May 16, 2020
    Configuration menu
    Copy the full SHA
    2cf9bfd View commit details
    Browse the repository at this point in the history
  3. output layer aactivation, add fc2 in call (aymericdamien#358)

    softmax applied during training phase to output layer and fc2 layer is unused
    
    Co-authored-by: Aymeric Damien <aymeric.damien@gmail.com>
    kilarinikhil and aymericdamien committed May 16, 2020
    Configuration menu
    Copy the full SHA
    e7353b7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    922833a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3a767b1 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2020

  1. Configuration menu
    Copy the full SHA
    6d96494 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2020

  1. Modify linear regression loss function (aymericdamien#373)

    * Modify tf2 linear regression loss function
    
    * neural_network.ipynp syntax error has been corrected
    HosseinSheikhi committed May 27, 2020
    Configuration menu
    Copy the full SHA
    a8ee3d2 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2020

  1. fix links in README of TensorFlow_v1 (aymericdamien#374)

    * Update README.md
    
    * Update README.md
    
    * Update README.md
    ZQX323 committed Jun 2, 2020
    Configuration menu
    Copy the full SHA
    4ac5751 View commit details
    Browse the repository at this point in the history
  2. Fix links

    aymericdamien committed Jun 2, 2020
    Configuration menu
    Copy the full SHA
    754c331 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2020

  1. Update README.md

    aymericdamien committed Jun 4, 2020
    Configuration menu
    Copy the full SHA
    0d03275 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2020

  1. Configuration menu
    Copy the full SHA
    86fc318 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2020

  1. Add tensorboard example (aymericdamien#381)

    * add tensorboard example
    
    * fix desc
    
    * add tensorboard run cmd
    aymericdamien committed Jul 26, 2020
    Configuration menu
    Copy the full SHA
    ab1b58b View commit details
    Browse the repository at this point in the history
  2. fix ml intro

    aymericdamien committed Jul 26, 2020
    Configuration menu
    Copy the full SHA
    e3414d6 View commit details
    Browse the repository at this point in the history
  3. fix ml intro

    aymericdamien committed Jul 26, 2020
    Configuration menu
    Copy the full SHA
    a1516d2 View commit details
    Browse the repository at this point in the history
  4. Fix ML intro notebook (aymericdamien#382)

    * fix ml intro
    
    * fix ml intro
    aymericdamien committed Jul 26, 2020
    Configuration menu
    Copy the full SHA
    6b11799 View commit details
    Browse the repository at this point in the history
  5. Update bidirectional_rnn.ipynb (aymericdamien#380)

    Replace broken link for Sepp Hochreiter & Jurgen Schmidhuber's LSTM document.
    LCB0B committed Jul 26, 2020
    Configuration menu
    Copy the full SHA
    fedf9e8 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2020

  1. MultiGPU Training Example (aymericdamien#387)

    * fix ml intro
    
    * fix ml intro
    
    * add multi gpu example
    
    * add multi gpu example
    aymericdamien committed Sep 19, 2020
    Configuration menu
    Copy the full SHA
    26c4c70 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c4185fe View commit details
    Browse the repository at this point in the history
  3. fix multigpu typo

    aymericdamien committed Sep 19, 2020
    Configuration menu
    Copy the full SHA
    35de963 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2020

  1. merge 11/16

    yuri7718 committed Nov 17, 2020
    Configuration menu
    Copy the full SHA
    9d7e914 View commit details
    Browse the repository at this point in the history