forked from hunkim/DeepLearningZeroToAll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
105 additions
and
40 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Lab 4 Multi-variable linear regression | ||
# https://www.tensorflow.org/programmers_guide/reading_data | ||
|
||
import tensorflow as tf | ||
import numpy as np | ||
tf.set_random_seed(777) # for reproducibility | ||
|
||
filename_queue = tf.train.string_input_producer( | ||
['data-01-test-score.csv'], shuffle=False, name='filename_queue') | ||
|
||
reader = tf.TextLineReader() | ||
key, value = reader.read(filename_queue) | ||
|
||
# Default values, in case of empty columns. Also specifies the type of the | ||
# decoded result. | ||
record_defaults = [[0.], [0.], [0.], [0.]] | ||
xy = tf.decode_csv(value, record_defaults=record_defaults) | ||
|
||
# collect batches of cvs in | ||
train_x_batch, train_y_batch = \ | ||
tf.train.batch([xy[0:-1], xy[-1:]], batch_size=10) | ||
|
||
# placeholders for a tensor that will be always fed. | ||
X = tf.placeholder(tf.float32, shape=[None, 3]) | ||
Y = tf.placeholder(tf.float32, shape=[None, 1]) | ||
|
||
W = tf.Variable(tf.random_normal([3, 1]), name='weight') | ||
b = tf.Variable(tf.random_normal([1]), name='bias') | ||
|
||
# Hypothesis | ||
hypothesis = tf.matmul(X, W) + b | ||
|
||
# Simplified cost/loss function | ||
cost = tf.reduce_mean(tf.square(hypothesis - Y)) | ||
|
||
# Minimize | ||
optimizer = tf.train.GradientDescentOptimizer(learning_rate=1e-5) | ||
train = optimizer.minimize(cost) | ||
|
||
# Launch the graph in a session. | ||
sess = tf.Session() | ||
# Initializes global variables in the graph. | ||
sess.run(tf.global_variables_initializer()) | ||
|
||
# Start populating the filename queue. | ||
coord = tf.train.Coordinator() | ||
threads = tf.train.start_queue_runners(sess=sess, coord=coord) | ||
|
||
for step in range(2001): | ||
x_batch, y_batch = sess.run([train_x_batch, train_y_batch]) | ||
cost_val, hy_val, _ = sess.run( | ||
[cost, hypothesis, train], feed_dict={X: x_batch, Y: y_batch}) | ||
if step % 10 == 0: | ||
print(step, "Cost: ", cost_val, "\nPrediction:\n", hy_val) | ||
|
||
coord.request_stop() | ||
coord.join(threads) | ||
|
||
# Ask my score | ||
print("Your score will be ", | ||
sess.run(hypothesis, feed_dict={X: [[100, 70, 101]]})) | ||
|
||
print("Other scores will be ", | ||
sess.run(hypothesis, feed_dict={X: [[60, 70, 110], [90, 100, 80]]})) | ||
|
||
''' | ||
Your score will be [[ 181.73277283]] | ||
Other scores will be [[ 145.86265564] | ||
[ 187.23129272]] | ||
''' |
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
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
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
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
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