利用大语言模型(KIMI)构建智能产品的信息模型

          数字化的核心是数字化建模,为一个事物构建数字模型是一件非常繁杂和耗费人工的事情。利用大语言模型,能够轻松地生成设备的信息模型,我们的初步实验表明,只要提供足够的模板,就能够准确地生成设备的数字化模型。

        我们尝试了利用大预言模型生成OPCUA 和工业4.0 管理壳模型,实验中采用JSON 作为中间模型,构建了各种JSON 模板(template),得到了令人满意的结果。

笔者认为 大语言模型是生成产品信息模型的最佳工具。

产品信息模型与控制模型

        不同的应用场景,对事物的关注重点的不同的。例如,对于一个智能传感器而言,从商业的角度看,产品的信息模型中应该包括产品的类型,名称,制造商,技术规格,产品图片,3D模型,安全论证等信息。而对于应用工程师而言,关心的是产品的接口,协议和控制方法。产品的商业信息和使用信息是不同的。信息模型也不同。

   于是,产品的商业信息和使用信息采用的建模方式和标准也是不同的。产品信息主要标准包括GS-1,ETIM,ECL@SS。而控制模型包括OPC UA 和工业4.0 管理壳(AAS)。

  本文首先探讨在ETIM 模型的基础上扩展基于JSON 的控制信息模型。并且通过转换软件将JSON 控制模型转换成OPCUA 模型。采用JSON 的原因是JSON 更具有可读性。适合大语言模型构建产品模型。
      

智能产品信息模型   

  对于智能化技术产品而言,产品的信息包含下面几个方面:

  1. 产品的基本信息
  2. 产品的技术指标
  3. 产品的操作过程
  4. 产品的几何图形
  5. 产品的商务信息

   这些信息除了商务信息之外,通常包含在产品的数据表(DataSheet) 中,对于复杂的智能产品,为了帮助用户使用产品,还提供了辅助的技术文档。 商务信息在销售部门的报价单或者ERP 系统中。

           数字化的主要工作之一是构建生产过程中所有资产的数字化模型。产品的基本信息,技术指标和几何图形通常包含在产品分类目录中(例如ETIM,GS-1,ECL@SS)。产品的商务信息包含在电子商务平台信息模型中。而产品的操作过程包含在技术文档中。

  产品操作过程的模型

  在工业4.0 的相关标准中,数字资产的数字化模型被称为资产管理壳(AAS),其中包含了操作数据和服务,这是模型能够转换成自动控制系统中的信息模型,例如OPCUA 信息模型。

       资产管理壳和OPC UA 是相对比较复杂的形式化信息模型,构建这些信息模型要借助专业的设计工具,并且具备一定的AAS和OPCUA 背景知识,笔者关注的重点是使用更加便捷,高效的方法描述产品的信息模型。特别是ChatGPT 技术的出现。为使用自然语言描述信息模型带来了新的机会。在我看来,chatGPT 为代表的大语言模型最强大的能力是将人类自然语言的内容转换成为机器能够识别的形式化信息。

JSON LD 物模型

JSON -LD 的全称是(JSON linked data),是Google公司提出来的,W3C 发布 JSON-LD 1.1 正式推荐标准。

       JSON-LD 是一种轻量级链接数据格式。它 对人类来说很容易读写。它基于已经 成功的 JSON 格式,并提供了一种帮助 JSON 数据互操作的方法。

JSON-LD的初衷是提供了一种更简单的方法来从网站创建机器可读数据以提升搜索结果。

        具体来说,使用 <script type="application/ld+json"> 标签可以让网页中的元素被编码为一个 JSON-LD 对象,并将其嵌入到页面中。这个 JSON-LD 对象可以包含诸如实体名称、描述、图像、地址、联系方式等属性信息,让搜索引擎更好地理解网页的含义和结构。

        通过使用结构化数据,网站管理员可以帮助搜索引擎更好地了解他们网站的内容和结构,并且有助于提高网站在搜索引擎中的排名和可见度。另外,使用 JSON-LD 还可以使您的网站在 Google 的搜索结果中显示富媒体的搜索结果,例如公司地址、电话号码、评分等等。

在网页正文中嵌入结构化数据,例如描述组织、产品或事件的相关信息。以下是一个示例:
 

<!DOCTYPE html>
<html><head><script type="application/ld+json">{"@context": "https://schema.org/","@type": "Organization","name": "Example Company","url": "https://www.example.com/","logo": "https://www.example.com/logo.png"}</script></head><body><h1>Welcome to Example Company</h1><p>Visit our website at <a href="https://www.example.com/">www.example.com</a></p></body>
</html>

JSON-LD 被用于物联网(Web of thing )描述物模型,下面是一个例子:

{"id": "urn:dev:wot:com:example:servient:lamp","name": "MyLampThing","securityDefinitions": {"basic_sc": {"scheme": "basic"}},"security": ["basic_sc"],"properties": {"status" : {"type": "string","forms": [{"href": "https://mylamp.example.com/status"}]}},"actions": {"toggle" : {"forms": [{"href": "https://mylamp.example.com/toggle"}]}},"events":{"overheating":{"data": {"type": "string"},"forms": [{"href": "https://mylamp.example.com/oh","subprotocol": "longpoll"}]}},"annotation": {"@context": {"@base": "http://example.org/data/","vendor": "http://vendor.org/product/"}"@type": "vendor:color-light","isAbstractionOf": "appartment/134#light-1"}
}

 受到WoT 使用JSON LD 建模的启发,我们可以利用JSON构建控制过程的模型:

  • JSON 更适合人类阅读和书写
  • JSON 更适合LLM 生成

大语言模型生成产品模型的实验

        笔者曾经尝试使用LLM 直接生成产品信息模型,结果发现,LLM 的输出存在不一致的现象,在数字化建模中是无法接受的。而LLM是基于语言的实例来学习语言的语法。它目前无法学习schema 规范。因此,我放弃了直接生成产品模型的想法,而是为LLM 提供一个JSON 模型的模板,让LLM 完成模型的实例化.通过阅读产品的datasheet ,提取相关信息,填入预先定义的JSON 模型中,并且将JSON 模型中未定义的属性作为专用属性增补在后面。

构建产品信息模型

这是产品的控制模型: 

{"name":"mydevice","description":"description of mydevice","group_id":"group id","class_id":"class_id","properties":[{"name":"status","type":"string","description":"the status of device"},{"name":"temperature","type":"numeric","description":"the temperature of device","max":"max of value","min":"min of value","value":"the default value"}],"actions":[{"name":"the name og action","description":"the description of the action","arguments":{"inputs":[],"output"[]}}],"events":[{"name":" the name of event","description":"description of the event"}]
}

输入产品控制模型的描述

使用word 编写了一个产品的简单描述:

这是产品的信息
名称 温度传感器
属性:温度最大值:180最小值: -30初始值:0
电流初始值:0
电压
初始值:24
动作:
初始化输入:
输入1:电流初始值输出:无
读取温度:输入:无输出:
输出1当前温度
复位:输入:无
输出:无

将产品模型和产品信息上传给kimi 大模型,结果为:

{"name": "温度传感器","properties": {"temperature": {"max": 180,"min": -30,"initial_value": 0},"current": {"initial_value": 0},"voltage": {"initial_value": 24}},"actions": [{"name": "initialize","description": "初始化设备,设置电流的初始值","arguments": {"inputs": [{"name": "current_initial_value","description": "电流的初始值"}],"outputs": []}},{"name": "read_temperature","description": "读取设备当前的温度值","arguments": {"inputs": [],"outputs": [{"name": "current_temperature","description": "当前的温度值"}]}},{"name": "reset","description": "复位设备到初始状态","arguments": {"inputs": [],"outputs": []}}]
}

构建工业4.0 管理壳信息模型

        同样地,我们根据《IDTA 02006-2-0 Digital Nameplate for Industrial Equipment》 规范构建了工业设备数字铭牌的JSON 模板,生成了一个锅炉的数字铭牌:

JSON 模板

{"submodelId": "urn:company:submodel:nameplate","submodelName": "namepalte","description": "the name plate","semanticId": "http://www.example.com/nameplate","globalAssetId": "urn:company:asset:67890","ManufacturerName": "legally valid designation of the natural or judicial person which is directly responsible for the design, production, packaging and labeling of a product in respect to its being brought into circulation","ManufacturerProductDesignation": "Short description of the product ","ContactInformation": {"Street":"street name and house number","Zipcode":"ZIP code of address","CityTown":"town or city","NationalCode":"code of a country","Phone":{},"Fax":{},"Email":{},"IPCommunication":{}},"ManufacturerProductRoot": "Top level of a 3 level manufacturer specific product hierarchy","ManufacturerProductType": "Characteristic to differentiate between different products of a product family or special variants","OrderCodeOfManufacturer": "By manufactures issued unique combination of numbers and letters used to identify the device for ordering","ProductArticleNumberOfManufacturer": "unique product identifier of the manufacturer","SerialNumber": "unique combination of numbers and letters used to identify the device once it has been manufactured","YearOfConstruction": "Date from which the production and / or development process is completed or from which a service is provided completely","HardwareVersion": "Version of the hardware supplied with the device","FirmwareVersion": "Version of the firmware supplied with the device","SoftwareVersion": "Version of the software used by the device","CountryOfOrigin": "Country where the product was manufactured","CompanyLogo": "A graphic mark used to represent a company","Markings": {"MarkingName":"common name of the marking","DesignationOfCertificateOrApproval":"alphanumeric character sequence identifying a certificate or approva","IssueDate":"Date, at which the specified certificate is issued","ExpiryDate":"Date, at which the specified certificate expires ","MarkingFile":"conformity symbol of the marking","MarkingAdditionalText":"where applicable, additional information on the marking in plain text, e.g. the ID-number of the notified body involved in the conformity process","ExplosionSafeties":{"ExplosionSafety":{"DesignationOfCertificateproval":"alphanumeric character sequence identifying a certificate or approval","TypeOfApproval":"classification according to the standard or directive to which the approval applies","ApprovalAgencyTestingAgency":"certificates and approvals pertaining to general usage and compliance with constructional standards and directives","TypeOfProtection":"classification of an explosion protection according to the specific measures applied to avoid ignition of a surrounding explosive atmosphere","RatedInsulationVoltage":"from the manufacturer for the capital assets limited isolation with given(indicated) operating conditions","InstructionsControlDrawing":"designation used to uniquely identify a control/reference drawing stored in a file system","SpecificConditionsForUse":"","IncompleteDevice":"","AmbientConditions":{"DeviceCategory":"category of device in accordance with directive","EquipmentProtectionLeve":"part of a hazardous area classification system indicating the likelihood of the existence of a classified hazard","RegionalSpecificMarking":"Marking used only in specific regions","TypeOfProtection":"","ExplosionGroup":"","MinimumAmbientTemperature":"","MaxAmbientTemperature":"","MaxSurfaceTemperatureForDustProof":"","TemperatureClass":""},"ProcessConditions":{"DeviceCategory":"","EquipmentProtectionLeve":"","RegionalSpecificMarking":"","TypeOfProtection":"","ExplosionGroup":"","LowerLimitingValueOfProcessTemperature":"","UpperLimitingValueOfProcessTemperature":"","MaxSurfaceTemperatureForDustProof":"","TemperatureClass":""},"ExternalElectricalCircuit":{"DesignationOfElectricalTerminal":"","TypeOfProtection":"","EquipmentProtectionLevel":"","ExplosionGroup":"","Characteristics":"","Fisco":"","TwoWISE":"","SafetyRelatedPropertiesForPassiveBehaviour":{"MaxInputPower":"","MaxInputVoltage":"","MaxInputCurrent":"","MaxInternalCapacitance":"","MaxInternalInductance":"",},"SafetyRelatedPropertiesForActiveBehaviour":{"MaxOutputPower":"","MaxOutputVoltage":"","MaxOutputCurrent":"","MaxExternalCapacitance":"","MaxExternalInductance":"","MaxExternalInductanceResistanceRatio":"",}}}}},"AssetSpecificProperties": "Group of properties that are listed on the asset's nameplate and are grouped based on guidelines",
}

将该文件以PDF 格式上传给KIMI。然后开始对话 

KIMI 的会话

“你是一个工业4.0 专家,请构建一个锅炉的数字铭牌的子管理壳模型”

输出

{"submodelId": "urn:company:submodel:nameplate:boiler","submodelName": "Boiler Nameplate","description": "Digital nameplate for industrial boiler","semanticId": "http://www.example.com/boiler-nameplate","globalAssetId": "urn:company:asset:boiler123","ManufacturerName": "ABC Boiler Systems Ltd.","ManufacturerProductDesignation": "Industrial Steam Boiler","ContactInformation": {"Street": "123 Industrial Park Road","Zipcode": "12345","CityTown": "Metropolis City","NationalCode": "US","Phone": "555-1234","Fax": "555-5678","Email": "info@abcboiler.com","IPCommunication": {"IP": "192.168.1.10","Port": "80"}},"ManufacturerProductRoot": "Boilers","ManufacturerProductType": "Steam Boiler","OrderCodeOfManufacturer": "BTL-100-S","ProductArticleNumberOfManufacturer": "BTL100S-001","SerialNumber": "SN2023040123456","YearOfConstruction": "2023","HardwareVersion": "HW1.0","FirmwareVersion": "FW1.0","SoftwareVersion": "SW1.0","CountryOfOrigin": "USA","CompanyLogo": "http://www.abcboiler.com/logo.png","Markings": {"MarkingName": "CE Mark","DesignationOfCertificateOrApproval": "CE123456","IssueDate": "2023-01-01","ExpiryDate": "2026-01-01","MarkingFile": "http://www.abcboiler.com/cert/CE123456.png","MarkingAdditionalText": "Notified Body ID: NB789"},"ExplosionSafeties": {// 省略了详细内容,根据实际安全标准和认证进行填充},"AssetSpecificProperties": {"BoilerType": "Fire-Tube","FuelType": "Natural Gas","OutputCapacity": "1000 kg/h","WorkingPressure": "15 bar","SafetyValveRating": "16 bar","Efficiency": "85%","ControlSystem": "Automatic with Remote Monitoring"}
}

实验-2 构建反应釜的数字铭牌

KIMI 会话

“你是一个工业4.0 专家,请构建一个反应釜的数字铭牌的子管理壳模型”

回答

{"submodelId": "urn:company:submodel:nameplate:reactor","submodelName": "Reactor Nameplate","description": "Digital nameplate containing key information about the reactor","semanticId": "http://www.example.com/nameplate#reactor","globalAssetId": "urn:company:asset:reactor456","ManufacturerName": "Chemical Processing Inc.","ManufacturerProductDesignation": "Stainless Steel Reaction Vessel","ContactInformation": {"Street": "200 Chemical Road","Zipcode": "54321","CityTown": "Industrial City","NationalCode": "DE","Phone": {"countryCode": "49","areaCode": "69","number": "123-456-789"},"Fax": {"countryCode": "49","areaCode": "69","number": "123-456-098"},"Email": "info@chemicalprocessing.com","IPCommunication": {"IP": "192.168.1.20","Protocol": "HTTPS"}},"ManufacturerProductRoot": "Reaction Vessels","ManufacturerProductType": "Agitated Reactor","OrderCodeOfManufacturer": "CPI-RXV-200","ProductArticleNumberOfManufacturer": "ART-2002","SerialNumber": "SN2023000567","YearOfConstruction": "2023","HardwareVersion": "HWv1.2","FirmwareVersion": "FWv1.1","SoftwareVersion": "SWv2.2","CountryOfOrigin": "Germany","CompanyLogo": "http://www.chemicalprocessing.com/logo.png","Markings": {"MarkingName": "Pressure Vessel Certification","DesignationOfCertificateOrApproval": "PVC-2023-789","IssueDate": "2023-02-10","ExpiryDate": "2026-02-10","MarkingFile": "http://www.chemicalprocessing.com/cert/PVC-2023-789.png","MarkingAdditionalText": "Certification Body: Pressure Vessel Certifiers Ltd."},"AssetSpecificProperties": {"VesselType": "Stainless Steel Reactor","VolumeCapacity": "2000 Liters","WorkingPressure": "10 bar","TemperatureRange": "-20°C to 200°C","AgitationSpeed": "0 to 500 RPM","HeatingMethod": "Electric","MaterialOfConstruction": "304 Stainless Steel","DesignCode": "ASME Section VIII, Div. 1","SafetyFeatures": "Pressure relief valve, temperature control system"}
}

实验表明,我们可以根据标准和规范直接生成各种模型。 构建OPCUA 及其配套规范也是可行的。

结论

下一步我们的工作:

  • 依据OPC UA 和I4.0 AAS 规范构建更多的产品模型的模板
  • 收集产品的规格书(datasheet)

   根据产品的datasheet 直接生成产品信息模型,是LLM 擅长的工作。它将对开放自动化系统产生深远的影响。在这之前,仍然有许多基础工作需要完成。没有数据基础,贸然推广应用收到惊艳的 效果。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/319729.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【CV-CUDA实战】使用Python+TensorRT+CVCUDA优化YOLOv8

目录 什么是CV-CUDA环境准备准备CV-CUDA静态库解压添加至变量将PyBind静态库复制到env下算子设计前处理算子 TensorRT模型加载后处理函数 完整代码输出演示为什么重新写了&#xff1f;结语 什么是CV-CUDA NVIDIA CV-CUDA™ 是一个开源项目&#xff0c;用于构建云规模人工智能 (…

cefsharp实现资源替换如网页背景、移除替换标签、html标识、执行javascript脚本学习笔记(含源码说明)

(一)实现测试(仅供学习参考) 1.1 目标系统页面(登录页)和登录后首页面中2处(一个替换一个移除) 1.2 实现后效果(使用cefsharp自定义浏览器实现以上功能) 1.3 登录后页面替换和移除 系统名称和一个功能菜单li (二)通过分析代码实现脚本编写 2.1 分开处理,设置了…

STM32中断之TIM定时器详解

系列文章目录 STM32单片机系列专栏 C语言术语和结构总结专栏 文章目录 1. TIM简述 2. 定时器类型 2.1 基本定时器 2.2 通用定时器 2.3 高级定时器 3. 定时中断 4. 代码示例1 5. 代码示例2 1. TIM简述 定时器的基本功能&#xff1a;定时器可以在预定的时间间隔内产生周…

网络安全之弱口令与命令爆破(中篇)(技术进阶)

目录 一&#xff0c;什么是弱口令&#xff1f; 二&#xff0c;为什么会产生弱口令呢&#xff1f; 三&#xff0c;字典的生成 四&#xff0c;使用Burpsuite工具验证码爆破 总结 笔记改错 一&#xff0c;什么是弱口令&#xff1f; 弱口令就是容易被人们所能猜到的密码呗&a…

基于LLama3、Langchain,Chroma 构建RAG

概要&#xff1a; 使用Llama3 Langchain和ChromaDB创建一个检索增强生成&#xff08;RAG&#xff09;系统。这将允许我们询问有关我们的文档&#xff08;未包含在训练数据中&#xff09;的问题&#xff0c;而无需对大型语言模型&#xff08;LLM&#xff09;进行微调。在使用RA…

mysql 指定根目录 迁移根目录

mysql 指定根目录 迁移根目录 1、问题描述2、问题分析3、解决方法3.1、初始化mysql前就手动指定mysql根目录为一个大的分区(支持动态扩容)&#xff0c;事前就根本上解决mysql根目录空间不够问题3.1.0、方法思路3.1.1、卸载mariadb3.1.2、下载Mysql安装包3.1.3、安装Mysql 8.353…

jupyter notebook使用与本地位置设置

本地安装好Anaconda之后&#xff0c;自带的有Jupter notebook。 使用jupyter notebook 使用jupyter notebook时&#xff0c;可以直接打开或者搜索打开&#xff1a; 打开后&#xff0c;我们生成的或者编辑的一些文件&#xff0c;都可以看到&#xff0c;如下&#xff1a; j…

学习STM32第二十天

低功耗编程 一、修改主频 STM32F4xx系列主频为168MHz&#xff0c;当板载8MHz晶振时&#xff0c;系统时钟HCLK满足公式 H C L K H S E P L L N P L L M P L L P HCLK \frac{HSE \times PLLN}{PLLM \times PLLP} HCLKPLLMPLLPHSEPLLN​&#xff0c;在文件stm32f4xx.h中可修…

uniapp 自定义相机插件(组件版、缩放、裁剪)组件 Ba-CameraView

自定义相机插件&#xff08;组件版、缩放、裁剪&#xff09; Ba-CameraView 简介&#xff08;下载地址&#xff09; Ba-CameraView 是一款自定义相机拍照组件&#xff0c;支持任意界面&#xff0c;支持裁剪 支持任意自定义界面支持手势缩放支持裁剪&#xff08;手势拖动、比…

R语言中,查看经安装的包,查看已经加载的包,查看特定包是否已经安装,安装包,更新包,卸载包

创建于&#xff1a;2024.5.4 R语言中&#xff0c;查看经安装的包&#xff0c;查看已经加载的包&#xff0c;查看特定包是否已经安装&#xff0c;安装包&#xff0c;更新包&#xff0c;卸载包 文章目录 1. 查看经安装的包2. 查看已经加载的包3. 查看特定包是否已经安装4. 安装包…

【Cpp】类和对象#拷贝构造 赋值重载

标题&#xff1a;【Cpp】类和对象#拷贝构造 赋值重载 水墨不写bug 目录 &#xff08;一&#xff09;拷贝构造 &#xff08;二&#xff09;赋值重载 &#xff08;三&#xff09;浅拷贝与深拷贝 正文开始&#xff1a; &#xff08;一&#xff09;拷贝构造 拷贝构造函数&…

上位机开发PyQt(五)【Qt Designer】

PyQt5提供了一个可视化图形工具Qt Designer&#xff0c;文件名为designer.exe。如果在电脑上找不到&#xff0c;可以用如下命令进行安装&#xff1a; pip install PyQt5-tools 安装完毕后&#xff0c;可在如下目录找到此工具软件&#xff1a; %LOCALAPPDATA%\Programs\Python\…

Excel 批量获取sheet页名称,并创建超链接指向对应sheet页

参考资料 用GET.WORKBOOK函数实现excel批量生成带超链接目录且自动更新 目录 一. 需求二. 名称管理器 → 自定义获取sheet页名称函数三. 配合Index函数&#xff0c;获取所有的sheet页名称四. 添加超链接&#xff0c;指向对应的sheet页 一. 需求 ⏹有如下Excel表&#xff0c;需…

EPAI手绘建模APP资源管理和模型编辑器2

g) 矩形 图 26模型编辑器-矩形 i. 修改矩形的中心位置。 ii. 修改矩形的长度和宽度。 h) 正多边形 图 27模型编辑器-内接正多边形 图 28模型编辑器-外切正多边形 i. 修改正多边形的中心位置。 ii. 修改正多边形中心距离端点的长度。 iii. 修改正多边形的阶数。阶数为3&…

Day30:热帖排行、生成长图、将文件上传到云服务器、优化热门帖子列表、压力测试

热帖排行 不同的算分方式&#xff1a; 只存变化的帖子到redis中&#xff0c;每五分钟算一次分&#xff0c;定时任务 存redis 构建redis键 //统计帖子分数 //key:post:score -> value:postId public static String getPostScoreKey() {return PREFIX_POST SPLIT "…

练习题(2024/5/5)

1左叶子之和 给定二叉树的根节点 root &#xff0c;返回所有左叶子之和。 示例 1&#xff1a; 输入: root [3,9,20,null,null,15,7] 输出: 24 解释: 在这个二叉树中&#xff0c;有两个左叶子&#xff0c;分别是 9 和 15&#xff0c;所以返回 24示例 2: 输入: root [1] 输…

LeetCode 131 —— 分割回文串

阅读目录 1. 题目2. 解题思路3. 代码实现 1. 题目 2. 解题思路 首先&#xff0c;按照 LeetCode 5——最长回文子串 中的思路&#xff0c;我们先求出 d p dp dp&#xff0c;这样我们就知道了所有的子串是否是回文子串。 然后&#xff0c;我们进行一个 dfs 搜索&#xff0c;起…

5月4(信息差)

&#x1f384; HDMI ARC国产双精度浮点dsp杜比数码7.1声道解码AC3/dts/AAC环绕声光纤、同轴、USB输入解码板KC33C &#x1f30d; 国铁集团回应高铁票价将上涨 https://finance.eastmoney.com/a/202405043066422773.html ✨ 源代码管理平台GitLab发布人工智能编程助手DuoCha…

AI大模型探索之路-训练篇11:大语言模型Transformer库-Model组件实践

系列篇章&#x1f4a5; AI大模型探索之路-训练篇1&#xff1a;大语言模型微调基础认知 AI大模型探索之路-训练篇2&#xff1a;大语言模型预训练基础认知 AI大模型探索之路-训练篇3&#xff1a;大语言模型全景解读 AI大模型探索之路-训练篇4&#xff1a;大语言模型训练数据集概…

QT5带UI的常用控件

目录 新建工程&#xff0c;Qmainwindow带UI UI设计器 常用控件区 Buttons 按钮 containers 容器 控件属性区域 对象监视区 布局工具区 信号与槽区 简单例子1 放置一个按钮控件&#xff0c;改文本为发送&#xff0c;该按键为Button1&#xff1b; 按钮关联信号和…