博客专栏

EEPW首页>博客> 探索大语言模型在图学习上的潜力(附链接)

探索大语言模型在图学习上的潜力(附链接)

发布人:数据派THU 时间:2023-08-23 来源:工程师 发布文章

图片

论文****:https://arxiv.org/abs/2307.03393
代码地址https://github.com/CurryTang/Graph-LLM


图是一种非常重要的结构化数据,具有广阔的应用场景。在现实世界中,图的节点往往与某些文本形式的属性相关联。以电商场景下的商品图(OGBN-Products数据集)为例,每个节点代表了电商网站上的商品,而商品的介绍可以作为节点的对应属性。在图学习领域,相关工作常把这一类以文本作为节点属性的图称为文本属性图(Text-Attributed Graph, 以下简称为TAG)。TAG在图机器学习的研究中是非常常见的, 比如图学习中最常用的几个论文引用相关的数据集都属于TAG。除了图本身的结构信息以外,节点对应的文本属性也提供了重要的文本信息,因此需要同时兼顾图的结构信息、文本信息以及两者之间的相互关系。然而,在以往的研究过程中,大家往往会忽视文本信息的重要性。举例来说,像PYG与DGL这类常用库中提供的常用数据集(比如最经典的Cora数据集),都并不提供原始的文本属性,而只是提供了嵌入形式的词袋特征。在研究过程中,目前常用的 GNN 更多关注于对图的拓扑结构的建模,缺少了对节点属性的理解。


相比于之前的工作,本文想要研究如何更好地处理文本信息,以及不同的文本嵌入与GNN结合后如何影响下游任务的性能。要更好地处理文本信息,那目前最流行的工具便非大语言模型(LLM)莫属(本文考虑了BERT到GPT4这些在大规模语料上进行了预训练的语言模型,因此使用LLM来泛指这些模型)。相比于TF-IDF这类基于词袋模型的文本特征,LLM有以下这几点潜在的优势。


  • 首先,LLM具有上下文感知的能力,可以更好地处理同形不同意的单词(polysemous)。

  • 其次,通过在大规模语料上的预训练,LLM一般被认为有更强的语义理解能力,这点可以从其在各类NLP任务上卓越的性能体现出来。


考虑到LLM的多种多样性,本文的目标是针对不同种类的LLM设计出合适的框架。鉴于LLM与GNN的融合问题,本文把LLM首先分类为了嵌入可见与嵌入不可见两类。像ChatGPT这类只能通过接口进行交互的LLM就属于后者。其次,针对嵌入可见类的LLM,本文考虑三种范式:


  1. 以BERT为代表的基于encoder-only结构的预训练语言模型。这类模型一般需要在下游数据进行微调。

  2. 以Sentence-BERT为代表的句子嵌入模型,这类模型一般在第一类模型的基础上进行了进一步的有监督/无监督训练,不需要针对下游数据进行微调。本文也考虑了以Openai的text-ada-embedding为代表的商业嵌入模型。

  3. 以LLaMA为代表的开源decoder-only大模型,这类模型一般会比第一类模型有大得多的参数量。考虑到微调的成本与灾难性遗忘的存在,本文主要评测了未经微调的底座模型。


对于这些嵌入可见的大模型,可以首先用它们来生成文本嵌入,然后将文本嵌入作为GNN的初始特征从而将两类模型融合在一起。然而,对于嵌入不可见的ChatGPT等LLM,如何将它们强大的能力应用于图学习相关的任务便成为了一个挑战。


针对这些问题,本文提出了一种将LLM应用到图学习相关任务的框架,如下图1与图2所示。对于第一种模式LLMs-as-Enhancers,主要是利用大模型的能力对原有的节点属性进行增强,然后再输入到GNN模型之中来提升下游任务的性能。针对嵌入可见的LLM,采取特征级别的增强,然后采用层级或迭代式(GLEM, ICLR 2023)的优化方法将语言模型与GNN结合起来。对于嵌入不可见的LLM,采取文本级别的增强,通过LLM对原有的节点属性进行扩充。考虑到以ChatGPT为代表的LLM的零样本学习与推理能力,本文进一步探索了利用prompt的形式来表示图节点的属性与结构,然后利用大模型直接生成预测的模式,将这种范式称为LLMs-as-Predictors。


在实验部分,本文主要采用了节点分类这一任务作为研究对象,我们会在最后讨论这一选择的局限性,以及拓展到别的任务上的可能。接下来,顺延着论文中的结构,在这里简要分享一下各种模式下有趣的发现。


图片
图1.LLMs-as-Enhancers的示意图。对于嵌入可见的大语言模型,直接生成文本嵌入作为GNN的初始节点特征。对于嵌入不可见的大模型,设计prompt来增强原有的节点属性。
图片图2.LLMs-as-Predictors的示意图。对于嵌入不可见的大语言模型,尝试更进一步,直接通过设计prompt来让LLM输出最后的结果。


利用LLM进行特征增强:LLMs-as-Enhancers


首先,本文研究利用LLM生成文本嵌入,然后输入到GNN中的模式。在这一模式下,根据LLM是否嵌入可见,提出了特征级别的增强与文本级别的增强。针对特征级别的增强,进一步考虑了语言模型与GNN之间的优化过程,将其进一步细分为了级联式结构(cascading structure)与迭代式结构(iterative structure)。下面分别介绍两种增强方法。


图片

图3.LLMs-as-Enhancers的流程示意图。前两张对应了特征级别的增强,分别为级联式结构与迭代式结构。后一张对应了文本级别的增强。


特征级别的增强


对于特征级别的增强,本文考虑的主要是语言模型、GNN、以及优化方法三个因素。从语言模型上来说,本文考虑了以Deberta为代表的预训练语言模型、以Sentence-BERT为代表的开源句子嵌入模型、以text-ada-embedding-002为代表的商业嵌入模型,以及以LLaMA为代表的开源大模型。对于这些语言模型,本文主要从模型的种类以及模型的参数规模来考量其对下游任务的影响。


从GNN的角度来说,本文主要考虑GNN设计中的消息传递机制对下游任务的影响。本文主要选取了GCN,SAGE与GAT这两个比较有代表性的模型,针对OGB上的数据集,本文选取了目前排行榜上名列前茅的模型RevGAT与SAGN。本文也纳入了MLP对应的性能来考察原始嵌入的下游任务性能。


从优化方法的角度,本文主要考察了级联式结构与迭代式结构。


  • 对于级联式结构,本文考虑直接通过语言模型输出文本嵌入。对于那些规模较小可以进行微调的模型,本文考虑了基于文本的微调与基于结构的自监督训练(ICLR 2022, GIANT)。不管是哪种方式,最后会得到一个语言模型,然后利用它来生成文本嵌入。这一过程中,语言模型与GNN的训练是分开的。

  • 对于迭代式结构,本文主要考察GLEM方法(ICLR 2023),它使用EM和变分推断来对GNN和语言模型进行迭代式的共同训练。


在实验部分,本文选取了几个有代表性的常用TAG数据集,具体的实验设定可以参考我们的论文。接下来,首先展示这一部分的实验结果(鉴于空间有限,在这里展示了两个大图上的实验结果),然后简要讨论一些有意思的实验结果。


图片

图4.Arxiv与Products数据集上的实验结果,左边对应的是不同的语言模型,上方对应的是不同的GNN。黄绿红分别对应排名第一第二第三的组合。


从实验结果来看,有以下几个有意思的结论。


第一,GNN对不同的文本嵌入有截然不同的有效性。特别明显的一个例子发生在Products数据集上,以MLP作为分类器时,经过微调的预训练语言模型Deberta-base的嵌入要比TF-IDF的结果好很多。然而,当使用GNN模型后,两者的差异很小,特别是使用SAGN模型时TF-IDF的表现要更好。这一现象可能与GNN的过光滑、过相关性有关,但目前还没有比较完整的解释,因此也是一个有意思的研究课题。


第二,使用句子向量模型作为编码器,然后与GNN级联起来,可以获得很好的下游任务性能。特别是在Arxiv这个数据集上,简单将Sentence-BERT与RevGAT级联起来,就可以达到接近GLEM的性能,甚至超过了做了自监督训练的GIANT。注意,这并不是因为用了一个参数量更大的语言模型,这里使用的Sentence-BERT为MiniLM版本,甚至比GIANT使用的BERT参数量更小。这里可能的一个原因是基于Natural Language Inference(NLI)这个任务训练的Sentence-BERT提供了隐式的结构信息,从形式上来说NLI与link prediction的形式也有一些相似。当然,这还只是非常初步的猜想,具体的结论还需要进一步探究。另外,从这一结果也给了一些启发,比如考虑图上的预训练模型时,能不能直接预训练一个语言模型,通过语言模型预训练更加成熟的解决方案,是不是还可以获得比预训练GNN更好的效果。同时,OpenAI提供的收费嵌入模型在节点分类这个任务上相比开源模型的提升很小。


第三,相比于未经微调的Deberta,LLaMA能够取得更好的结果,但是与句子嵌入这一类的模型还是有不小的差距。这说明相比于模型的参数大小,可能模型的种类是更重要的考量。对于Deberta,本文采用的是[CLS]作为句子向量。对于LLaMA,本文使用了langchain中的llama-cpp-embedding,它的实现中采用了[EOS]作为句子向量。在之前的相关研究中,已经有一些工作说明了为什么[CLS]在未经微调时性能很差,主要是由于其本身的各项异性,导致很差的可分性。经过实验,在高样本率的情况下,LLaMA生成的文本嵌入可以取得不错的下游任务性能,从侧面说明了模型的参数量增大可能可以一定程度上缓解这一问题。


文本级别的增强


对于特征级别的增强,本文得到了一些有意思的结果。但是,特征级别的增强还是需要语言模型是嵌入可见的。对于ChatGPT这类嵌入不可见的模型,可以使用文本级别的增强。对于这一部分,本文首先研究了一篇最近挂在Arxiv上的文章Explanation as features(TAPE),其思想是利用LLM生成的对于预测的解释作为增强的属性,并通过集成的方法在OGB Arxiv的榜单上排到了第一名的位置。另外,本文也提出了一种利用LLM进行知识增强的手段Knowledge-Enhanced Augmentation(KEA),其核心思想是把LLM作为知识库,发掘出文本中与知识相关的关键信息,然后生成更为详尽的解释,主要是为了不足参数量较小的语言模型本身知识信息的不足。两种模型的示意图如下所示。


图片

图5.文本级别增强的示意图

图片图6.TAPE的输出样例。增强后的属性有三部分:原始属性TA,生成的解释E,以及伪标签P。


图片

图7.KEA的输出样例。增强后可以得到一个字典形式的关键词与对应解释的映射。本文尝试了两种方法来讲原始属性与增强属性拼接起来,第一种是直接在文本层面的拼接,一种是分别编码后进行集成,分别记为KEA-I与KEA-S。


为了测试两种方法的有效性,本文沿用了第一部分的实验设定。同时,考虑到使用LLM的成本,本文在Cora与Pubmed两个小图上进行了实验。对于LLM,我们选用了gpt-3.5-turbo,也就是大家所熟知的ChatGPT。首先,为了更好地理解如何进行文本级别的增强以及TAPE的有效性,我们针对TAPE进行了详细的消融实验。


图片

图8.TAPE的消融实验结果,TA表示原始特征,E表示LLM生成的预测与解释,P表示LLM生成的伪标签


在消融实验中,我们主要考虑了以下几个问题


  • TAPE的有效性主要来源于生成的解释E还是伪标签P

  • 用哪种语言模型来编码增强的属性是最合适的


从实验结果可以看到,伪标签非常依赖于LLM本身的zero shot预测能力(会在下一章详细讨论),在低样本率时,可能反而会拖累集成后的性能。因此,在后续的实验中,本文只使用原始属性TA与解释E。其次,句子编码相比于微调预训练模型,可以在低标注率下取得更好的效果,因此本文采用句子编码模型e5。除此以外,一个有趣的现象是在Pubmed数据集上,当使用了增强后的特征,基于微调的方法可以取得非常好的性能。一种可能的解释是模型主要是学到了LLM预测结果的“捷径”(shortcut),因此TAPE的性能会与LLM本身的预测准确率高度相关。接下来,我们比较TAPE与KEA之间的有效性。


图片

图9.KEA与TAPE的比较


实验结果中,KEA与TAPE相比原始特征都有一定的提升。其中,KEA在Cora上可以取得更好的效果,而TAPE在Pubmed上更为有效。经过下一章的讨论后,会发现这与LLM在Pubmed上本身就有良好的预测性能有关。相比于TAPE,由于KEA不依赖LLM的预测,所以在不同数据集上的表现会更稳定一些。超越这两个数据集之外,这种文本级别的增强还有更多的应用场景。像BERT或者T5这一类比较小的预训练语言模型,往往不具备ChatGPT级别的推理能力,同时也没有办法像ChatGPT那样对不同领域的诸如代码、格式化文本有良好的理解能力。因此,在涉及到这些场景的问题时,可以通过ChatGPT这类大模型对原有的内容进行转换。在转换过后的数据上训练一个较小的模型可以有更快的推理速度与更低的推理成本。同时,如果本身也有一定量的标注样本,通过微调的方式会比上下文学习更好地掌握数据集中的一些个性化信息。


利用LLM进行预测: LLMs-as-Predictors


在这一部分,本文进一步考虑能否抛弃GNN,通过设计prompt来让LLM生成有效的预测。由于本文主要考虑的是节点分类任务,因此一个简单的基线是把节点分类看作是文本分类任务来处理。基于这个想法,本文首先设计了一些简单的prompt来测试LLM在不使用任何图结构的情况下能有多少性能。本文主要考虑了zero shot, few shot,并且测试了使用思维链Chain of thought的效果。


图片

图10.不考虑图结构信息的Prompt设计


实验结果如下图所示。LLM在不同的数据集上的性能差异非常大。在Pubmed数据集上,可以看到LLM在zero shot情况下的性能甚至超过了GNN。而在Cora,Arxiv等数据集上,又与GNN有较大的差距。注意,对于这里的GNN,在Cora,CiteSeer,Pubmed上,每一类有20个样本被选为训练集,而Arxiv与Products数据集上有更多的训练样本。相比之下,LLM的预测是基于零样本或者少样本的,而GNN并不具备零样本学习的能力,在少样本的情况下性能也会很差。当然,输入长度的限制也使得LLM无法囊括更多的上下文样本。


图片

图11.不考虑图结构信息的Prompt结果


通过对实验结果进行分析,在某些情况下LLM预测错的结果也是比较合理的。一个例子如图12所示。可以看到,很多论文本身也是交叉领域的,因此预测时LLM通过自身的常识性信息进行推理,有时并不能与标注的偏好匹配到一起。这也是值得思考的问题:这种单标签的设定是合理的吗?


图片图12.合理的错误


此外,在Arxiv数据集上LLM的表现最差,这与TAPE中的结论并不一致,因此需要比较一下两者的prompt有什么差异。TAPE使用的prompt如下所示。


Abstract: n Title: n Question: Which arXiv CS sub-categorydoes this paper belong to? Give 5 likely arXiv CS sub-categories as a comma-separated list ordered from most to least likely, in the form “cs.XX”, and provide your reasoning. n n Answer: </blockquote><p><br></p><p>有意思的是,TAPE甚至都没有在prompt中指明数据集中存在哪些类别,而是直接利用了LLM中存在的关于arxiv的知识信息。奇怪的是,通过这个小变化,LLM预测的性能有巨大的改变,这不禁让人怀疑与本身测试集标签泄漏有关。作为高质量的语料,arxiv上的数据大概率是被包含在了各种LLM的预训练之中,而TAPE的prompt可能使得LLM可以更好地回忆起这些预训练语料。这提醒我们需要重新思考评估的合理性,因为这时的准确率可能反映的并不是prompt的好坏与语言模型的能力,而仅仅只是LLM的记忆问题。以上两个问题都与数据集的评估有关,是非常有价值的未来方向。</p><p><br></p><p>进一步地,本文也考虑了能否在prompt中通过文本的形式把结构信息也包含进来。本文测试了几种方式来在prompt中表示结构化的信息。具体地,我们尝试了使用自然语言“连接”来表示边关系以及通过总结周围邻居节点的信息来隐式表达边关系。</p><p><br></p><p>结果表明,以下这种隐式表达的方式最为有效。</p><p><br></p> <blockquote> Paper:<paper content> <br>NeighborSummary:<Neighborsummary> <br>Instruction:<Task instruction> </blockquote><p><br></p><p>具体来说,模仿GNN的思路,对二阶邻居节点进行采样,然后将对应的文本内容输入到LLM中,让其进行一个总结,作为结构相关信息,一个样例如图13所示。</p><p><br></p><p></p><img class="rich_pages wxw-img" src="http://editerupload.eepw.com.cn/fetch/202308/36bbb11e48e814bbf45fdd3d04ae6065.png" alt="图片">图13.利用LLM进行总结的prompt示例<p></p><p><br></p><p>本文在几个数据集上测试了prompt的有效性,结果如图14所示。在除了Pubmed以外的其他四个数据集上,都可以相对不考虑结构的情况获得一定的提升,反映了方法的有效性。进一步地,本文分析了这个prompt为什么在Pubmed数据集上失效。</p><p><br></p><p><img class="rich_pages wxw-img" src="http://editerupload.eepw.com.cn/fetch/202308/b495d4a089053f572bb44a6f71a6a8d4.png" alt="图片"></p><p>图14.考虑图结构信息的Prompt结果</p><p><br></p><p>在Pubmed数据集上,很多情况下样本的标注会直接出现在样本的文本属性中。一个例子如下所示。由于这个特性的存在,想要在Pubmed数据集上取得比较好的结果,可以通过学习到这种“捷径”,而LLM在此数据集上特别好的表现可能也正源于此。在这种情况下,如果加上总结后的邻居信息,可能反而会使得LLM更难捕捉到这种“捷径”信息,因此性能会下降。</p><p><br></p> <blockquote> <p>Title: Predictive power of sequential measures of albuminuria for progression to ESRD or death in Pima Indians with type 2 diabetes. ... (content omitted here)<br>Ground truth label: Diabetes Mellitus Type 2</p> </blockquote><p><br></p><p>进一步地,在一些邻居与本身标签不同的异配(heterophilous)点上,LLM同GNN一样会受到邻居信息的干扰,从而输出错误的预测。</p><p><br></p><p><img class="rich_pages wxw-img" src="http://editerupload.eepw.com.cn/fetch/202308/69364764296c15348c1aa686136e4124.png" alt="图片"></p>图15.邻居的异配性造成错误预测<p></p><p><br></p> <blockquote> GNN的异配性也是一个很有意思的研究方向,大家也可以参考我们的论文Demystifying Structural Disparity in Graph Neural Networks: Can One Size Fit All? </blockquote><p><br></p>案例研究:利用LLM生成标注<p><br></p><p>从上文的讨论中可以看到,在一些情况下LLM可以取得良好的零样本预测性能,这使得它有代替人工为样本生成标注的潜力。本文初步探索了利用LLM生成标注,然后用这些标注训练GNN的可能性。</p><p></p><img class="rich_pages wxw-img" src="http://editerupload.eepw.com.cn/fetch/202308/7b5e48779d13dee6002b0dec9eeee32b.png" alt="图片">图16.利用LLM生成标注训练GNN<p></p><p><br></p><p>针对这一问题,有两个需要研究的点</p><p><br></p> <ul class=" list-paddingleft-2" style="padding: 0px 0px 0px 1.2em; outline: 0px; max-width: 100%; color: rgba(0, 0, 0, 0.9); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; letter-spacing: 0.544px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); line-height: 1.5em; box-sizing: border-box !important; overflow-wrap: break-word !important;"> <li><p>如何根据图结构和属性选择图中重要的点,来使得标注的收益最大化,这与图上主动学习的设定类似</p></li> <li><p>如果估计LLM生成的标注质量,并且过滤错误的标注</p></li> </ul><br>讨论<p><br></p><p>最后,简要讨论一下本文的局限性,以及一些有意思的后续方向。首先,需要说明的是本文主要针对的还是节点分类这个任务,而这个pipeline要扩展到更多的图学习任务上还需要更多的研究,从这个角度来说标题或许也有一些overclaim。另外,也有一些场景下无法获取有效的节点属性。比如,金融交易网络中,很多情况下用户节点是匿名的,这时如何构造能够让LLM理解的有意义的prompt就成为了新的挑战。</p><p><br></p><p>其次,如何降低LLM的使用成本也是一个值得考虑的问题。在文中,讨论了利用LLM进行增强,而这种增强需要使用每个节点作为输入,如果有N个节点,那就需要与LLM有N次交互,有很高的使用成本。在实验过程中,我们也尝试了像Vicuna这类开源的模型,但是生成的内容质量相比ChatGPT还是相去甚远。另外,基于API对ChatGPT进行调用目前也无法批处理化,所以效率也很低。如何在保证性能的情况下降低成本并提升效率,也是值得思考的问题。</p><p><br></p><p>最后,一个重要的问题就是LLM的评估。在文中,已经讨论了可能存在的测试集泄漏问题以及单标注设定不合理的问题。要解决第一个问题,一个简单的想法是使用不在大模型预训练语料范围内的数据,但这也需要我们不断地更新数据集并且生成正确的人工标注。对于第二个问题,一个可能的解决办法是使用多标签(multi label)的设定。对于类似arxiv的论文分类数据集,可以通过arxiv本身的类别生成高质量的多标签标注,但对更一般的情况,如何生成正确的标注还是一个难以解决的问题。</p><p><br></p>参考文献<p></p>[1] Zhao J, Qu M, Li C, et al. Learning on large-scale text-attributed graphs via variational inference[J]. arXiv preprint arXiv:2210.14709, 2022.[2] Chien E, Chang W C, Hsieh C J, et al. Node feature extraction by self-supervised multi-scale neighborhood prediction[J]. arXiv preprint arXiv:2111.00064, 2021.[3] He X, Bresson X, Laurent T, et al. Explanations as Features: LLM-Based Features for Text-Attributed Graphs[J]. arXiv preprint arXiv:2305.19523, 2023.<p></p><p><br></p></span> <p style="color:#666; padding-top:30px;">*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。</p> <!--设计应用文章遮罩层BEGIN--> <div id="coverDiv" class="article_reg" style="width:100%;overflow:hidden;display:none;z-index:10;position:absolute;left:0;background:#fff;"> <center> <img src="https://webstorage.eepw.com.cn/images/display/reg.jpg" border="0" usemap="#Map"> <map name="Map" id="Map"><area shape="rect" coords="133,235,319,253" target="_blank" href="//m.amcfsurvey.com/passport/auth/register?url="><area shape="rect" coords="132,315,319,335" href="https://passport.eepw.com.cn/auth/login?url="></map> </center> </div> <!--设计应用文章遮罩层END--> <span class="hAd8"><br></span> </div> </article> <div class="clear"></div> <br> <div class="hAd6"> <!-- 文字链广告位:Afinal22 --> <!--script type="text/javascript">BAIDU_CLB_fillSlot("1000320");</script--> <div id="relA" style="width:auto;height:auto;"> <p> <!-- 广告位:Afinal22-0-650*50 --></p> <ul> <li> <!-- 广告位:Afinal22-2-650*30 --></li> <li> <!-- 广告位:Afinal22-3-650*30 --></li> <li> <!-- 广告位:Afinal22-4-650*30 --></li> <li> <!-- 广告位:Afinal22-5-650*30 --></li> <li> <!-- 广告位:Afinal22-6-650*30 --></li> <li> <!-- 广告位:Afinal22-7-650*30 --></li> <li> <!-- 广告位:Afinal22-8-650*30 --></li> </ul> <div class="clear"></div> </div> </div> <div class="hAd7"> <!-- 广告位:Afinal21 --> </div> <!--关键词begin--> <div class="keyWordShare"> <div class="keyWord"> <span>关键词:<em><a target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a></em></span> </div> <!--关键词end--> <div class="clear"></div> </div> <!-- 继续阅读--> <div class="clear"></div> <br> <!-- 相关文章--> <div class="relArtical"> <div class="title"> <h3>相关推荐</h3> </div> <ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/forum/thread/298191/1" target="_blank">瑞萨电子AI单元解决方案成功提高GE医疗(日本)日野工厂的生产力</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/forum/thread/298191/1">winni945</a> <span class="zz">| 2018-09-12</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/v/video/play/id/15103" target="_blank">2021春晚黑科技,火爆全网的\"打工牛\"是什么来头?</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/v/video/play/id/15103">视频</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/机器人">机器人</a> <span class="zz">| 2021-02-26</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/453868.htm" target="_blank">意法半导体推出NanoEdge AI免费部署服务,打破边缘人工智能应用障碍</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/embedded">嵌入式系统</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/意法半导体">意法半导体</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/NanoEdge AI">NanoEdge AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/边缘人工智能">边缘人工智能</a> <span class="zz">| 2023-12-13</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/forum/thread/229555/1" target="_blank">海联达(Aigale)Ai-HD1 无线全高清套件拆解</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/forum/thread/229555/1">zhuwei0710</a> <span class="zz">| 2013-04-28</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/share/share/download/id/384648" target="_blank">EEPW2018年3月刊(工业物联网)</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/share/share/download/id/384648">资源下载</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/工业物联网">工业物联网</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/AI">AI</a> <span class="zz">| 2018-03-12</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/191/cirid/85589" target="_blank">WTC-AI型太阳能热水器电路图</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/191/cirid/85589">设计方案</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/电子电路图,WTC-AI">电子电路图,WTC-AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/太阳能">太阳能</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/热水器电路">热水器电路</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/热水器">热水器</a> <span class="zz">| 2012-07-30</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/share/share/download/id/384832" target="_blank">EEPW2018年6月刊(5G)</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/share/share/download/id/384832">资源下载</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/5G">5G</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/AI">AI</a> <span class="zz">| 2018-06-11</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/453950.htm" target="_blank">AI算力芯片天下一分为四,中国实力渐显</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/smart">智能计算</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/算力">算力</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/大模型">大模型</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a> <span class="zz">| 2023-12-15</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/453979.htm" target="_blank">英特尔人工智能创新应用大赛正式启动,以AI PC促进生产力和娱乐体验飞跃</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/smart">智能计算</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/英特尔">英特尔</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/人工智能">人工智能</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/创新应用大赛">创新应用大赛</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI PC">AI PC</a> <span class="zz">| 2023-12-18</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/454030.htm" target="_blank">AI芯片领域,英伟达的对手们准备反击</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/smart">智能计算</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/英伟达">英伟达</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a> <span class="zz">| 2023-12-19</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/454070.htm" target="_blank">AI与Intel 4加持 英特尔第五代至强与酷睿Ultra双箭齐发</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/consume">消费电子</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/Intel4">Intel4</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/英特尔">英特尔</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/第五代至强">第五代至强</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/酷睿Ultra">酷睿Ultra</a> <span class="zz">| 2023-12-19</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"><a class="tp" href="//m.amcfsurvey.com/v/video/play/id/14550" target="_blank"><img src="http://editerupload.eepw.com.cn/201810/3f760d2cd61f25127b96d92299fa8d9d.jpg" alt="AI驱动的嵌入式声音和振动识别"></a> <div class="yb"> <div class="younr"> <a href="//m.amcfsurvey.com/v/video/play/id/14550" target="_blank">AI驱动的嵌入式声音和振动识别</a> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/v/video/play/id/14550">视频</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/ADI">ADI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/嵌入式">嵌入式</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/OtoSense">OtoSense</a> <span class="zz">| 2018-10-23</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/454023.htm" target="_blank">四大需求推动 封测厂迎春燕</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/eda">EDA/PCB</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/先进封测">先进封测</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/HPC">HPC</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/车用">车用</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/​ 封测">封测</a> <span class="zz">| 2023-12-18</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/forum/thread/228377/1" target="_blank">继上次海联达Ai-ap100拆机之电源改造</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/forum/thread/228377/1">zhuwei0710</a> <span class="zz">| 2013-04-03</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"><a class="tp" href="//m.amcfsurvey.com/v/video/play/id/15200" target="_blank"><img src="http://editerupload.eepw.com.cn/202106/ba301485f8e476bd5294a72a854eb01c.jpg" alt="“破局AI开发,释放边缘算力开发者访谈”,干货满满!"></a> <div class="yb"> <div class="younr"> <a href="//m.amcfsurvey.com/v/video/play/id/15200" target="_blank">“破局AI开发,释放边缘算力开发者访谈”,干货满满!</a> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/v/video/play/id/15200">视频</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/intel">intel</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/OpenVINO">OpenVINO</a> <span class="zz">| 2021-06-10</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/forum/thread/298833/1" target="_blank">释说芯语16:硬科技:构建企业未来之路(附PPT)</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/forum/thread/298833/1">jackwang</a> <span class="zz">| 2018-10-22</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/share/share/download/id/384467" target="_blank">CSR8670CSR8675智能语音Alexa蓝牙方案开发</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/share/share/download/id/384467">资源下载</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/智能语音">智能语音</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/"></a> <span class="zz">| 2017-12-14</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/453902.htm" target="_blank">AIGC手机处理器与传统AP挥手告别</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/wireless">手机与无线通信</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/手机处理器">手机处理器</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AP">AP</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/"></a> <span class="zz">| 2023-12-14</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"><a class="tp" href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/84/cirid/75094" target="_blank"><img src="http://uphotos.eepw.com.cn/fetch/20120724/20118210223432.jpg" alt="WTC-AI太阳能热水器电路图"></a> <div class="yb"> <div class="younr"> <a href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/84/cirid/75094" target="_blank">WTC-AI太阳能热水器电路图</a> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/84/cirid/75094">设计方案</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/WTC-AI">WTC-AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/太阳能">太阳能</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/热水器">热水器</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/电路图">电路图</a> <span class="zz">| 2012-07-24</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/453814.htm" target="_blank">开源大模型超越 GPT-3.5!爆火 MoE 实测结果出炉,网友:OpenAI 越来越没护城河了</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/smart">智能计算</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/OpenAI">OpenAI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/ChatGPT">ChatGPT</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a> <span class="zz">| 2023-12-12</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"><a class="tp" href="//m.amcfsurvey.com/v/video/play/id/15485" target="_blank"><img src="http://editerupload.eepw.com.cn/202207/585feadc24a476998752d30a2ae78540.png" alt="如何快速搭建手写体识别演示系统"></a> <div class="yb"> <div class="younr"> <a href="//m.amcfsurvey.com/v/video/play/id/15485" target="_blank">如何快速搭建手写体识别演示系统</a> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/v/video/play/id/15485">视频</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/digikey">digikey</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/手写体识别">手写体识别</a> <span class="zz">| 2022-07-29</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/forum/thread/297700/1" target="_blank">人工智能是如何帮助阻止造假者的?</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/forum/thread/297700/1">谢丫丫</a> <span class="zz">| 2018-08-14</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"><a class="tp" href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/191/cirid/111956" target="_blank"><img src="http://uphotos.eepw.com.cn/fetch/20130116/17_9_25_0.jpg" alt="万家乐JSYZ5-AI燃气热水器电路图"></a> <div class="yb"> <div class="younr"> <a href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/191/cirid/111956" target="_blank">万家乐JSYZ5-AI燃气热水器电路图</a> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/circuit/cid/191/cirid/111956">设计方案</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/电路图">电路图</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/热水器">热水器</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/燃气">燃气</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/JSYZ5-AI">JSYZ5-AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/diagram/diagram/listbylabel/label/万家乐">万家乐</a> <span class="zz">| 2013-01-17</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/453927.htm" target="_blank">英特尔推出新的人工智能芯片以与Nvidia和AMD竞争</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/smart">智能计算</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/英特尔">英特尔</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/"></a> <span class="zz">| 2023-12-15</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/share/share/download/id/12825" target="_blank">iCAN-4017 AI功能模块</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/share/share/download/id/12825">资源下载</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/周立功单片机">周立功单片机</a> <a class="zz" target="_blank" href="https://share.eepw.com.cn/share/list/keyword/ 功能模块">功能模块</a> <a class="zz" target="_blank" href="https://share.eepw.com.cn/share/list/keyword/ iCAN-4017 AI">iCAN-4017 AI</a> <span class="zz">| 2007-03-30</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"><a class="tp" href="//m.amcfsurvey.com/v/video/play/id/15655" target="_blank"><img src="http://editerupload.eepw.com.cn/202304/e17aa750d8c3a8576e896eab2f9034bf.jpg" alt="大嘴业话-AI目前市场分析"></a> <div class="yb"> <div class="younr"> <a href="//m.amcfsurvey.com/v/video/play/id/15655" target="_blank">大嘴业话-AI目前市场分析</a> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/v/video/play/id/15655">视频</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/v/video/search/key/人工智能,AI,ChatGPT,互联网技术">人工智能,AI,ChatGPT,互联网技术</a> <span class="zz">| 2023-04-25</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/article/202312/453952.htm" target="_blank">2024智能制造展望:Industry 4.0、AI和自动化的发展</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/info/industry/special/control">工控自动化</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/news/listbylabel/label/自动化,工业,AI">自动化,工业,AI</a> <span class="zz">| 2023-12-15</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> <ul class="xgwz"> <li class="dg1"> <div class="yb-1"> <div class="younr-1"> <a href="//m.amcfsurvey.com/share/share/download/id/32138" target="_blank">电子元件培训教材</a> <div style="clear: both"></div> </div> <div class="yx"> <a class="fl" target="_blank" href="//m.amcfsurvey.com/share/share/download/id/32138">资源下载</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/NBA">NBA</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/电子元件识别">电子元件识别</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/电阻识别">电阻识别</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/电容识别">电容识别</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/AI">AI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/MI">MI</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/SMT">SMT</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/DIP">DIP</a> <a class="zz" target="_blank" href="//m.amcfsurvey.com/share/share/list/keyword/静电防护">静电防护</a> <span class="zz">| 2008-09-20</span> <div style="clear: both"></div> </div> </div> <div style="clear: both"></div></li> </ul> </ul> <!-- 上下篇文章--> <ul class="preNext"> <li><a href="//m.amcfsurvey.com/zhuanlan/320234.html" target="_blank" title="上一篇:千亿参数的大模型,需要多少算力?">上一篇:千亿参数的大模型,需要多少算力?</a></li> <li><a href="//m.amcfsurvey.com/zhuanlan/320236.html" target="_blank" title="下一篇:Arm:Neoverse系列高端处理器或将无法对中国出口!">下一篇:Arm:Neoverse系列高端处理器或将无法对中国出口!</a></li> </ul> </div> </section> <aside> <!-- 焦点上方广告 --> <div class="AD300x200"></div> <!-- 焦点上方广告 --> <!-- 在线研讨会 begin--> <!-- 在线研讨会 end--> <!-- (焦点)编辑推荐 begin--> <div class="editorRec"> <div class="title"> <h3>焦点</h3> <span><a href="//m.amcfsurvey.com/news" target="_blank">更多>></a></span> </div> <div class="content"> <ul id="editorRec"> <!-- 广告位:Afinal26 --> <!-- 广告位:Afinal27 --> <!-- 广告位:Afinal32 --> <!-- 广告位:Afinal33 --> </ul> </div> </div> <div class="AD300x200"> <!-- 广告位:Afinal34 --> </div> <!-- (焦点)编辑推荐end--> <div class="newVideo"> <div class="title"> <h3>推荐视频</h3> <span><span><a href="//m.amcfsurvey.com/v" target="_blank">更多>></a></span></span> </div> <div class="content"> <ul id="video"></ul> </div> </div> <!-- 视频下方广告位 --> <!-- 广告位:Afinal24 --> <br> <div class="AD300x200" id="newsnavmenu"> <!-- 广告位:Afinal25 --> </div> </aside> <div class="clear"></div> <div class="hAd3"> <!-- 广告位:Afinal30 --> </div> <!-- 技术专区 --> <style> .title_tech{margin-top:30px;clear:both;} .title_tech h2{float:left;font-size:20px;color:#000;font-weight:bold;text-shadow:1px 1px 1px #CCC;} .technology{margin:0 auto;margin-top:70px;height:170px;/*overflow:hidden;*/} .technology ul {padding:6px 10px; border-top:solid 1px #D9D9D9;} .technology ul li{float:left;width:140px;line-height:25px;text-align:left;} </style> <div class="title_tech"> <h2>技术专区</h2> </div> <div class="technology"> <ul> <li><a href="//m.amcfsurvey.com/tech/s/k/FPGA" title="FPGA" target="_blank">FPGA</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/DSP" title="DSP" target="_blank">DSP</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/MCU" title="MCU" target="_blank">MCU</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/示波器" title="示波器" target="_blank">示波器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/步进电机" title="步进电机" target="_blank">步进电机</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/Zigbee" title="Zigbee" target="_blank">Zigbee</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/LabVIEW" title="LabVIEW" target="_blank">LabVIEW</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/Arduino" title="Arduino" target="_blank">Arduino</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/RFID" title="RFID" target="_blank">RFID</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/NFC" title="NFC" target="_blank">NFC</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/STM32" title="STM32" target="_blank">STM32</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/Protel" title="Protel" target="_blank">Protel</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/GPS" title="GPS" target="_blank">GPS</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/MSP430" title="MSP430" target="_blank">MSP430</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/Multisim" title="Multisim" target="_blank">Multisim</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/滤波器" title="滤波器" target="_blank">滤波器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/CAN总线" title="CAN总线" target="_blank">CAN总线</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/开关电源" title="开关电源" target="_blank">开关电源</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/单片机" title="单片机" target="_blank">单片机</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/PCB" title="PCB" target="_blank">PCB</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/USB" title="USB" target="_blank">USB</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/ARM" title="ARM" target="_blank">ARM</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/CPLD" title="CPLD" target="_blank">CPLD</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/连接器" title="连接器" target="_blank">连接器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/MEMS" title="MEMS" target="_blank">MEMS</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/CMOS" title="CMOS" target="_blank">CMOS</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/MIPS" title="MIPS" target="_blank">MIPS</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/EMC" title="EMC" target="_blank">EMC</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/EDA" title="EDA" target="_blank">EDA</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/ROM" title="ROM" target="_blank">ROM</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/陀螺仪" title="陀螺仪" target="_blank">陀螺仪</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/VHDL" title="VHDL" target="_blank">VHDL</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/比较器" title="比较器" target="_blank">比较器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/Verilog" title="Verilog" target="_blank">Verilog</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/稳压电源" title="稳压电源" target="_blank">稳压电源</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/RAM" title="RAM" target="_blank">RAM</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/AVR" title="AVR" target="_blank">AVR</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/传感器" title="传感器" target="_blank">传感器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/可控硅" title="可控硅" target="_blank">可控硅</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/IGBT" title="IGBT" target="_blank">IGBT</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/嵌入式开发" title="嵌入式开发" target="_blank">嵌入式开发</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/逆变器" title="逆变器" target="_blank">逆变器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/Quartus" title="Quartus" target="_blank">Quartus</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/RS-232" title="RS-232" target="_blank">RS-232</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/Cyclone" title="Cyclone" target="_blank">Cyclone</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/电位器" title="电位器" target="_blank">电位器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/电机控制" title="电机控制" target="_blank">电机控制</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/蓝牙" title="蓝牙" target="_blank">蓝牙</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/PLC" title="PLC" target="_blank">PLC</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/PWM" title="PWM" target="_blank">PWM</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/汽车电子" title="汽车电子" target="_blank">汽车电子</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/转换器" title="转换器" target="_blank">转换器</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/电源管理" title="电源管理" target="_blank">电源管理</a></li> <li><a href="//m.amcfsurvey.com/tech/s/k/信号放大器" title="信号放大器" target="_blank">信号放大器</a></li> </ul> </div> <!-- 技术专区--> </div> <!--右下角广告代码--> <!--关键词广告--> <div id="imgdiv" style="display:none;position:absolute;border:#ccc 1px solid;width:150px;height:80px;line-height:140%;text-align:left;padding-left:5px;background:#fff;overflow:hidden;"></div> <!--左侧广告栏--> <div id="ad20161025" style="clear:both; z-index:10000; width:155px; position:fixed; bottom:0px; _position:absolute; _bottom:auto; _top:expression(eval(document.documentElement.scrollTop));"> <div style="text-align:right; font:12px/18px Arial, Helvetica, sans-serif, '宋体'; width:50px; background:#000; text-align:center; float:right;"> <a onclick="closed();" style="cursor:pointer;color:#fff;">关闭</a> </div> <a href="//m.amcfsurvey.com/event/action/2016IOT/index.htm" target="_blank"><img src="https://webstorage.eepw.com.cn/images/ad/2016IOT155x630.jpg"></a> </div> <link type="text/css" rel="stylesheet" href="https://webstorage.eepw.com.cn/css/2014/login/style/osx.css"> <footer> <div class="inner"> <dl class="techCh"> <dt> 技术频道 </dt> <dd> <a href="//m.amcfsurvey.com/info/industry/special/embedded" target="_blank">嵌入式</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/component" target="_blank">元件/连接器</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/power" target="_blank">电源管理</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/safety" target="_blank">安防电子</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/auto" target="_blank">汽车电子</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/eda" target="_blank">EDA与制造</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/consume" target="_blank">消费电子</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/control" target="_blank">工业电子</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/analog" target="_blank">模拟IC</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/medical" target="_blank">医疗电子</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/tm" target="_blank">测试测量</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/wireless" target="_blank">通信技术</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/led" target="_blank">光电显示</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/smart" target="_blank">智能计算</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/network" target="_blank">网络与存储</a> </dd> <dd> <a href="//m.amcfsurvey.com/info/industry/special/iot" target="_blank">物联网</a> </dd> </dl> <dl> <dt> 技术子站 </dt> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/38768" target="_blank">PI技术专区</a> </dd> <dd> <a href="//m.amcfsurvey.com/event/action/adi_video/index.html" target="_blank">ADI视频专区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/38503" target="_blank">ZYNQ技术社区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/mfmember/index/userid/42160" target="_blank">ADI技术专区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/41542" target="_blank">维博专区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/40407" target="_blank">贝能技术社区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/40398" target="_blank">Microchip资源技术社区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/40461" target="_blank">Fluke技术社区</a> </dd> <dd> <a href="//m.amcfsurvey.com/event/action/Microchip/index.html" target="_blank">Microchip视频技术社区</a> </dd> <dd> <a href="//m.amcfsurvey.com/xilinx/" target="_blank">赛灵思社区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/40907" target="_blank">IR iMotion 数字电机技术社区</a> </dd> <dd> <a href="//m.amcfsurvey.com/quark" target="_blank">英特尔Quark开发者俱乐部</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/41379" target="_blank">MultiSIM BLUE</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/41442" target="_blank">Andes专区</a> </dd> <dd> <a href="//m.amcfsurvey.com/ec/center/index/userid/42590" target="_blank">蔡司光学专栏</a> </dd> </dl> <style> .QRcode{float:right;padding-top:20px;} .QRcode ul li{float:right;padding-left:10px;width:90px;} .QRcode ul li span{display:block;margin-bottom:10px;height:30px;line-height:30px;text-align:center;background:#00C62A;color:#FFF;font-size:14px;} .QRcode ul li span.App{background:#2E8CEB} .QRcode ul li.cover{width:120px;text-align:center;} .QRcode ul li.cover img{margin-bottom:5px;} .QRcode ul li.cover a{color:#AFAFAF;} .QRcode ul li img{vertical-align:top; width:90px; } </style> <div class="QRcode"> <ul> <li class="cover"><a href="//m.amcfsurvey.com/event/form/fw/index.html" rel="nofollow" target="_blank" style="display:block;"><img src="https://webstorage.eepw.com.cn/css/2013/article/images/cover.png"></a><p><a href="//m.amcfsurvey.com/event/form/fw/index.html" target="_blank">免费专刊索阅</a></p></li> <li><span>微信公众号</span><img src="https://webstorage.eepw.com.cn/css/2013/article/images/wx.png"></li> </ul> </div> <div class="clear"></div> </div> <div class="copyright"> <div class="copyrightInner"> <span class="fontArial">Copyright © 《电子产品世界》</span> <a href="//m.amcfsurvey.com/event/company/about.html" rel="nofollow" target="_blank">关于我们</a> <a href="//m.amcfsurvey.com/event/company/contact.html" rel="nofollow" target="_blank">联系我们</a> <a href="//m.amcfsurvey.com/event/company/ad.html" rel="nofollow" target="_blank">广告服务</a> <a href="//m.amcfsurvey.com/job/" rel="nofollow" target="_blank">人才招聘</a> <a href="//m.amcfsurvey.com/company/link" target="_blank">友情链接</a> <a href="//m.amcfsurvey.com/event/action/mapNav/map.html" target="_blank">网站地图</a> </div> </div> </footer> <!--百度推送--> <!--百度推送--> <div style="display:none;"></div> <!--路障广告ad--> </body> </html>