资源简介
1、编译tensorflow用到参考,不同版本的tensorflow需要对应一定范围的bazel版本,可参考官方说明:
https://tensorflow.google.cn/install/source
2、github用的aws,在国内下载太慢,特下上传以方便国内下载。
代码片段和文件信息
# pylint: disable=g-bad-file-header
# pylint: disable=g-direct-third-party-import
#
# Copyright 2017 The Bazel 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.
# You may obtain a copy of the License at
#
# http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing software
# distributed under the License is distributed on an “AS IS“ BASIS
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
“““Creates the Bazel source distribution archive.“““
import contextlib
import os.path
import sys
import zipfile
from src.create_embedded_tools_lib import copy_tar_to_zip
from src.create_embedded_tools_lib import copy_zip_to_zip
def main():
output_zip = os.path.join(os.getcwd() sys.argv[1])
input_files = sorted(sys.argv[2:])
# Copy all the input_files into output_zip.
# Adding contextlib.closing to be python 2.6 (for centos 6.7) compatible
with contextlib.closing(
zipfile.ZipFile(output_zip “w“ zipfile.ZIP_DEFLATED)) as output_zip:
def _normalize(path):
return path[2:] if path.startswith(“./“) else path
for input_file in input_files:
if input_file.endswith(“.tar“):
copy_tar_to_zip(output_zip input_file _normalize)
elif input_file.endswith(“.zip“):
copy_zip_to_zip(output_zip input_file _normalize)
else:
raise Exception(“unknown archive type \“%s\““ % input_file)
if __name__ == “__main__“:
main()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1303 1980-01-01 00:00 AUTHORS
文件 3091 1980-01-01 00:00 BUILD
文件 174655 1980-01-01 00:00 CHANGELOG.md
文件 3205 1980-01-01 00:00 CODEOWNERS
文件 822 1980-01-01 00:00 CONTRIBUTING.md
文件 3941 1980-01-01 00:00 CONTRIBUTORS
文件 1704 1980-01-01 00:00 ISSUE_TEMPLATE.md
文件 11358 1980-01-01 00:00 LICENSE
文件 2172 1980-01-01 00:00 README.md
文件 10993 1980-01-01 00:00 WORKSPACE
文件 1682 1980-01-01 00:00 combine_distfiles.py
文件 1408 1980-01-01 00:00 combine_distfiles_to_tar.sh
文件 3925 1980-01-01 00:00 compile.sh
文件 1474 1980-01-01 00:00 distdir.bzl
文件 448 1980-01-01 00:00 examples\BUILD
文件 2677 1980-01-01 00:00 examples\android\README.md
文件 695 1980-01-01 00:00 examples\android\java\bazel\AndroidManifest.xm
文件 645 1980-01-01 00:00 examples\android\java\bazel\BUILD
文件 139 1980-01-01 00:00 examples\android\java\bazel\Jni.java
文件 168 1980-01-01 00:00 examples\android\java\bazel\Lib.java
文件 521 1980-01-01 00:00 examples\android\java\bazel\MainActivity.java
文件 229 1980-01-01 00:00 examples\android\java\bazel\jni.cc
文件 407 1980-01-01 00:00 examples\android\java\bazel\jni_dep.cc
文件 87 1980-01-01 00:00 examples\android\java\bazel\jni_dep.h
文件 117 1980-01-01 00:00 examples\android\java\bazel\res\values\colors.xm
文件 185 1980-01-01 00:00 examples\android\java\bazel\res\values\st
文件 508 1980-01-01 00:00 examples\cpp\BUILD
文件 88 1980-01-01 00:00 examples\cpp\README.md
文件 451 1980-01-01 00:00 examples\cpp\hello-fail.cc
文件 328 1980-01-01 00:00 examples\cpp\hello-lib.cc
文件 365 1980-01-01 00:00 examples\cpp\hello-lib.h
............此处省略10345个文件信息
相关资源
- TensorFlow1.4 官方手册
- MSCNN_dehaze.rar
- 基于双向LSTM+tensorflow中文分词
- TensorFlow Machine Learning Cookbook+无码高清
- Hands-On Machine Learning with Scikit-Learn an
- TensorFlow 官方文档中文版高清无码PD
- 基于tensorflow的深度学习图像分类案例
- 基于Tensorflow多层神经网络的MNIST手写
- TensorFlow Tutorial
- TensorFlow_2.0快速应用指南英文.tar
- tensorflow图像风格迁移代码
- TensorFlow Machine Learning Cookbook
- Learning TensorFlow: A Guide to Building Deep
- tensorflow271134
- TensorFlow for Machine Intelligence 书籍源码
- 《Hands-On Machine Learning with Scikit-Learn
- Building Machine Learning Projects with Tensor
- TensorFlow Powerful Predictive Analytics with
- 北大tensorflow学习笔记
- LSTMandRNN.zip
- 使用TensorFlow搭建智能开发系统,自动
- 张量分析教科书Tensor Algebra And Tensor
- Vectors Tensors and the Basic Equations of Flu
- Packt.TensorFlow.Machine.Learning.Cookbook.201
- tensorflow深度学习CNN智能识别车牌
- Tensorflow GNN实战.zip
- tensorflow从入门到精通
- 深度卷积生成对抗网络TensorFlow代码实
- TensorFlow_中文手册
- siamese mnist 孪生网络
评论
共有 条评论