BERTTokenizers 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package BERTTokenizers --version 1.0.5
                    
NuGet\Install-Package BERTTokenizers -Version 1.0.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BERTTokenizers" Version="1.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BERTTokenizers" Version="1.0.5" />
                    
Directory.Packages.props
<PackageReference Include="BERTTokenizers" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BERTTokenizers --version 1.0.5
                    
#r "nuget: BERTTokenizers, 1.0.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package BERTTokenizers@1.0.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BERTTokenizers&version=1.0.5
                    
Install as a Cake Addin
#tool nuget:?package=BERTTokenizers&version=1.0.5
                    
Install as a Cake Tool

BERTTokenizer for C# About The Project 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 an open-source implementation.

This repository contains tokenizers for the following models: · BERT Base · BERT Large · BERT German · BERT Multilingual · BERT Base Uncased · BERT Large Uncased

Built With .NET 5 Getting Started The project is available as a NuGet package.

Installation To add BERT Tokenizers to your project use dotnet command:

dotnet add BERTTokenizers Or install it with the package manager:

Install-Package BERTTokenizers Usage 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.InputIds, AttentionMask = encoded.AttentionMask, TypeIds = encoded.TokenTypeIds, };

For more examples, please refer to this Blog Post

See the open issues for a full list of proposed features (and known issues).

Contributing Contributions are what makes 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!

Fork the Project Create your Feature Branch (git checkout -b feature/AmazingFeature) Commit your Changes (git commit -m 'Add some AmazingFeature') Push to the Branch (git push origin feature/AmazingFeature) Open a Pull Request License Distributed under the MIT License. See LICENSE.txt for more information.

Contact Nikola M. Zivkovic n.zivkovic@rubikscode.net LinkedIn @NMZivkovic

Acknowledgments Gianluca Bertani - Performance Improvements

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net5.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on BERTTokenizers:

Package Downloads
Tsvetkova.NeuralNetworkAnswers

Package Description

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..

GitHub repositories (2)

Showing the top 2 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
Version Downloads Last Updated
1.2.0 101,315 9/9/2022
1.1.0 7,006 4/13/2022
1.0.6 8,686 3/11/2022
1.0.5 679 3/11/2022
1.0.4 622 3/11/2022
1.0.3 836 10/31/2021

Open-source project for BERT tokenizers that can be used in C#.