tensorflow-101 icon indicating copy to clipboard operation
tensorflow-101 copied to clipboard

learn code with tensorflow

Results 10 tensorflow-101 issues
Sort by recently updated
recently updated
newest added

Hello! I've found a performance issue in /finetuning/convert_pys/covert_datasets_tfrecord.py: `with tf.Session('') as sess`[(here)](https://github.com/burness/tensorflow-101/blob/c775a54af86542940e6e69b7d90d8d7e8aa9aeb9/finetuning/convert_pys/covert_datasets_tfrecord.py#L158) is defined in the function `_convert_dataset`[(here)](https://github.com/burness/tensorflow-101/blob/c775a54af86542940e6e69b7d90d8d7e8aa9aeb9/finetuning/convert_pys/covert_datasets_tfrecord.py#L152) which is repeatedly called in the loop `for i in range(nFold)`[(here)](https://github.com/burness/tensorflow-101/blob/c775a54af86542940e6e69b7d90d8d7e8aa9aeb9/finetuning/convert_pys/covert_datasets_tfrecord.py#L216). `tf.Session`...

hi, 最近注意到你也开始做NLP方向的任务了,我在研究使用深度学习做QA系统。 我创建了一个问答数据集,面向垂直领域的FAQ, https://github.com/Samurais/insuranceqa-corpus-zh 在这方面,比较缺少好的中文语料,insuranceqa-corpus-zh是基于英文语料翻译的,效果还不错,欢迎使用!

请问为什么跑几十个step后会停止,而且有时是十几个step,有时是几十个step?

Hi, I noticed some TensorFlow API usage in your code might lead to crash on early version. Some API appeared only in tf v1.0 like `tf.global_variables_initializer`, `tf.local_variables_initializer`, `tf.summary.merge_all` and so...

你好,首先非常感谢你知乎上对text classfier 的总结,其次想请问一下在 ``` tensorflow-101/nlp/text_classifier/scripts/dataset_helpers/cut_doc.py ``` 代码中的下面一个文件我应该去哪里找啊? ``` WORD_DICT = "/Users/burness/git_repository/dl_opensource/nlp/oxford-cs-deepnlp-2017/practical-2/data/origin_data/t_tag_infos.txt" ```

Can you explain for me "what is continuous factor loss"? i read the paper about AC-Gan and can not find anything that related to "continuous factor loss".

Hi, I'm running the original code you give for infogan. I used `train.py` to train the network first, and then used `generate.py` to generate sample pictures. However, the result picture...

修改后的代码: for root, sub_folder, file_list in os.walk("../image/fonts/test/"): for file_path in file_list: image_file = root + file_path final_predict_val, final_predict_index = inference(image_file) 错误信息: Traceback (most recent call last): File "C:\Users\ucmed\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\client\session.py", line 1039,...

ValueError: Parent directory of ./checkpoint_dir\ac_gan doesn't exist, can't save.

my tf version is 0.12, and i failed to apply your code. could you tell me how to use this function in my tf version? thx.