
tensorflow
文章平均质量分 89
seamanj
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
manually download dataset and import in tensorflow
somtimes, you may have problem with tensorflow build-in downloading function like using tfds.load(name="the300w_lp", split="train", with_info=True) This could be different reason. One way to workaround is to download the dataset manually as mentioned in原创 2021-10-23 05:34:16 · 469 阅读 · 0 评论 -
how to install tensorflow-gpu==1.12.0
https://stackoverflow.com/questions/38896424/tensorflow-not-found-using-pip first, you need to downgrade python3.7 or higher to python3.6 conda install python=3.6.8 then you do pip3 install tensorflo...原创 2019-10-18 17:41:13 · 4769 阅读 · 1 评论 -
lenet5 in tensorflow and visualization in tensorboard
# Copyright 2015 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # Y...原创 2019-10-16 23:07:11 · 201 阅读 · 0 评论 -
Visualizing and Understanding Convolutional Networks
代码请见:https://github.com/amir-saniyan/ZFNet # Input: 224x224x3. with tf.name_scope('input'): self.X = tf.placeholder(dtype=tf.float32, shape=[N...原创 2019-05-29 01:30:32 · 285 阅读 · 0 评论