- logistic_regression.py - Using torch.nn module, analysing sklearn DIGITS dataset
- logistic_regression_low.py - NOT using torch.nn module, analysing sklearn DIGITS dataset
- mnist_mlp.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# fashion_mnist_theano.py | |
# date. 10/2/2017 | |
# | |
# REM: I read the article for stopping development of "THEANO". | |
# The deep learning framework stimulated me and made me write codes. | |
# I'd like to say thank you to Theano supporting team. | |
# | |
import os |
- mnist_cnn.py - baseline code (till TF 1.2)
- mnist_estimator.py - using TF 1.3 tf.estimator API
The original codes comes from "Coursera Machine Learning" by prof. Andrew Ng, the program assignment of week 9.
I implemented this by Python,
1.Numpy + Scipy.Optimize
2.TensorFlow
- ex8_cofi.py: Numpy + Scipy.Optimize code
- check_costfun.py: support functions for ex8_cofi.py
- cofi_tf.py: TensorFlow code
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# tf_logistic_reg.py | |
# date. 11/18/2015 | |
# date. 1/29/2017 - checked under tensorflow 0.12.1 | |
# | |
# The baseline is the code for 'Theano'. | |
from __future__ import print_function | |
import numpy as np |
NewerOlder