积分充值
 首页
前端开发
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)中文(简体)(2)中文(简体)(1)

格式

全部PDF文档 PDF(8)
 
本次搜索耗时 0.025 秒,为您找到相关结果约 8 个.
  • 全部
  • 综合其他
  • 人工智能
  • 全部
  • 英语
  • 中文(简体)
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Google 《Prompt Engineering v7》

    optimizing prompt length, and evaluating a prompt’s writing style and structure in relation to the task. In the context of natural language processing and LLMs, a prompt is an input provided to the model LLM’s output. Effective prompt engineering requires setting these configurations optimally for your task. Output length An important configuration setting is the number of tokens to generate in a response creative results, try starting with a temperature of .1, top-P of .9, and top-K of 20. Finally, if your task always has a single correct answer (e.g., answering a math problem), start with a temperature of
    0 码力 | 68 页 | 6.50 MB | 6 月前
    3
  • pdf文档 OpenAI 《A practical guide to building agents》

    building agents Selecting your models Different models have different strengths and tradeoffs related to task complexity, latency, and cost. As we’ll see in the next section on Orchestration, you might want 
 of models for different tasks in the workflow. Not every task requires the smartest model—a simple retrieval or intent classification task may be handled by a smaller, faster model, while harder tasks An approach that works well is to build your agent prototype with the most capable model for every task to establish a performance baseline. From there, try swapping in smaller models to see 
 if they still
    0 码力 | 34 页 | 7.00 MB | 5 月前
    3
  • pdf文档 DeepSeek-V2: A Strong, Economical, and Efficient Mixture-of-Experts Language Model

    Table 27 | An example of MATH. 45 PROMPT You are an expert Python programmer, and here is your task: Write a function to find the similar elements from the given two tuple lists. Your code should pass tuple(set(test_tup1) & set(test_tup2)) return (res) [DONE] You are an expert Python programmer, and here is your task: Write a python function to identify non-prime numbers. Your code should pass these tests: assert % i == 0: result = True return result [DONE] You are an expert Python programmer, and here is your task: Write a function to find the largest integers from a given list of numbers using heap queue algorithm
    0 码力 | 52 页 | 1.23 MB | 1 年前
    3
  • pdf文档 OpenAI - AI in the Enterprise

    dramatically reduced search time; and advisors spend more time on client relationships, thanks to task automation and faster insights. The feedback from advisors has been overwhelmingly positive. They’re internal evaluation by experts across domains, deep research saved an average of 4 hours per complex task. For more detail, watch BBVA puts AI into the hands of every team. 17 AI in the EnterpriseLesson
    0 码力 | 25 页 | 9.48 MB | 5 月前
    3
  • pdf文档 DeepSeek从入门到精通(20250204)

    Adaptation(适应):根据AI反馈动态调整任务结构 为了更有效地进行任务分解,可以采用SPECTRA模型(Systematic Partitioning for Enhanced Cognitive Task Resolution in AI): �基于SPECTRA模型的提示语链设技巧: 1. 分割提示:“将[总任务描述]分解为3—5个主要组成部分,确保每个 部分都是相对独立但与整体目标相关的。” 1. TASTE框架 • Task (任务): 定义模型主要任务或生成内容。 • Audience (目标受众): 明确说明目标受众。 • Structure (结构): 为输出的内容提供明确的组织结 构,包括段落安排、论点展开顺序或其他逻辑关系。 提供目前的环境问题的背景,讨论应对全球变暖的 策略。 • Guidelines: 文章应使用简洁明了的语言,并避免复杂的 技术概念。 • Novelty: 要求结合最新的环境数据,提出新颖的观点和解 决方案。 示例 • Task: 写一篇关于数据隐私的重要性的简短博客文章。 • Audience: 普通的互联网用户,非技术背景。 • Structure: 文章需要有明确的开头、中间讨论和结尾, 开头提出问题,中间介绍原因和影响,结尾提供建议。
    0 码力 | 104 页 | 5.37 MB | 7 月前
    3
  • pdf文档 清华大学 DeepSeek 从入门到精通

    Adaptation(适应):根据AI反馈动态调整任务结构 为了更有效地进行任务分解,可以采用SPECTRA模型(Systematic Partitioning for Enhanced Cognitive Task Resolution in AI): �基于SPECTRA模型的提示语链设技巧: 1. 分割提示:“将[总任务描述]分解为3—5个主要组成部分,确保每个 部分都是相对独立但与整体目标相关的。” 1. TASTE框架 • Task (任务): 定义模型主要任务或生成内容。 • Audience (目标受众): 明确说明目标受众。 • Structure (结构): 为输出的内容提供明确的组织结 构,包括段落安排、论点展开顺序或其他逻辑关系。 提供目前的环境问题的背景,讨论应对全球变暖的 策略。 • Guidelines: 文章应使用简洁明了的语言,并避免复杂的 技术概念。 • Novelty: 要求结合最新的环境数据,提出新颖的观点和解 决方案。 示例 • Task: 写一篇关于数据隐私的重要性的简短博客文章。 • Audience: 普通的互联网用户,非技术背景。 • Structure: 文章需要有明确的开头、中间讨论和结尾, 开头提出问题,中间介绍原因和影响,结尾提供建议。
    0 码力 | 103 页 | 5.40 MB | 8 月前
    3
  • pdf文档 Trends Artificial Intelligence

    demand for compute. We’re seeing it across every layer: more queries, more models, more tokens per task. The appetite for AI isn't slowing down. It’s growing into every available resource – just like lower-cost API providers and achieve functionally similar results, especially when fine-tuned on task-specific data. This shift is weakening the pricing leverage of model incumbents and leveling the consultation, but also doing the work for our merchants is a mind-blowing step function change here. Our task here at Shopify is to make our software unquestionably the best canvas on which to develop the best
    0 码力 | 340 页 | 12.14 MB | 4 月前
    3
  • pdf文档 清华大学第二弹:DeepSeek赋能职场

    • 深度思考(R1):目标清晰,结果可以模糊(推理) RTGO提示语结构 Role(角色) 定义AI的角色: 经验丰富的数据分析师 具备十年销售经验的SaaS系统商务 …… Task(任务) 具体任务描述: 写一份关于XXX活动的小红书宣推文案 写一份关于XX事件的舆论分析报告 (XX活动/事件相关背景信息如下……) Goal(目标) 期望达成什么目标效果: 通过该文案吸引潜在客户,促成消
    0 码力 | 35 页 | 9.78 MB | 7 月前
    3
共 8 条
  • 1
前往
页
相关搜索词
GooglePromptEngineeringv7OpenAIpracticalguidetobuildingagentsDeepSeekV2StrongEconomicalandEfficientMixtureofExpertsLanguageModelAIintheEnterprise入门精通20250204清华华大大学清华大学TrendsArtificialIntelligence第二赋能职场
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩