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

无数据

分类

全部云计算&大数据(68)机器学习(68)

语言

全部中文(简体)(50)英语(18)

格式

全部PDF文档 PDF(68)
 
本次搜索耗时 0.061 秒,为您找到相关结果约 68 个.
  • 全部
  • 云计算&大数据
  • 机器学习
  • 全部
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 机器学习课程-温州大学-numpy使用总结

    10]]) > c.shape (3, 4) > a = np.array([1, 2, 3, 4]) > d = a.reshape((2,2)) array([[1, 2], [3, 4]]) 18 ndarray的切片 ndarray的切片和list是一样的。 > a = np.arange(10) > a array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) a[5] [[22, 13, 27, 18, 16]] [28], [24], [18]] np.sum(a, axis=1) np.sum(a, axis=0) axis=0) ----------------- -------------------- [26, 28, 24, 18] [22, 13, 27, 18, 16] 38 大小与排序 NumPy在排序等方面常用的函数如下: > a = np.array([1, 3, 5, 7]) > b = np.array([2, 4, 6]) > np.maximum(a[None
    0 码力 | 49 页 | 1.52 MB | 1 年前
    3
  • pdf文档 【PyTorch深度学习-龙龙老师】-测试版202112

    经典卷积网络 10.10 CIFAR10 与 VGG13 实战 10.11 卷积层变种 10.12 深度残差网络 10.13 DenseNet 10.14 CIFAR10 与 ResNet18 实战 10.15 参考文献 第 11 章 循环神经网络 11.1 序列表示方法 11.2 循环神经网络 11.3 梯度传播 11.4 RNN 层使用方法 11.5 Anaconda 程序。如图 1.23 所示,安装程序 询问是否连带安装 VS Code 软件,选择 Skip 即可。整个安装流程约持续 5 分钟,具体时间 预览版202112 第 1 章 人工智能绪论 18 需依据计算机性能而定。 图 1.22 Anaconda 安装界面-1 图 1.23Anaconda 安装界面-2 安装完成后,怎么验证 Anaconda 是否安装成功呢?通过键盘上的 tensor(-13035, dtype=torch.int16) 布尔类型与整型之间相互转换也是合法的,是比较常见的操作: In [18]: a = torch.tensor([True, False]) a.int() # 布尔类型转整型 Out[18]: tensor([1, 0], dtype=torch.int32) 一般默认 0 表示 False,1 表示 True,在
    0 码力 | 439 页 | 29.91 MB | 1 年前
    3
  • pdf文档 深度学习下的图像视频处理技术-沈小勇

    TOG 18] • Distort-and-Recover: [CVPR 18] • DPE: [CVPR 18] Previous Work Input WVM [CVPR’16] JieP [ICCV’17] HDRNet [Siggraph’17] DPE [CVPR’18] White-Box [TOG’18] Distort-and-Recover [CVPR’18] Ours
    0 码力 | 121 页 | 37.75 MB | 1 年前
    3
  • pdf文档 动手学深度学习 v2.0

    动手学深度学习 Release 2.0.0 Aston Zhang, Zachary C. Lipton, Mu Li, and Alexander J. Smola Aug 18, 2023 目录 前言 1 安装 9 符号 13 1 引言 17 2 预备知识 39 2.1 数据操作 . . . . . . . . . . . . . . . . . . . . . . . . 此我们可能需要一个足够丰富的模型族,使模型多元化。比如,模型族的另一个模型只在听到“Hey Siri”这 个词时发出“是”。理想情况下,同一个模型族应该适合于“Alexa”识别和“Hey Siri”识别,因为从直觉上 18 1. 引言 看,它们似乎是相似的任务。然而,如果我们想处理完全不同的输入或输出,比如:从图像映射到字幕,或 从英语映射到中文,可能需要一个完全不同的模型族。 但如果模型所有的按钮(模型参数) 学中的一种实验方法——例如,电阻中电 流和电压的欧姆定律可以用线性模型完美地描述。 即使在中世纪,数学家对估计(estimation)也有敏锐的直觉。例如,雅各布·克贝尔 (1460–1533)18的几何学 书籍举例说明,通过平均16名成年男性的脚的长度,可以得出一英尺的长度。 图1.4.1: 估计一英尺的长度 图1.4.1 说明了这个估计器是如何工作的。16名成年男子被要求脚连脚排成一行。然后将它们的总长度除以16,
    0 码力 | 797 页 | 29.45 MB | 1 年前
    3
  • pdf文档 《TensorFlow 快速入门与实战》3-TensorFlow基础概念解析

    ... �������������������������“��”��������0��rank� ���1����2������������������������������ 16 17 18 13 10 14 11 15 12 7 8 9 4 1 5 2 6 3 1 1 2 3 1 2 3 4 5 6 7 8 9 0� 1� 2� 3� TensorFlow TensorFlow �����Tensor����������������� ������������� 1. ����������������� 2. ������������� 16 17 18 13 10 14 11 15 12 7 8 9 4 1 5 2 6 3 1 1 2 3 1 2 3 4 5 6 7 8 9 0� 1� 2� 3� TensorFlow ���� 16 17 18 13 10 14 11 15 12 7 8 9 4 1 5 2 6 3 TensorFlow �� � TensorFlow ��������������������� • tf.constant //�� • tf.placeholder //��� • tf.Variable //�� 16 17 18 13 10 14
    0 码力 | 50 页 | 25.17 MB | 1 年前
    3
  • pdf文档 Lecture Notes on Support Vector Machine

    respectively, we have the primal feasibility conditions (18)∼(18) and the dual feasibility condition (20) holds gi(ω∗) ≤ 0, ∀i = 1, · · · , k (18) hj(ω∗) = 0, ∀j = 1, · · · , l (19) α∗ i ≥ 0, ∀i = 1, all values between b+ 1 and b+ 2 satisfy the KKT conditions and we can let b+ = (b+ 1 + b+ 2 )/2. 18
    0 码力 | 18 页 | 509.37 KB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 4 - Efficient Architectures

    embeddings of dissimilar inputs. This method is known as contrastive learning. In the SimCLR papers18 authors use this approach by using data augmentation to create similar inputs without needing labels the words scored, winning, goal and game occur together in sports category with high probability. 18 Chen, T., Kornblith, S., Swersky, K., Norouzi, M., & Hinton, G. E. (2020). Big self-supervised models '']] Tokens: tf.Tensor( [[3626 3688 11 129 1404 80 309 2393 4 303 106 3 1069 694 18 409 1 218 1 12 3 1 1 83 248 4 1 2 1 5 1 1 0 0 0
    0 码力 | 53 页 | 3.92 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 6 - Advanced Learning Techniques - Technical Review

    Jeremy and Sebastian Ruder. "Universal Language Model Fine-tuning for Text Classification." arXiv, 18 Jan. 2018, doi:10.48550/arXiv.1801.06146. Figure 6-6: Validation error w.r.t. number of training examples that build upon previous lessons. The intuition behind this is the theory of Continuation Methods (CM)18 which is a known approach for optimizing non-convex functions, where multiple local minima might exist learning. Association for Computing Machinery, 14 June 2009, pp. 41-48, doi:10.1145/1553374.1553380. 18 Allgower, Eugene L. and Kurt Georg. Numerical Continuation Methods. Springer, link.springer.com/book/10
    0 码力 | 31 页 | 4.03 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 3 - Learning Techniques

    single model, but now we have multiple models which also multiplies our deployment costs. Hinton et al.18, in their seminal work explored how smaller student networks can be taught to extract “dark knowledge” the training set. The label values correspond to cat, dog, pigeon and parrot classes in that order. 18 Hinton, Geoffrey, Oriol Vinyals, and Jeff Dean. "Distilling the knowledge in a neural network." arXiv array([0.202 , 0.3013, 0.4967]) The class probabilities at various temperatures are shown in figure 3-18. As you can observe, when the temperature is 1.0, Class 2 has been assigned a probability of 0.9931
    0 码力 | 56 页 | 18.93 MB | 1 年前
    3
  • pdf文档 keras tutorial

    .................................................................................................. 18 Core Modules ................................................................................... see the response similar as specified below, Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information are of two types as mentioned below: 5. Keras ― Deep learning with Keras Keras 18 Sequential Model - Sequential model is basically a linear composition of Keras Layers. Sequential
    0 码力 | 98 页 | 1.57 MB | 1 年前
    3
共 68 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
前往
页
相关搜索词
机器学习课程温州大学numpy使用总结PyTorch深度学习深度图像视频处理技术沈小勇动手v2TensorFlow快速入门实战基础概念解析LectureNotesonSupportVectorMachineEfficientDeepLearningBookEDLChapterArchitecturesAdvancedTechniquesTechnicalReviewkerastutorial
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩