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

无数据

分类

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

语言

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

格式

全部PDF文档 PDF(11)
 
本次搜索耗时 0.110 秒,为您找到相关结果约 11 个.
  • 全部
  • 云计算&大数据
  • 机器学习
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 7 - Automation

    impact when both are used together? We have four options: none, quantization, clustering, and both. We would need to train a model with each of these four options to make an informed decision. Blessed with intervention. Now, let's talk about a few search strategies starting with Grid Search. Grid Search A simple algorithm for automating HPO is Grid Search (also referred to as Parameter Sweep), where the trial set example, the trial set for two hyperparameters and where and is Figure 7-2 (a) shows results of grid search trials with two hyperparameters and . The blue contours mark the positive results while the
    0 码力 | 33 页 | 2.48 MB | 1 年前
    3
  • pdf文档 《TensorFlow 2项目进阶实战》2-快速上手篇:动⼿训练模型和部署服务

    imshow(train_images[0]) plt.colorbar() plt.grid(False) plt.show() import matplotlib.pyplot as plt plt.figure() plt.imshow(train_images[1]) plt.colorbar() plt.grid(False) plt.show() Preprocess data class_names figure(figsize=(8, 8)) for i in range(25): plt.subplot(5,5,i + 1) plt.xticks ( [ ] ) plt.yticks ( [ ] ) plt.grid(False) plt.imshow(train_images[i],camp=plt.cm.binary) plt.xlabel(class_names(train_labels[i]))
    0 码力 | 52 页 | 7.99 MB | 1 年前
    3
  • pdf文档 机器学习课程-温州大学-Scikit-learn

    SVC() params = {‘kernel’:[‘linear’, ‘rbf’], ‘C’:[1, 10]} grid_search = GridSearchCV(svc, params, cv=5) grid_search.fit(X_train, y_train) grid_search.best_params_ 在参数网格上进行穷举搜索,方法简单但是搜索速度慢(超参数较多时),且不
    0 码力 | 31 页 | 1.18 MB | 1 年前
    3
  • pdf文档 keras tutorial

    scenario of analyzing an image. Let us assume that your input image is divided up into a rectangular grid of pixels. Now, the first layer abstracts the pixels. The second layer understands the edges in the (Dense API) with softmax activation (using Activation module) function. Keras also provides options to create our own customized layers. Customized layer can be created by sub-classing the Keras.Layer
    0 码力 | 98 页 | 1.57 MB | 1 年前
    3
  • pdf文档 超大规模深度学习在美团的应用-余建平

    模型参数 PS的参数放置策略 • Ps分布式分片的均衡,避免分片大小不一致  NN网络矩阵按行切分,解决请求包不均衡问题  特征按照Hash方式分布式存储 • 模型并行调超参  grid search  random search PS的多模型训练 • 提高内存使用效率  model group内共享特征key的存储 • 超大规模模型 -> 高扇出的分布式PS •
    0 码力 | 41 页 | 5.96 MB | 1 年前
    3
  • pdf文档 Experiment 1: Linear Regression

    yourself that the two forms are equivalent. While in the previous exercise you calculated J(θ) over a grid of θ0 and θ1 values, you will now calculate J(θ) using the θ of the current stage of gradient descent
    0 码力 | 7 页 | 428.11 KB | 1 年前
    3
  • pdf文档 经典算法与人工智能在外卖物流调度中的应用

    外卖订单的智能 调度系统 一. 智能调度系统的 大数据分析监控 二. 智能调度系统中 的人工智能 三. 智能调度系统的自主学习能力 预分配 在线预估 实时评价 基础设施 搜索方式 Grid Search 训练维度 分商圈 分时段 Genetic Algorithm Gradient Descent 仿真系统 离线训练 在线学习 优化 模型 加载 数据 仿真 调度
    0 码力 | 28 页 | 6.86 MB | 1 年前
    3
  • pdf文档 Keras: 基于 Python 的深度学习库

    Sequential 的默认值 fit,predict,predict_proba 和 score 函数 当 scikit-learn 使用 grid_search API 时,有效参数与 sk_params 相同,包括拟合参数。换 句话说,你可以使用 grid_search 来搜索最好的 batch_size 或 epochs 以及模型参数。 工具 236 20 工具 20.1 CustomObjectScope
    0 码力 | 257 页 | 1.19 MB | 1 年前
    3
  • pdf文档 动手学深度学习 v2.0

    set_yscale(yscale) axes.set_xlim(xlim) axes.set_ylim(ylim) if legend: axes.legend(legend) axes.grid() 通过这三个用于图形配置的函数,定义一个plot函数来简洁地绘制多条曲线,因为我们需要在整个书中可视 化许多曲线。 #@save def plot(X, Y=None, xlabel=None 所以生成含所有锚框中心的网格,重复了“boxes_per_pixel”次 out_grid = torch.stack([shift_x, shift_y, shift_x, shift_y], dim=1).repeat_interleave(boxes_per_pixel, dim=0) output = out_grid + anchor_manipulations return output 学者来说,这有时会让人感到困惑。表16.3.1列出了不同合适 的计算机。 752 16. 附录:深度学习工具 表16.3.1: 不同的EC2实例类型 Name GPU Notes g2 Grid K520 过时的 p2 Kepler K80 旧的GPU但Spot实例通常很便宜 g3 Maxwell M60 好的平衡 p3 Volta V100 FP16的高性能 g4 Turing
    0 码力 | 797 页 | 29.45 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 4 - Efficient Architectures

    limited by the user’s bandwidth, and the memory available might be limited too. Let’s see what our options are: 1. The embedding table is too large on-disk: We can use a smaller vocabulary, and see if the
    0 码力 | 53 页 | 3.92 MB | 1 年前
    3
共 11 条
  • 1
  • 2
前往
页
相关搜索词
EfficientDeepLearningBookEDLChapterAutomationTensorFlow快速入门实战上手训练模型部署服务机器学习课程温州大学Scikitlearnkerastutorial超大大规规模大规模超大规模深度美团应用建平ExperimentLinearRegression经典算法人工智能人工智能外卖物流调度Keras基于Python动手v2Architectures
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩