Introduction to BertTiny and deployment of OpenVINO

1, Bert introduction bert is a language model technology applied in NLP field, and Transformer, Encoder and Decoder are its core technologies. The purpose of this blog is to teach you to get started bert quickly. 1.1 what problems can Bert solve 1. Combined with the context understanding semantics, it extracts all the referential relationshi ...

Added by oscar2 on Wed, 09 Mar 2022 11:15:44 +0200

Open source vector database -- milvus

Milvus is an open source vector similarity search engine, which supports the addition, deletion and modification of TB level vectors and near real-time query. It has the characteristics of high flexibility, stability, reliability and high-speed query. Milvus integrates widely used vector index libraries such as Faiss, NMSLIB and Annoy, and prov ...

Added by dibyendrah on Tue, 08 Mar 2022 16:49:49 +0200

Use jieba, forward maximum matching algorithm and backward maximum matching algorithm to segment words

Use jieba, forward maximum matching algorithm and backward maximum matching algorithm to segment words Today, we start word segmentation. I have sorted out some lines in Wong Kar Wai's films, with a total of 79 lines, which are from the more famous "east evil and West poison", "spring light and sudden release" and "Cho ...

Added by maverickminds on Tue, 08 Mar 2022 08:50:51 +0200

XCiT repeats the champion code - the accuracy exceeds the official_ Copy 1

Reprinted from AI Studio Project link https://aistudio.baidu.com/aistudio/projectdetail/3449604 XCiT: covariance image Quansi transformation network This is the fifth issue of the oar paper reproduction challenge< XCiT: Cross-Covariance Image Transformers >The champion code of GitHub is https://github.com/BrilliantYuKaimin/XCiT-PaddlePa ...

Added by jumphopper on Tue, 08 Mar 2022 03:47:55 +0200

Shandong innovation and Entrepreneurship Competition - grid event intelligent classification ERNIE online accuracy 0.74_ copy

Reprinted from AI Studio Project link https://aistudio.baidu.com/aistudio/projectdetail/3352265 Competition background Competition link: http://data.sd.gov.cn/cmpt/cmptDetail.html?id=67 Urban grid management is to divide the urban management area into unit grids according to certain standards. By strengthening the inspection of the cell gri ...

Added by JustGotAQuestion on Mon, 07 Mar 2022 02:45:31 +0200

Inherit the will of fire and play with fire in combination with key point detection~_ copy

Link from AI Studio project https://aistudio.baidu.com/aistudio/projectdetail/3537977 Big brother didn't lose! Will to inherit fire~ Elder brother, how can you lose? It's clearly that yiwozuo is playing tricks. Yiwozuo is not allowed to go! I'm huntingOn the way, I'm still a few fork s away. I can catch up with him and avenge my eldest bro ...

Added by vestax1984 on Sun, 06 Mar 2022 04:18:23 +0200

C + + singleton mode and thread safety

C + + singleton mode and thread safety The simplest singleton mode can be // single thread safe version class Singleton { public: static Singleton* GetInstance(int x = 0) { if (instance_ == NULL) { instance_ = new Singleton(x); } return instance_; } void Print() { ...

Added by sheen.andola on Sat, 05 Mar 2022 11:48:04 +0200

[AI talent Creation Camp phase II] PaddlePaddle+OpenVINO implementer_ Copy 1

PaddlePaddle+OpenVINO realize human-computer interaction Reprinted from AI Studio Project link https://aistudio.baidu.com/aistudio/projectdetail/3525813 Project display Project description   project reference from HandPose_x , the project is jointly used by paddepadde + openvino to open up the one-stop process of the project from train ...

Added by ccalzaretta on Sat, 05 Mar 2022 11:00:03 +0200

[paper reading notes 64] a unified generic framework for variant ner subtasks

1. Basic information subjectAuthor and unitsourceparticular yearA Unified Generative Framework for Various NER SubtasksQiu Xipeng group, Fudan UniversityACL2021 13 Citations, 70 References Paper link: https://arxiv.org/pdf/2106.01223.pdf Thesis Code: https://github.com/yhcc/BARTNER 2. Key points Research topicsProblem backgroundCore method ...

Added by kasitzboym on Thu, 03 Mar 2022 18:31:42 +0200

Understand LSTM in one article

1, Write in front This article introduces an improved version of RNN - LSTM on the basis of my other blog post "understanding RNN in one article" 2, LSTM In the practical application of RNN, we find that when the number of time steps is large or the time steps are small, the gradient of cyclic neural network is prone to attenuation ...

Added by sanstenarios on Thu, 03 Mar 2022 16:10:46 +0200