在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例常规C/C++编程 → TensorFlow机器学习系统

TensorFlow机器学习系统

常规C/C++编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:83.21M
  • 下载次数:14
  • 浏览次数:82
  • 发布时间:2022-12-17
  • 实例类别:常规C/C++编程
  • 发 布 人:professorlearn
  • 文件格式:.zip
  • 所需积分:5
 相关标签: tensorflow flow RF en

实例介绍


【实例简介】TensorFlow机器学习系统

TensorFlow机器学习系统是用于机器学习的端到端开源平台。它拥有一个全面而灵活的生态系统,其中包含各种工具、库和社区资源,可助力研究人员推动先进机器学习技术的发展,并使开发者能够轻松地构建和部署由机器学习提供支持的应用。TensorFlow机器学习系统最初是由Google机器智能研究组织内Google Brain团队的研究人员和工程师开发的,用于进行机器学习和深度神经网络研究。该系统具有足够

【实例截图】

from clipboard

【核心代码】


.
├── tensorflow-2.11.0
│   ├── AUTHORS
│   ├── BUILD
│   ├── CITATION.cff
│   ├── CODEOWNERS
│   ├── CODE_OF_CONDUCT.md
│   ├── CONTRIBUTING.md
│   ├── ISSUES.md
│   ├── ISSUE_TEMPLATE.md
│   ├── LICENSE
│   ├── README.md
│   ├── RELEASE.md
│   ├── SECURITY.md
│   ├── arm_compiler.BUILD
│   ├── configure
│   ├── configure.cmd
│   ├── configure.py
│   ├── models.BUILD
│   └── tensorflow
│       ├── BUILD
│       ├── api_template.__init__.py
│       ├── api_template_v1.__init__.py
│       ├── c
│       │   ├── BUILD
│       │   ├── README.md
│       │   ├── c_api.cc
│       │   ├── c_api.h
│       │   ├── c_api_experimental.cc
│       │   ├── c_api_experimental.h
│       │   ├── c_api_experimental_test.cc
│       │   ├── c_api_function.cc
│       │   ├── c_api_function_test.cc
│       │   ├── c_api_internal.h
│       │   ├── c_api_macros.h
│       │   ├── c_api_macros_internal.h
│       │   ├── c_api_test.cc
│       │   ├── c_op_requires.h
│       │   ├── c_test.c
│       │   ├── c_test_util.cc
│       │   ├── c_test_util.h
│       │   ├── checkpoint_reader.cc
│       │   ├── checkpoint_reader.h
│       │   ├── conversion_macros.h
│       │   ├── eager
│       │   ├── env.cc
│       │   ├── env.h
│       │   ├── env_test.cc
│       │   ├── experimental
│       │   ├── exported_symbols.lds
│       │   ├── generate-pc.sh
│       │   ├── kernels
│       │   ├── kernels.cc
│       │   ├── kernels.h
│       │   ├── kernels_experimental.cc
│       │   ├── kernels_experimental.h
│       │   ├── kernels_test.cc
│       │   ├── logging.cc
│       │   ├── logging.h
│       │   ├── ops.cc
│       │   ├── ops.h
│       │   ├── ops_test.cc
│       │   ├── python_api.cc
│       │   ├── python_api.h
│       │   ├── tensor_interface.h
│       │   ├── test_op.cc
│       │   ├── test_op1.cc
│       │   ├── testdata
│       │   ├── tf_attrtype.h
│       │   ├── tf_buffer.cc
│       │   ├── tf_buffer.h
│       │   ├── tf_buffer_internal.h
│       │   ├── tf_datatype.cc
│       │   ├── tf_datatype.h
│       │   ├── tf_file_statistics.h
│       │   ├── tf_shape.cc
│       │   ├── tf_shape.h
│       │   ├── tf_shape_internal.h
│       │   ├── tf_status.cc
│       │   ├── tf_status.h
│       │   ├── tf_status_helper.cc
│       │   ├── tf_status_helper.h
│       │   ├── tf_status_helper_test.cc
│       │   ├── tf_status_internal.h
│       │   ├── tf_status_test.cc
│       │   ├── tf_tensor.cc
│       │   ├── tf_tensor.h
│       │   ├── tf_tensor_internal.h
│       │   ├── tf_tstring.cc
│       │   ├── tf_tstring.h
│       │   ├── version_script.lds
│       │   └── while_loop_test.cc
│       ├── cc
│       │   ├── BUILD
│       │   ├── client
│       │   ├── experimental
│       │   ├── framework
│       │   ├── gradients
│       │   ├── ops
│       │   ├── saved_model
│       │   ├── tools
│       │   └── training
│       ├── compat_template.__init__.py
│       ├── compat_template_v1.__init__.py
│       ├── compiler
│       │   ├── aot
│       │   ├── jit
│       │   ├── mlir
│       │   ├── plugin
│       │   ├── tests
│       │   ├── tf2tensorrt
│       │   ├── tf2xla
│       │   ├── xla
│       │   └── xrt
│       ├── core
│       │   ├── BUILD
│       │   ├── activity_watcher
│       │   ├── api_def
│       │   ├── common_runtime
│       │   ├── config
│       │   ├── data
│       │   ├── debug
│       │   ├── distributed_runtime
│       │   ├── example
│       │   ├── framework
│       │   ├── function
│       │   ├── graph
│       │   ├── grappler
│       │   ├── ir
│       │   ├── kernels
│       │   ├── lib
│       │   ├── nccl
│       │   ├── ops
│       │   ├── platform
│       │   ├── profiler
│       │   ├── protobuf
│       │   ├── public
│       │   ├── runtime_fallback
│       │   ├── summary
│       │   ├── tfrt
│       │   ├── tpu
│       │   ├── transforms
│       │   ├── user_ops
│       │   └── util
│       ├── distribute
│       │   └── experimental
│       ├── docs_src
│       │   └── README.md
│       ├── dtensor
│       │   ├── BUILD
│       │   ├── cc
│       │   ├── mlir
│       │   ├── proto
│       │   ├── python
│       │   └── tests
│       ├── examples
│       │   ├── README.md
│       │   ├── __init__.py
│       │   ├── adding_an_op
│       │   ├── android
│       │   ├── custom_ops_doc
│       │   ├── image_retraining
│       │   ├── label_image
│       │   ├── multibox_detector
│       │   ├── speech_commands
│       │   ├── udacity
│       │   └── wav_to_spectrogram
│       ├── go
│       │   ├── BUILD
│       │   ├── README.md
│       │   ├── android.go
│       │   ├── attrs.go
│       │   ├── attrs_test.go
│       │   ├── context.go
│       │   ├── context_test.go
│       │   ├── doc.go
│       │   ├── example_inception_inference_test.go
│       │   ├── genop
│       │   ├── graph.go
│       │   ├── graph_test.go
│       │   ├── lib.go
│       │   ├── op
│       │   ├── operation.go
│       │   ├── operation_test.go
│       │   ├── saved_model.go
│       │   ├── saved_model_test.go
│       │   ├── session.go
│       │   ├── session_test.go
│       │   ├── shape.go
│       │   ├── shape_test.go
│       │   ├── signature.go
│       │   ├── signature_test.go
│       │   ├── status.go
│       │   ├── tensor.go
│       │   ├── tensor_handle.go
│       │   ├── tensor_handle_test.go
│       │   ├── tensor_test.go
│       │   ├── test.sh
│       │   ├── util_test.go
│       │   └── version.go
│       ├── java
│       │   ├── BUILD
│       │   ├── README.md
│       │   ├── build_defs.bzl
│       │   ├── config
│       │   ├── generate_pom.cc
│       │   └── src
│       ├── js
│       │   ├── BUILD
│       │   └── ops
│       └── lite
│           ├── BUILD
│           ├── CMakeLists.txt
│           ├── allocation.cc
│           ├── allocation.h
│           ├── allocation_test.cc
│           ├── arena_planner.cc
│           ├── arena_planner.h
│           ├── arena_planner_test.cc
│           ├── build_def.bzl
│           ├── builtin_op_data.h
│           ├── builtin_ops.h
│           ├── c
│           ├── context.h
│           ├── context_util.h
│           ├── core
│           ├── create_op_resolver.h
│           ├── create_op_resolver_with_builtin_ops.cc
│           ├── create_op_resolver_with_selected_ops.cc
│           ├── delegates
│           ├── error_reporter.h
│           ├── examples
│           ├── experimental
│           ├── external_cpu_backend_context.cc
│           ├── external_cpu_backend_context.h
│           ├── g3doc
│           ├── graph_info.cc
│           ├── graph_info.h
│           ├── graph_info_test.cc
│           ├── internal
│           ├── interpreter.cc
│           ├── interpreter.h
│           ├── interpreter_builder.cc
│           ├── interpreter_builder.h
│           ├── interpreter_experimental.cc
│           ├── interpreter_options.h
│           ├── interpreter_test.cc
│           ├── interpreter_test_util.h
│           ├── ios
│           ├── java
│           ├── kernels
│           ├── lib_package
│           ├── logger.cc
│           ├── logger.h
│           ├── memory_planner.h
│           ├── micro
│           ├── minimal_logging.cc
│           ├── minimal_logging.h
│           ├── minimal_logging_android.cc
│           ├── minimal_logging_default.cc
│           ├── minimal_logging_ios.cc
│           ├── minimal_logging_test.cc
│           ├── mmap_allocation.cc
│           ├── mmap_allocation_disabled.cc
│           ├── model.h
│           ├── model_builder.cc
│           ├── model_builder.h
│           ├── model_flex_test.cc
│           ├── model_test.cc
│           ├── model_xnnpack_test.cc
│           ├── mutable_op_resolver.cc
│           ├── mutable_op_resolver.h
│           ├── mutable_op_resolver_test.cc
│           ├── nnapi
│           ├── objc
│           ├── op_resolver.h
│           ├── optional_debug_tools.cc
│           ├── optional_debug_tools.h
│           ├── optional_debug_tools_test.cc
│           ├── portable_type_to_tflitetype.h
│           ├── profiling
│           └── python
└── 好例子网_TensorFlow-v2.11.0.zip

99 directories, 183 files


标签: tensorflow flow RF en

实例下载地址

TensorFlow机器学习系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警