建表
CREATE TABLE public.ellistest (id bigserial NOT NULL,"name" varchar null,primary key (id)
);插入数据 删除含有_线的数据
你会发现表被清空了
delete from ellistest where name like %_%原因 百分号(%)用于表示0、1或多个字符或数字。 下划线通配符…
论文引用 此篇阅读笔记与思考主要针对以下两篇论文:
Climbing towards NLU: On Meaning, Form, and Understanding in the Age of Data
Transformer Feed-Forward Layers Are Key-Value Memories
本文将讨论第一篇论文所引发的思考(第一篇论文的详细解…