积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部云计算&大数据(343)VirtualBox(113)Apache Kyuubi(44)OpenShift(39)机器学习(33)Pandas(32)Kubernetes(13)rancher(13)Istio(12)Apache Flink(10)

语言

全部英语(267)中文(简体)(70)英语(4)中文(繁体)(1)中文(简体)(1)

格式

全部PDF文档 PDF(318)其他文档 其他(24)PPT文档 PPT(1)
 
本次搜索耗时 0.121 秒,为您找到相关结果约 343 个.
  • 全部
  • 云计算&大数据
  • VirtualBox
  • Apache Kyuubi
  • OpenShift
  • 机器学习
  • Pandas
  • Kubernetes
  • rancher
  • Istio
  • Apache Flink
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 【PyTorch深度学习-龙龙老师】-测试版202112

    3,实现如下: In [43]: from torch import nn # 导入神经网络子库 # 创建一层 Wx+b,输出节点为 3, 输出节点数为 4 fc = nn.Linear(3, 4) fc.bias # 查看偏置向量 Out[43]: Parameter containing: tensor([-0.3838, -0.4073, -0.3051, -0 个节点,输出 3 个节点的网络层,并通过全连接层的 kernel 成员名查 看其权值矩阵?: In [45]: # 定义全连接层的输出节点为 3, 输入节点为 4 fc = nn.Linear(4, 3) fc.weight # 查看权值矩阵 W Out[45]: Parameter containing: tensor([[-0.1410, 0.1454, -0.3955 创建全连接层,指定输入节点数和输出节点数 fc = nn.Linear(28*28, 512) # 通过 fc 类实例完成一次全连接层的计算,返回输出张量 h1 = fc(x) print('h1:', h1.shape) Out[2]: h1: torch.Size([4, 512]) 预览版202112 6.2 全连接层 5 上述通过一行代码即可以创建一层全连接层实例 fc,并指定输入节点数为
    0 码力 | 439 页 | 29.91 MB | 1 年前
    3
  • pdf文档 pandas: powerful Python data analysis toolkit - 0.19.0

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 340 3.6.5 Finally, make the pull request . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 340 3.6.6 Delete . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1035 29.2.4 Why not make NumPy like R? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1035 29.3 Integer com/group/pydata pandas is a Python package providing fast, flexible, and expressive data structures designed to make working with “relational” or “labeled” data both easy and intuitive. It aims to be the fundamental
    0 码力 | 1937 页 | 12.03 MB | 1 年前
    3
  • pdf文档 CIS Benchmark Rancher Self-Assessment Guide - v2.4

    will need access to the Docker command line on the hosts of all three RKE roles. The commands also make use of the the jq and kubectl (with valid config) tools to and are required in the testing and evaluation service. For example: systemctl daemon-reload systemctl restart kubelet.service Audit: /bin/ps -fC kubelet Audit Config: /bin/cat /var/lib/kubelet/config.yaml Expected result: 'false' is equal to service. For example: systemctl daemon-reload systemctl restart kubelet.service Audit: /bin/ps -fC kubelet Audit Config: /bin/cat /var/lib/kubelet/config.yaml Expected result: 'Webhook' not have
    0 码力 | 54 页 | 447.77 KB | 1 年前
    3
  • pdf文档 CIS 1.5 Benchmark - Self-Assessment Guide - Rancher v2.5

    will need access to the Docker command line on the hosts of all three RKE roles. The commands also make use of the the jq and kubectl (with valid config) tools to and are required in the testing and evaluation service. For example: systemctl daemon-reload systemctl restart kubelet.service Audit: /bin/ps -fC kubelet Audit Config: /bin/cat /var/lib/kubelet/config.yaml Expected result: 'false' is equal to service. For example: systemctl daemon-reload systemctl restart kubelet.service Audit: /bin/ps -fC kubelet Audit Config: /bin/cat /var/lib/kubelet/config.yaml Expected result: 'Webhook' not have
    0 码力 | 54 页 | 447.97 KB | 1 年前
    3
  • epub文档 Apache Kyuubi 1.6.1 Documentation

    supported cluster managers, including YARN, Mesos, Kubernetes, Standalone, and local. The SPA policy also make it possible for you to launch different applications against different cluster managers. High Performance apache.kyuubi.operation.ExecuteStatement: Processing anonymous's query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: INITIALIZED_STATE -> PENDING_STATE, statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello') apache.kyuubi.operation.ExecuteStatement: Processing anonymous's query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: PENDING_STATE -> RUNNING_STATE, statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello') 16:28:57
    0 码力 | 401 页 | 5.42 MB | 1 年前
    3
  • epub文档 Apache Kyuubi 1.6.0 Documentation

    supported cluster managers, including YARN, Mesos, Kubernetes, Standalone, and local. The SPA policy also make it possible for you to launch different applications against different cluster managers. High Performance apache.kyuubi.operation.ExecuteStatement: Processing anonymous's query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: INITIALIZED_STATE -> PENDING_STATE, statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello') apache.kyuubi.operation.ExecuteStatement: Processing anonymous's query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: PENDING_STATE -> RUNNING_STATE, statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello') 16:28:57
    0 码力 | 391 页 | 5.41 MB | 1 年前
    3
  • pdf文档 CIS 1.6 Benchmark - Self-Assessment Guide - Rancher v2.5.4

    Ensure that the --protect-kernel-defaults argument is set to true (Automated) 4.2.7 Ensure that the --make-iptables-util-chains argument is set to true (Automated) 4.2.8 Ensure that the --hostname-override will need access to the Docker command line on the hosts of all three RKE roles. The commands also make use of the the jq and kubectl (with valid config) tools to and are required in the testing and evaluation kubelet service. For example: systemctl daemon-reload systemctl restart kubelet.service Audit: /bin/ps -fC kubelet Expected Result: '' is not present 4.2.2 Ensure that the --authorization-mode argument is
    0 码力 | 132 页 | 1.12 MB | 1 年前
    3
  • pdf文档 Dapr september 2023 security audit report

    Contrib subproject should enforce measures to limit the attack surface. In essence, any contributor can make a contribution to a component and leave the project a�erwards. If the contributor introduces bugs c.go:1047 +0x5d fp=0x7fffb29cd648 sp=0x7fffb29cd618 pc=0x434a7d runtime.sysMapOS(0xc000400000, 0x6fc400000?) /usr/local/go/src/runtime/mem_linux.go:187 +0x11b fp=0x7fffb29cd690 sp=0x7fffb29cd648 pc=0x417f7b runtime.(*mcache).allocLarge(0x3f?, 0x6fc23ac00, 0x1) /usr/local/go/src/runtime/mcache.go:234 +0x85 fp=0xc00011bcf8 sp=0xc00011bcb0 pc=0x4169e5 runtime.mallocgc(0x6fc23ac00, 0x52a240, 0x1) /usr/local/g
    0 码力 | 47 页 | 1.05 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.5.0 Documentation

    cluster managers, including YARN, Mesos, Kubernetes, Stan- dalone, and local. The SPA policy also make it possible for you to launch different applications against different cluster managers. 7 Kyuubi apache.kyuubi.operation.ExecuteStatement: Processing anonymous's␣ ˓→query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: INITIALIZED_STATE -> PENDING_STATE,␣ ˓→statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello') apache.kyuubi.operation.ExecuteStatement: Processing anonymous's␣ ˓→query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: PENDING_STATE -> RUNNING_STATE,␣ ˓→statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello')
    0 码力 | 172 页 | 6.94 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.5.1 Documentation

    cluster managers, including YARN, Mesos, Kubernetes, Stan- dalone, and local. The SPA policy also make it possible for you to launch different applications against different cluster managers. 7 Kyuubi apache.kyuubi.operation.ExecuteStatement: Processing anonymous's␣ ˓→query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: INITIALIZED_STATE -> PENDING_STATE,␣ ˓→statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello') apache.kyuubi.operation.ExecuteStatement: Processing anonymous's␣ ˓→query[d79abf78-d2ae-468f-87b2-19db1fc6e19a]: PENDING_STATE -> RUNNING_STATE,␣ ˓→statement: INSERT INTO T VALUES (1, 'Hi'), (2, 'Hello')
    0 码力 | 172 页 | 6.94 MB | 1 年前
    3
共 343 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 35
前往
页
相关搜索词
PyTorch深度学习pandaspowerfulPythondataanalysistoolkit0.19CISBenchmarkRancherSelfAssessmentGuidev21.5ApacheKyuubi1.6Documentation5.4Daprseptember2023securityauditreport
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩