积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(336)Python(336)Jupyter(62)Scrapy(62)Django(53)Celery(51)ORM(16)Conda(16)PyMuPDF(6)Tornado(2)

语言

全部英语(315)中文(简体)(16)中文(繁体)(1)英语(1)

格式

全部PDF文档 PDF(195)其他文档 其他(141)
 
本次搜索耗时 0.048 秒,为您找到相关结果约 336 个.
  • 全部
  • 后端开发
  • Python
  • Jupyter
  • Scrapy
  • Django
  • Celery
  • ORM
  • Conda
  • PyMuPDF
  • Tornado
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 PyMuPDF 1.24.2 Documentation

    list containing required parameters. """ # recreate the arguments idx = vector[0] # this is the segment number we have to process cpu = vector[1] # number of CPUs filename = vector[2] # document filename open(filename) # open the document num_pages = doc.page_count # get number of pages # pages per segment: make sure that cpu * seg_size >= num_pages! seg_size = int(num_pages / cpu + 1) seg_from = idx * seg_size, num_pages) # last page number for i in range(seg_from, seg_to): # work through our page segment page = doc[i] # page.get_text("rawdict") # use any page-related type of work here, eg pix = page
    0 码力 | 565 页 | 6.84 MB | 1 年前
    3
  • pdf文档 2 使用Python训练和部署低精度模型 张校捷

    the TensorRT graph into a new graph and run: output_node = tf.import_graph_def( trt_graph, return_elements=['logits', 'classes‘]) sess.run(output_node) TensorFlow模型使用TensorRT 3. MetaGraph和Checkpoint使用TensorRT tf.graph_util.convert_variables_to_constants( sess, tf.get_default_graph().as_graph_def(), output_node_names=['logits', 'classes']) TensorFlow导出低精度模型 from tensorflow.python.compiler.tensorrt import trt_convert get_next() def input_map_fn(): return {'input:0': features} for n in trt_graph.node: if n.op == "TRTEngineOp": print(“Node: %s, %s” % (n.op, n.name.replace("/", "_"))) with tf.gfile.GFile("%s.calib_table"
    0 码力 | 24 页 | 981.45 KB | 1 年前
    3
  • pdf文档 PyArmor Documentation v5.3.0

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 12 When Things Go Wrong 49 12.1 Segment fault . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . tasks: • Keep the des key used to encrypt python scripts from tracing by any c debugger • The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytrans- form.so can . // function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 85 页 | 299.37 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v5.6.5

    banchmark register download Examples Obfuscating and Packing PyQt Application When Things Go Wrong Segment fault Could not find _pytransform The license.lic generated doesn’t work NameError: name ‘__pyarmor__’ tasks: Keep the des key used to encrypt python scripts from tracing by any c debugger The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytransform.so can function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 103 页 | 86.97 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v5.5.7

    banchmark register download Examples Obfuscating and Packing PyQt Application When Things Go Wrong Segment fault Could not find _pytransform The license.lic generated doesn’t work NameError: name ‘__pyarmor__’ tasks: Keep the des key used to encrypt python scripts from tracing by any c debugger The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytransform.so can function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 104 页 | 85.70 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v5.6.0

    banchmark register download Examples Obfuscating and Packing PyQt Application When Things Go Wrong Segment fault Could not find _pytransform The license.lic generated doesn’t work NameError: name ‘__pyarmor__’ tasks: Keep the des key used to encrypt python scripts from tracing by any c debugger The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytransform.so can function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 103 页 | 85.82 KB | 1 年前
    3
  • pdf文档 PyArmor Documentation v5.6.0

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63 15 When Things Go Wrong 65 15.1 Segment fault . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . tasks: • Keep the des key used to encrypt python scripts from tracing by any c debugger • The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytrans- form.so can . // function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 107 页 | 352.50 KB | 1 年前
    3
  • pdf文档 PyArmor Documentation v5.5.4

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63 15 When Things Go Wrong 65 15.1 Segment fault . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . tasks: • Keep the des key used to encrypt python scripts from tracing by any c debugger • The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytrans- form.so can . // function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 107 页 | 348.47 KB | 1 年前
    3
  • pdf文档 PyArmor Documentation v5.9.5

    . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 ii 14 When Things Go Wrong 79 14.1 Segment fault . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . tasks: • Keep the des key used to encrypt python scripts from tracing by any c debugger • The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytrans- form.so can . // function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 131 页 | 428.65 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v6.2.7

    Obfuscated Scripts The Security of PyArmor Cross Protection for _pytransform When Things Go Wrong Segment fault Bootstrap Problem Obfuscating Scripts Problem Running Obfuscated Scripts Problem Packing Obfuscated tasks: Keep the des key used to encrypt python scripts from tracing by any c debugger The code segment can’t be changed any more. For example, change instruction JZ to JNZ, so that _pytransform.so can function 2 0x80001, 0xC0901, ... } Build _pytransform.so, calculate the codesum of code segment of _pytransform.so Replace the related instructions with real codesum got before, and obfuscate
    0 码力 | 159 页 | 123.91 KB | 1 年前
    3
共 336 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 34
前往
页
相关搜索词
PyMuPDF1.24Documentation使用Python训练部署精度模型张校PyArmorv53.06.55.76.05.49.5v62.7
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩