![]() |
VOOZH | about |
dotnet add package BERTTokenizers --version 1.2.0
NuGet\Install-Package BERTTokenizers -Version 1.2.0
<PackageReference Include="BERTTokenizers" Version="1.2.0" />
<PackageVersion Include="BERTTokenizers" Version="1.2.0" />Directory.Packages.props
<PackageReference Include="BERTTokenizers" />Project file
paket add BERTTokenizers --version 1.2.0
#r "nuget: BERTTokenizers, 1.2.0"
#:package BERTTokenizers@1.2.0
#addin nuget:?package=BERTTokenizers&version=1.2.0Install as a Cake Addin
#tool nuget:?package=BERTTokenizers&version=1.2.0Install as a Cake Tool
<div id="top"></div>
👁 Donate
👁 Contributors
👁 Forks
👁 Stargazers
👁 Issues
👁 MIT License
👁 LinkedIn
<br /> <div align="center"> <a href="https://github.com/NMZivkovic/BertTokenizers"> <img src="https://github.com/NMZivkovic/BertTokenizers/blob/master/src/Assets/logo.png?raw=true" alt="Logo" width="80" height="80"> </a>
<h3 align="center">BERTTokenizer for C#</h3>
<p align="center"> Source Code of NuGet package for tokenizing sentences and creating input for BERT Models. <br /> · <a href="https://github.com/NMZivkovic/BertTokenizers/issues">Report Bug</a> · <a href="https://github.com/NMZivkovic/BertTokenizers/issues">Request Feature</a> </p> </div>
<details> <summary>Table of Contents</summary> <ol> <li> <a href="#about-the-project">About The Project</a> <ul> <li><a href="#built-with">Built With</a></li> </ul> </li> <li> <a href="#getting-started">Getting Started</a> <ul> <li><a href="#prerequisites">Prerequisites</a></li> <li><a href="#installation">Installation</a></li> </ul> </li> <li><a href="#usage">Usage</a></li> <li><a href="#license">License</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#acknowledgments">Acknowledgments</a></li> </ol> </details>
While working with BERT Models from Huggingface in combination with ML.NET, I stumbled upon several challenges. I documented them in here.</br> However, the biggest challenge by far was that I needed to implement my own tokenizer and pair them with the correct vocabulary. So, I decided to extend it and publish my implementation as a NuGet package and an open-source project. More info about this project can be found in this blog post. </br>
This repository contains tokenizers for following models:<br /> · BERT Base<br /> · BERT Large<br /> · BERT German<br /> · BERT Multilingual<br /> · BERT Base Uncased<br /> · BERT Large Uncased<br />
There are also clases using which you can upload your own vocabulary.
<p align="right">(<a href="#top">back to top</a>)</p>
<p align="right">(<a href="#top">back to top</a>)</p>
The project is available as NuGet package.
To add BERT Tokenizers to your project use dotnet command:
dotnet add package BERTTokenizers
</br> Or install it with package manager:
Install-Package BERTTokenizers
For example, you want to use Huggingface BERT Base Model whose input is defined like this:
public class BertInput
{
[VectorType(1, 256)]
[ColumnName("input_ids")]
public long[] InputIds { get; set; }
[VectorType(1, 256)]
[ColumnName("attention_mask")]
public long[] AttentionMask { get; set; }
[VectorType(1, 256)]
[ColumnName("token_type_ids")]
public long[] TypeIds { get; set; }
}
For this you need to encode sentences like this:
var sentence = "I love you";
var tokenizer = new BertBaseTokenizer();
var encoded = tokenizer.Encode(256, sentence);
var bertInput = new BertInput()
{
InputIds = encoded.Select(t => t.InputIds).ToArray(),
AttentionMask = encoded.Select(t => t.AttentionMask).ToArray(),
TypeIds = encoded.Select(t => t.TokenTypeIds).ToArray()
};
For more examples, please refer to this Blog Post
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)<p align="right">(<a href="#top">back to top</a>)</p>
Distributed under the MIT License. See LICENSE.txt for more information.
<p align="right">(<a href="#top">back to top</a>)</p>
Nikola M. Zivkovic</br> n.zivkovic@rubikscode.net</br> LinkedIn</br> @NMZivkovic</br>
<p align="right">(<a href="#top">back to top</a>)</p>
<p align="right">(<a href="#top">back to top</a>)</p>
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 is compatible. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 4 NuGet packages that depend on BERTTokenizers:
| Package | Downloads |
|---|---|
|
Tsvetkova.NeuralNetworkAnswers
Package Description |
|
|
AIGuiders.HybridCodebaseIndex.Core
Гибридный индекс кодовой базы: SQLite FTS5, опционально vec/эмбеддинги, сканер workspace. |
|
|
Vanya_Library
Package Description |
|
|
Serina.Ai.Engine
Serina Ai Engine based on Semantic Pipelines with advanced memory management using graph DB. Allows build flexible Ai Agents with skills memory and background worker.. |
Showing the top 3 popular GitHub repositories that depend on BERTTokenizers:
| Repository | Stars |
|---|---|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
|
unoplatform/Uno.Samples
A collection of code samples for the Uno Platform
|
|
| microsoft/ai-powered-notes-winui3-sample |
Open-source project for BERT tokenizers that can be used in C#.