首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏H2Cloud

    Embeding Python & Extending Python with FFPython

    Boost.python recommends to use dynamic library to extending python. Finally, I found some elegant ways to wrap embedding Python and extending Python by C++ template skills <string, list<vector<int> > > ret_t; ret_t val = ffpython.call<ret_t>("fftest", "test_return_stl"); Extending

    95990发布于 2018-03-09
  • 来自专栏java大数据

    java中如何使用接口继承(Extending Interfaces)

    5.接口继承(Extending Interfaces)和通话talk的功能。而Moto888更为高级,除了照相和通话功能以外,还有mp3的功能。接口继承到底有什么意义呢?

    75130发布于 2021-03-30
  • 来自专栏IT杂谈学习

    OrangePi_Kunpeng_Pro开发板测验——性能巨人

    .30 Extending existing file test_file.31 Extending existing file test_file.32 Extending existing file file test_file.36 Extending existing file test_file.37 Extending existing file test_file.38 Extending .44 Extending existing file test_file.45 Extending existing file test_file.46 Extending existing file .58 Extending existing file test_file.59 Extending existing file test_file.60 Extending existing file .72 Extending existing file test_file.73 Extending existing file test_file.74 Extending existing file

    52110编辑于 2024-05-30
  • 来自专栏IT派

    TensorFlow实现流行机器学习算法的教程汇总(3/3)

    spiral.ipynb 层,与 TensorFlow 一起使用 TFLearn 层: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow layers.py 训练器,使用 TFLearn 训练器类训练任何 TensorFlow 图: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Bulit-in Ops,连同 TensorFlow 使用 TFLearn built-in 操作: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Summaries,连同 TensorFlow 使用 TFLearn summarizers: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Variables,连同 TensorFlow 使用 TFLearn Variables: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow

    46700发布于 2018-07-30
  • 来自专栏若是烟花

    使用C语言编写Python扩展包

    官网文档其实已经很详尽~ 使用场景猜想:某些需要高效处理的算法、某些耗时的操作优化、或者某些核心算法加密等~ 环境:macOS + pyhton3.7 文档地址: https://docs.python.org/3/extending 5 files 扩展模块 strings.c // // Created by lpe234 on 2018/12/27. // // doc: https://docs.python.org/3/extending /extending.html #include <Python.h> /** * reverse * 实际执行函数 * * @param str * @param size */ void

    2.7K10发布于 2020-07-27
  • 来自专栏SnailTyan

    Python调用C

    languages/python/pythoncallcplusplus https://www.jianshu.com/p/cd28e8b0cce1 https://docs.python.org/2.7/extending /extending.html https://docs.python.org/2.7/extending/building.html https://tutorialedge.net/python/python-c-extensions-tutorial

    2.2K10发布于 2020-03-20
  • 来自专栏Unity游戏开发

    Unity-黑暗之魂复刻-计时类

    myTimer.duration = duration; myTimer.Go(); } } 以下将3个动作融合到了一个按键上: 跑的设置: A按下并且不在Delaying,或者在Extending buttonA.IsExtending; 翻滚设置: A松开并且A在Delaying范围 roll = buttonA.OnReleased && buttonA.IsDelaying; 跳跃设置: 在Extending

    55710发布于 2019-06-05
  • 来自专栏目标检测和深度学习

    TensorFlow实现深度学习算法的教程汇集:代码+笔记

    可延展的 TensorFlow 层,与 TensorFlow 一起使用 TFLearn 层:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow layers.py 训练器,使用 TFLearn 训练器类训练任何 TensorFlow 图:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Bulit-in Ops,连同 TensorFlow 使用 TFLearn built-in 操作:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Summaries,连同 TensorFlow 使用 TFLearn summarizers:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Variables,连同 TensorFlow 使用 TFLearn Variables:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow

    1.2K30发布于 2018-07-20
  • 来自专栏目标检测和深度学习

    深度学习TensorFlow的55个经典案例

    spiral.ipynb 层,与 TensorFlow 一起使用 TFLearn 层: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow layers.py 训练器,使用 TFLearn 训练器类训练任何 TensorFlow 图: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Bulit-in Ops,连同 TensorFlow 使用 TFLearn built-in 操作: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Summaries,连同 TensorFlow 使用 TFLearn summarizers: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Variables,连同 TensorFlow 使用 TFLearn Variables: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow

    1.1K20发布于 2018-07-20
  • 来自专栏玩转编程

    Python 系列文章 —— enum 详解

    # Trueimport unittest from enum import Enum class EnumExtend(unittest.TestCase): def test_extending Color): cyan = 4 magenta = 5 yellow = 6 def test_extending2 Color): cyan = 4 magenta = 5 yellow = 6 def test_extending3

    41420编辑于 2022-01-13
  • 来自专栏目标检测和深度学习

    深度学习TensorFlow的55个经典案例

    spiral.ipynb 层,与 TensorFlow 一起使用 TFLearn 层: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow layers.py 训练器,使用 TFLearn 训练器类训练任何 TensorFlow 图: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Bulit-in Ops,连同 TensorFlow 使用 TFLearn built-in 操作: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Summaries,连同 TensorFlow 使用 TFLearn summarizers: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Variables,连同 TensorFlow 使用 TFLearn Variables: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow

    1.5K70发布于 2018-04-18
  • 来自专栏人工智能

    TensorFlow实现深度学习算法的教程汇集:代码+笔记

    可延展的 TensorFlow 层,与 TensorFlow 一起使用 TFLearn 层:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow layers.py 训练器,使用 TFLearn 训练器类训练任何 TensorFlow 图:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Bulit-in Ops,连同 TensorFlow 使用 TFLearn built-in 操作:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Summaries,连同 TensorFlow 使用 TFLearn summarizers:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Variables,连同 TensorFlow 使用 TFLearn Variables:https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow

    1.1K70发布于 2018-01-02
  • 来自专栏机器学习算法与Python学习

    干货 | TensorFlow的55个经典案例

    spiral.ipynb 层,与 TensorFlow 一起使用 TFLearn 层: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow layers.py 训练器,使用 TFLearn 训练器类训练任何 TensorFlow 图: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Bulit-in Ops,连同 TensorFlow 使用 TFLearn built-in 操作: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Summaries,连同 TensorFlow 使用 TFLearn summarizers: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow Variables,连同 TensorFlow 使用 TFLearn Variables: https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow

    94090发布于 2018-04-08
  • 来自专栏landv

    [codeigniter4]Upgrading from 3.x to 4.x

    writable folder There is no longer a nested application/core folder, as we have a different mechanism for extending your component Helpers Helpers are pretty much the same as before, though some have been simplified Extending

    83110发布于 2020-03-04
  • 来自专栏全栈程序员必看

    directx修复工具是干嘛的_win10自带dll修复

    From V3.5 on, DirectX Repair supports a new feature called Extending. The Extending page can be found from the sub-menu “Option” under the menu “Tool”. The extending process requires Internet connection. In some special cases, extending process might be blocked by firewalls. The feature of extending is optimized.

    4.1K20编辑于 2022-08-03
  • 来自专栏力哥聊运维与云计算

    LVM-HOWTO/学习笔记(一)

    dev/myvg/homevol" successfully removed 3)   扩展 扩展到12G # lvextend -L12G /dev/myvg/homevol lvextend -- extending volume "/dev/myvg/homevol" successfully extended 加1G # lvextend -L+1G /dev/myvg/homevol lvextend -- extending

    46920发布于 2019-06-28
  • 来自专栏flutter开发精选

    每日tips:Dart & Flutter Easy Wins 29-35

    EXTENDING 时, 所有ABSTRACT 方法必须重写 overridden。其他方法可以overridden。

    60120编辑于 2022-09-20
  • 来自专栏紫禁玄科

    python学习第一天

    docs.python.org/zh-cn/3/reference/index.html#reference-index 扩展和嵌入Python解释器:https://docs.python.org/zh-cn/3/extending /index.html#extending-index Python/C.API参考手册:https://docs.python.org/zh-cn/3/c-api/index.html#c-api-index

    37410编辑于 2022-03-24
  • 来自专栏C++核心准则原文翻译

    C++核心准则讨论:按值返回容器(依靠移动或复制省略高效率)

    To bring an object into a surrounding scope, thereby extending its lifetime. 为了简化代码并消除对显式内存管理的需求。

    52930发布于 2020-12-31
  • 来自专栏超级架构师

    Apache Hive走向内存计算,性能提升26倍

    integration with BI tools.Performance: Interactive query, 2x faster ETL.Security: Row / Column security extending Security: Row / Column security extending to views, Column level security for Spark.

    1.6K50发布于 2018-04-09
领券