一个例子:
a = tf.SparseTensor(indices=[[0, 0], [1, 2]], values=[1, 2], shape=[3, 4])
b = tf.sparse_tensor_to_dense(a, default_value = 0, name = 'xxx')
2017年1月13日星期五
2017年1月9日星期一
gitlab修改时区
修改 /var/opt/gitlab/gitlab-rails/etc/gitlab.yml 配置文件中的 time_zone : 'Beijing'
gitlab-ctl restart重启gitlab 即可
gitlab-ctl restart重启gitlab 即可
2017年1月5日星期四
clion使CMakeLists.txt自动添加删除文件
file(GLOB_RECURSE SOURCE_FILES
"*.h"
"*.c"
"*.cc"
"*.cpp"
)
add_executable(project_name ${SOURCE_FILES})
每次更新只需要reload即可
"*.h"
"*.c"
"*.cc"
"*.cpp"
)
add_executable(project_name ${SOURCE_FILES})
每次更新只需要reload即可
clion中include没有识别.h文件路径
参考http://stackoverflow.com/questions/36189910/clion-indexer-does-not-resolve-some-includes-in-the-project-directory
使用include_directories(.)指定base directory。
使用include_directories(.)指定base directory。
订阅:
博文 (Atom)