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

无数据

分类

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

语言

全部英语(14)中文(简体)(7)

格式

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

    layer and output layer) in the actual proposed neural network model. Keras provides a lot of pre-build layers so that any complex neural network can be easily created. Some of the important Keras layers calls the base or super layer’s init function. Step 4: Implement build method build is the main method and its only purpose is to build the layer properly. It can do anything related to the inner working is done, we can call the base class build function. Our custom build function is as follows: 8. Keras ― Customized Layer Keras 53 def build(self, input_shape): self.kernel
    0 码力 | 98 页 | 1.57 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 7 - Automation

    the global LEARNING_RATE and DROPOUT_RATE parameters from chapter 3. We have an additional function build_hp_model() here which takes a hp parameter that refers to a keras_tuner. HyperParameters() object type hyperparameters: learning_rate in range [.0001, .01] and dropout_rate in range [.1, .8]. The build_hp_model() is called by the tuner to create a model for each trial with the chosen values for the learning_rate and dropout_rate. DROPOUT_RATE = 0.2 LEARNING_RATE = 0.0002 NUM_CLASSES = 102 def build_hp_model(hp): if hp: learning_rate = hp.Float( "learning_rate", min_value=1e-4, max_value=1e-2
    0 码力 | 33 页 | 2.48 MB | 1 年前
    3
  • pdf文档 Keras: 基于 Python 的深度学习库

    h5py 快速开始 38 如 果 模 块 导 入 没 有 错 误, 那 么 模 块 已 经 安 装 成 功, 否 则 你 可 以 在 http://docs.h5py.org/en/latest/build.html 中找到详细的安装说明。 模型 39 4 模型 4.1 关于 Keras 模型 在 Keras 中有两类主要的模型:Sequential 顺序模型 和 使用函数式 API 的 Model self.units = units self.state_size = units super(MinimalRNNCell, self).__init__(**kwargs) def build(self, input_shape): self.kernel = self.add_weight(shape=(input_shape[-1], self.units), initializer='uniform' Keras2.0 中,Keras 层的骨架(如果你用的是旧的版本,请你更新)。你只需要实 现三个方法即可: • build(input_shape): 这是你定义权重的地方。这个方法必须设 self.built = True,可 以通过调用 super([Layer], self).build() 完成。 • call(x): 这里是编写层的功能逻辑的地方。你只需要关注传入 call 的第一个参数:输入
    0 码力 | 257 页 | 1.19 MB | 1 年前
    3
  • pdf文档 【PyTorch深度学习-龙龙老师】-测试版202112

    label) # 打印这条句子的标签 # 构建词汇表,并分词编码,仅考虑 10000 个单词,耗时约 5 分钟 TEXT.build_vocab(train_data, max_size=10000, vectors='glove.6B.100d') LABEL.build_vocab(train_data) # 打印单词数量:10000++ print(f'Unique add(layers.ReLU())# 添加激活函数层 network.build(input_shape=(4, 4)) # 创建网络参数 network.summary() 上述代码通过指定任意的 layers_num 参数即可创建对应层数的网络结构,在完成网络创建 时,网络层类并没有创建内部权值张量等成员变量,此时通过调用类的 build 方法并指定 输入大小,即可自动创建所有层的内部张量。通过 layers.Dense(32, activation='relu'), layers.Dense(10)]) network.build(input_shape=(4, 28*28)) network.summary() 创建网络后,正常的流程是循环迭代数据集多个 Epoch,每次按批产生训练数据、前向计 算,然后通过损失
    0 码力 | 439 页 | 29.91 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 1 - Introduction

    tolerate approximate responses, since often there are no exact answers. Machine learning algorithms help build models, which as the name suggests is an approximate mathematical model of what outputs correspond the other? This is illustrated in Figure 1-6. As mentioned earlier, with this book we’ll strive to build a set of tools and techniques that can help us make models pareto-optimal and let the user pick the Chapter 4. Infrastructure Finally, we also need a foundation of infrastructure and tools that help us build and leverage efficient models. This includes the model training framework, such as Tensorflow, PyTorch
    0 码力 | 21 页 | 3.17 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 6 - Advanced Learning Techniques - Technical Review

    GPT-3 is used for auto-completing code snippets with an IDE. End-users can also use GPT-3 API10 to build their own applications. Given the large number of possible uses for such models, the high costs of easier to grasp fundamentals are taught first, followed by incrementally more difficult concepts that build upon previous lessons. The intuition behind this is the theory of Continuation Methods (CM)18 which teacher with label smoothing has been shown to hurt distillation26. As always, we recommend that to build an intuition for what works better and when, you should go ahead and try these ideas with both academic
    0 码力 | 31 页 | 4.03 MB | 1 年前
    3
  • pdf文档 深度学习与PyTorch入门实战 - 63. 迁移学习-自定义数据集实战

    皮卡丘:234 ▪ 超梦:239 ▪ 杰尼龟:223 ▪ 小火龙:238 ▪ 妙蛙种子:234 60%:138 20%:46 20%:46 4 steps ▪ Load data ▪ Build model ▪ Train and Test ▪ Transfer Learning Step1.Load data ▪ Inherit from torch.utils.data.Dataset for ResNet18 ▪ Data Argumentation ▪ Rotate ▪ Crop ▪ Normalize ▪ Mean, std ▪ ToTensor Step2.build model ▪ Inherit from base class ▪ Define forward graph Step3.Train and Test Step4.Transfer learning
    0 码力 | 16 页 | 719.15 KB | 1 年前
    3
  • pdf文档 《TensorFlow 快速入门与实战》2-TensorFlow初接触

    —Current release with GPU support (Ubuntu and Windows) tf-nightly —Nightly build for CPU-only (unstable) tf-nightly-gpu —Nightly build with GPU support (unstable, Ubuntu and Windows) “Hello TensorFlow” Try
    0 码力 | 20 页 | 15.87 MB | 1 年前
    3
  • pdf文档 《TensorFlow 2项目进阶实战》6-业务落地篇:实现货架洞察Web应⽤

    编写 Dockerfile 为 AI SaaS 构建 Docker 镜像(TF 容器外) $ docker build –t tf2-ai-saas -f ai_saas/Dockerfile . 为 AI SaaS 构建 Docker 镜像(TF 容器外) $ docker build –t tf2-ai-saas -f ai_saas/Dockerfile . “Hello TensorFlow”
    0 码力 | 54 页 | 6.30 MB | 1 年前
    3
  • pdf文档 Machine Learning Pytorch Tutorial

    ReLU Activation nn.ReLU() See here to learn about why we need activation functions. torch.nn – Build your own neural network import torch.nn as nn class MyModel(nn.Module): def __init__(self): return self.net(x) Initialize your model & define layers Compute output of your NN torch.nn – Build your own neural network import torch.nn as nn class MyModel(nn.Module): def __init__(self):
    0 码力 | 48 页 | 584.86 KB | 1 年前
    3
共 21 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
kerastutorialEfficientDeepLearningBookEDLChapterAutomationKeras基于Python深度学习PyTorch深度学习IntroductionAdvancedTechniquesTechnicalReview入门实战63迁移定义数据定义数据TensorFlow快速接触业务落地实现货架洞察WebMachinePytorchTutorial
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩