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

无数据

分类

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

语言

全部英语(16)中文(简体)(12)

格式

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

    cross-entropy loss. We would refer you to the SimCLR paper for more details about the chosen loss functions and other alternatives considered. Once the desired test loss is achieved, the projection head optimizing non-convex functions, where multiple local minima might exist. Typical deep learning objective functions are non-convex too, and directly working with these functions might lead to the optimizer complexity you want to introduce in the training. Figure 6-12 shows multiple examples of pacing functions. The x-axis is the training iteration i.e. the variable described above, and the y-axis is the fraction
    0 码力 | 31 页 | 4.03 MB | 1 年前
    3
  • pdf文档 Keras: 基于 Python 的深度学习库

    M 层和 Embedding 层都能被平稳地训练。 快速开始 19 auxiliary_output = Dense(1, activation='sigmoid', name='aux_output')(lstm_out) 此时,我们将辅助输入数据与 LSTM 层的输出连接起来,输入到模型中: auxiliary_input = Input(shape=(5,), name='aux_input') name='aux_input') x = keras.layers.concatenate([lstm_out, auxiliary_input]) # 堆叠多个全连接网络层 x = Dense(64, activation='relu')(x) x = Dense(64, activation='relu')(x) x = Dense(64, activation='relu')(x) # 最后添加主要的逻辑回归层 name='main_output')(x) 然后定义一个具有两个输入和两个输出的模型: model = Model(inputs=[main_input, auxiliary_input], outputs=[main_output, auxiliary_output]) 现在编译模型,并给辅助损失分配一个 0.2 的权重。如果要为不同的输出指定不同的 loss_weights 或 loss,可以使用列表或字典。在这里,我们给
    0 码力 | 257 页 | 1.19 MB | 1 年前
    3
  • pdf文档 机器学习课程-温州大学-01机器学习-引言

    取 pd.read_sql() | 从 SQL 表 或 数 据 库 读 取 pd.read_json() | 从JSON格式的URL或文件读取 pd.read_clipboard() | 从剪切板读取 将DataFrame写入⽂件 df.to_csv() | 写入CSV文件 df.to_excel() | 写入Excel文件 df.to_sql() | 写入SQL表或数据库 df.to_json()
    0 码力 | 78 页 | 3.69 MB | 1 年前
    3
  • pdf文档 机器学习课程-温州大学-01深度学习-引言

    取 pd.read_sql() | 从 SQL 表 或 数 据 库 读 取 pd.read_json() | 从JSON格式的URL或文件读取 pd.read_clipboard() | 从剪切板读取 将DataFrame写入⽂件 df.to_csv() | 写入CSV文件 df.to_excel() | 写入Excel文件 df.to_sql() | 写入SQL表或数据库 df.to_json()
    0 码力 | 80 页 | 5.38 MB | 1 年前
    3
  • pdf文档 构建基于富媒体大数据的弹性深度学习计算平台

    和整理 样本 训练 模型 模型评估 AVA深度学习平台 Caching IO Distributed System Docker Orchestration Storage HDFS SQL NoSQL Caffe MXNet Tensorflow Data Clean Iterative training Semi-supervised Labeling Incremental
    0 码力 | 21 页 | 1.71 MB | 1 年前
    3
  • pdf文档 阿里云上深度学习建模实践-程孟力

    方案复杂 图像 搜索 推荐 语音 视频理解 NLP 广告 CNN RNN GNN MLP Tensorflow PyTorch Parameter Server MPI TreeModel SQL MapReduce Blink  场景丰富: 图像/视频/推荐/搜索  大数据+大模型: Model Zoo  跨场景+跨模态  开箱即用: 封装复杂性  白盒化, 可扩展性强
    0 码力 | 40 页 | 8.51 MB | 1 年前
    3
  • pdf文档 keras tutorial

    configuration inside keras.json file. We can perform some pre-defined operations to know backend functions. 3. Keras ― Backend Configuration Keras 10 Theano Theano is an open source sub-classing Keras models. Core Modules Keras also provides a lot of built-in neural network related functions to properly create the Keras model and Keras layers. Some of the function are as follows:  many activation function like softmax, relu, etc.,  Loss module - Loss module provides loss functions like mean_squared_error, mean_absolute_error, poisson, etc.,  Optimizer module - Optimizer
    0 码力 | 98 页 | 1.57 MB | 1 年前
    3
  • pdf文档 Lecture Notes on Support Vector Machine

    jhj(ω) (12) In fact, L(ω, α, β ) can be treated as a weighted sum of the objective and constraint functions. αi is the so-called Lagrange multiplier associated with gi(ω) ≤ 0, while β i is the one associated supposed to the original constrained minimization problem); ii) G is an infimum of a set of affine functions and thus is a concave function regardless of the original problem; iii) G can be −∞ for some α and Karush-Kuhn-Tucker (KKT) Conditions We assume that the objective function and the inequality constraint functions are differentiable. Again, let ω∗ and (α∗, β ∗) be any primal and dual optimal points, respectively
    0 码力 | 18 页 | 509.37 KB | 1 年前
    3
  • pdf文档 Machine Learning Pytorch Tutorial

    Testing Neural Networks in Pytorch ● Dataset & Dataloader ● Tensors ● torch.nn: Models, Loss Functions ● torch.optim: Optimization ● Save/load models Prerequisites ● We assume you are already familiar mean() ● Addition z = x + y ● Subtraction z = x - y ● Power y = x.pow(2) Common arithmetic functions are supported, such as: Tensors – Common Operations Tensors – Common Operations ● Transpose: official documentation for more information on data types. Tensors – PyTorch v.s. NumPy ● Many functions have the same names as well PyTorch NumPy x.reshape / x.view x.reshape x.squeeze() x.squeeze()
    0 码力 | 48 页 | 584.86 KB | 1 年前
    3
  • pdf文档 AI大模型千问 qwen 中文文档

    1: send the conversation and available functions to the model messages = [{ 'role': 'user', 'content': "What's the weather like in San Francisco?" }] functions = [{ (续下页) 38 Chapter 1. 文档 Qwen (接上页) print('# Assistant Response 1:') responses = [] for responses in llm.chat(messages=messages, functions=functions, stream=True): print(responses) messages.extend(responses) # extend conversation with assistant's function # Note: the JSON response may not always be valid; be sure to handle errors available_functions = { 'get_current_weather': get_current_weather, } # only one function in this example, but you
    0 码力 | 56 页 | 835.78 KB | 1 年前
    3
共 28 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
EfficientDeepLearningBookEDLChapterAdvancedTechniquesTechnicalReviewKeras基于Python深度学习机器课程温州大学01引言构建媒体数据弹性计算平台阿里云上建模实践程孟力kerastutorialLectureNotesonSupportVectorMachinePytorchTutorialAI模型千问qwen中文文档
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩