Robin Liu

Results 2 issues of Robin Liu

Chapter_6_Storing_Data/sql_store1/store.go // get all posts func Posts(limit int) (posts []Post, err error) { rows, err := Db.Query("select id, content, author from posts limit $1", limit) if err != nil {...

TensorFlow version: 1.6.0 --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) in () 76 return batch_features, batch_labels 77 ---> 78 next_batch = my_input_fn(FILE_TRAIN, True) # Will return 32 random elements 79...