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

无数据

分类

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

语言

全部英语(5)中文(简体)(3)

格式

全部PDF文档 PDF(8)
 
本次搜索耗时 0.056 秒,为您找到相关结果约 8 个.
  • 全部
  • 云计算&大数据
  • 机器学习
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 动手学深度学习 v2.0

    损失函数。这里我们使用 3.1节中描述的平方损失函数。 在实现中,我们需要将真实值y的形状转换为和预测值y_hat的形状相同。 def squared_loss(y_hat, y): #@save """均方损失""" return (y_hat - y.reshape(y_hat.shape)) ** 2 / 2 3.2.6 定义优化算法 正如我们在 3.1节中讨论的,线性回归有解析 下面,我们创建一个数据样本y_hat,其中包含2个样本 在3个类别的预测概率,以及它们对应的标签y。有了y,我们知道在第一个样本中,第一类是正确的预测;而 在第二个样本中,第三类是正确的预测。然后使用y作为y_hat中概率的索引,我们选择第一个样本中第一个 类的概率和第二个样本中第三个类的概率。 y = torch.tensor([0, 2]) y_hat = torch.tensor([[0 3, 0.2, 0.5]]) y_hat[[0, 1], y] tensor([0.1000, 0.5000]) 现在我们只需一行代码就可以实现交叉熵损失函数。 def cross_entropy(y_hat, y): return - torch.log(y_hat[range(len(y_hat)), y]) cross_entropy(y_hat, y) 3.6. softmax回归的从零开始实现
    0 码力 | 797 页 | 29.45 MB | 1 年前
    3
  • pdf文档 【PyTorch深度学习-龙龙老师】-测试版202112

    h = self.encoder(x) # 隐向量 h 经过解码器映射为重建的 x_hat 张量 # [b, 10] => [b, 784] x_hat = self.decoder(h) return x_hat 12.2.5 网络训练 自编码器的训练过程与分类器的基本一致,通过误差函数计算出重建向量 logits = model(x.reshape([-1, 784])) x_hat = torch.sigmoid(logits) # 恢复为 28x28,[b, 784] => [b, 28, 28] x_hat = x_hat.reshape([-1, 28, 28]) # 输入的前 50 张+重建的前 50 张图片合并,[b x.squeeze(dim=1) # [b,1,28,28]=>[b,28,28] x_concat = torch.cat([x[:50], x_hat[:50]], dim=0) # x_concat = x_hat 预览版202112 第 12 章 自编码器 8 x_concat = x_concat.cpu().numpy() * 255
    0 码力 | 439 页 | 29.91 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 7 - Automation

    search trials with two hyperparameters and . The blue contours mark the positive results while the red ones indicate the trials with high losses. The density of trials is identical in both the regions which algorithms for two hyperparameters. The blue contours show the regions with positive results while the red contours indicate poor results. The 'x' marks indicate the trials. The images are sourced under CC across the search space. Even though the trials in the blue region perform better than the ones in the red region, the search algorithm makes no effort to search "more" in the blue region. In other words, it
    0 码力 | 33 页 | 2.48 MB | 1 年前
    3
  • pdf文档 Experiment 6: K-Means

    this image, each pixel is represented as three 8-bit numbers (ranging from 0 to 255) that specify red, green and blue intensity values. Our bird photo contains thousands of colors, but we’d like to reduce three-dimensional matrix A whose first two indices identify a pixel position and whose last index represents red, green, or blue. For example, A(50, 33, 3) gives you the blue intensity of the pixel at position y
    0 码力 | 3 页 | 605.46 KB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 1 - Introduction

    pareto-optimal models that simply cost less resources to train and/or deploy. This means going from the red dots in Figure 3 to the green dots on the pareto-frontier. Having such a toolbox to make our models constructed based on past results. Figure 1-12: Bayesian Optimization over two dimensions x1 and x2. Red contour lines denote a high loss value, and blue contour lines denote a low loss value. The contours
    0 码力 | 21 页 | 3.17 MB | 1 年前
    3
  • pdf文档 Lecture Notes on Linear Regression

    space (i.e., n = 2). In the 3D space, the hypothesis function is represented by a hyperplane. The red points denote the training data, and the distance from the (read) training data to the hyperplane is
    0 码力 | 6 页 | 455.98 KB | 1 年前
    3
  • pdf文档 Lecture 1: Overview

    September 6, 2023 52 / 57 Example of Complexity Plots of polynomials having various degree, shown as red curves. x t M = 0 0 1 −1 0 1 Figure: Degree = 0 x t M = 1 0 1 −1 0 1 Figure: Degree
    0 码力 | 57 页 | 2.41 MB | 1 年前
    3
  • pdf文档 全连接神经网络实战. pytorch 版

    set_xlabel ( ’ count ’ ) ax . set_ylabel ( ’ cor rect (%) ’ ) plt . plot ( count , correctCurve , color=’ red ’ , linewidth =2.0 , l i n e s t y l e=’− ’ ) plt . show () 我们可以得到结果(我训练了很多次,有时候训练 1000 轮以后的正确率只有
    0 码力 | 29 页 | 1.40 MB | 1 年前
    3
共 8 条
  • 1
前往
页
相关搜索词
动手深度学习v2PyTorch深度学习EfficientDeepLearningBookEDLChapterAutomationExperimentMeansIntroductionLectureNotesonLinearRegressionOverview连接神经网络神经网神经网络实战pytorch
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩