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

无数据

分类

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

语言

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

格式

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

    'the', 'in', 'of', 'is', 'a', 'and', 'was', 'by'] Notice that the first two elements are an empty string (a reserved token for padding) and a 'UNK' token (a token reserved for words which are not found independently. The output of this layer is a vector with indices of tokens in the vocabulary. Our string of interest is ‘efficient deep learning’, but we will add a random token at the end that we are confident vectorization layer ensures that every input string is transformed into a sequence of integer ids. The maximum sequence length is 100. Therefore, for every input string, the embedding layer would receive 100
    0 码力 | 53 页 | 3.92 MB | 1 年前
    3
  • pdf文档 keras tutorial

    from_config(config)  to_json(): Returns the model as an json object. >>> json_string = model.to_json() >>> json_string '{"class_name": "Sequential", "config": {"name": "sequential_10", "layers": [{"class_name": model_from_json new_model = model_from_json(json_string)  to_yaml(): Returns the model as a yaml string. >>> yaml_string = model.to_yaml() >>> yaml_string 'backend: tensorflow\nclass_name: Sequential\nconfig:\n 58 from keras.models import model_from_yaml new_model = model_from_yaml(yaml_string) Summarise the model Understanding the model is very important phase to properly use it for training
    0 码力 | 98 页 | 1.57 MB | 1 年前
    3
  • pdf文档 Keras: 基于 Python 的深度学习库

    3.3.6.2 只保存/加载模型的结构 如果您只需要保存模型的结构,而非其权重或训练配置项,则可以执行以下操作: # 保存为 JSON json_string = model.to_json() # 保存为 YAML yaml_string = model.to_yaml() 生成的 JSON/YAML 文件是人类可读的,如果需要还可以手动编辑。 你可以从这些数据建立一个新的模型: # import model_from_json model = model_from_json(json_string) # 从 YAML 重建模型: from keras.models import model_from_yaml model = model_from_yaml(yaml_string) 3.3.6.3 只保存/加载模型的权重 如果您只需要 模型的权重,可以使用下面的代码以 HDF5 model_from_yaml 的工作方式相同: from keras.models import model_from_json model = model_from_json(json_string, custom_objects={'AttentionLayer': AttentionLayer}) 3.3.7 为什么训练误差比测试误差高很多? Keras 模型有两种模式:训练和测试。正则化机制,如
    0 码力 | 257 页 | 1.19 MB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 2 - Compression Techniques

    (figure 2-1 bottom). Each leaf node in the tree is a symbol, and the path to that symbol is the bit-string assigned to it. This allows us to encode the given data in as few bits as possible, since the most the convert() method on the converter object generates a tflite model file content string. We referred to this string as model_content earlier. The converter object also supports weight and activation
    0 码力 | 33 页 | 1.96 MB | 1 年前
    3
  • pdf文档 深度学习与PyTorch入门实战 - 06. 基本数据类型

    Int array IntTensor of size [d1, d2 ,…] Float array FloatTensor of size [d1, d2, …] string -- How to denote string ▪ One – hot ▪ [0, 1, 0, 0, …] ▪ Embedding ▪ Word2vec ▪ glove Data type Type check
    0 码力 | 16 页 | 1.09 MB | 1 年前
    3
  • pdf文档 AI大模型千问 qwen 中文文档

    'object', 'properties': { 'location': { 'type': 'string', 'description': 'The city and state, e.g. San Francisco, CA', }, 'unit': { 'type': 'string', 'enum': ['celsius', 'fahrenheit'] }, }, 'required': return the image URL drawn based on text information.' parameters = [{ 'name': 'prompt', 'type': 'string', 'description': 'Detailed description of the desired image content, in English �→', 'required':
    0 码力 | 56 页 | 835.78 KB | 1 年前
    3
  • pdf文档 《Efficient Deep Learning Book》[EDL] Chapter 7 - Automation

    that each string produces. Unlike the guitar which has a few knobs, the hyperparameter search space can be quite large. Moreover, unlike a guitar knob which is associated with a single string, hyperparameters
    0 码力 | 33 页 | 2.48 MB | 1 年前
    3
  • pdf文档 《TensorFlow 快速入门与实战》3-TensorFlow基础概念解析

    add/softmax/dropout/erosion2d ���� random_normal/random_shuffle/multinomial/random_gamma ����� string_to_hash_bucket/reduce_join/substr/encode_base64 ������ encode_png/resize_images/rot90/hsv_to_rgb/adjust_gamma
    0 码力 | 50 页 | 25.17 MB | 1 年前
    3
  • pdf文档 机器学习课程-温州大学-14深度学习-Vision Transformer (ViT)

    out几率,取值范围为 [0, 1],默认为 0.。 emb_dropout:float类型参数,进行Embedding操作 时Dropout几率,取值范围为[0, 1],默认为0。 pool:string类型参数,取值为 cls或者 mean 。 33 参考文献 1. https://jalammar.github.io/illustrated-transformer 2. https://www
    0 码力 | 34 页 | 2.78 MB | 1 年前
    3
  • pdf文档 机器学习课程-温州大学-09深度学习-目标检测

    03 YOLO算法 04 Faster RCNN算法 4 1.目标检测概述 分类(Classification) 即是将图像结构化为某一 类别的信息,用事先确定 好的类别(string)或实例ID 来描述图片。这一任务是 最简单、最基础的图像理 解任务,也是深度学习模 型最先取得突破和实现大 规模应用的任务。 检测(Detection) 分类任务关心整体,给出的 是整张图片的内容描述,而
    0 码力 | 43 页 | 4.12 MB | 1 年前
    3
共 14 条
  • 1
  • 2
前往
页
相关搜索词
EfficientDeepLearningBookEDLChapterArchitectureskerastutorialKeras基于Python深度学习CompressionTechniquesPyTorch入门实战06基本数据类型数据类型AI模型千问qwen中文文档AutomationTensorFlow快速基础概念解析机器课程温州大学14VisionTransformerViT09目标检测
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩