56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Version>0.3.0</Version>
|
|
<Description>Botsharp.NLP is a set of tools for building C# programs to work with human language data. It can be used in common tasks like POS, NER and text classification in the NLP or NLU field.
|
|
|
|
BotSharp.NLP has implemented below machine learning algorithms:
|
|
|
|
Conditional Random Field (CRF)
|
|
Support Vector Machine (SVM)
|
|
N-Gram Tagger
|
|
Regex Tokenizer
|
|
Naive Bayes Classifier</Description>
|
|
<Copyright>MIT</Copyright>
|
|
<RepositoryUrl>https://github.com/Oceania2018/BotSharp</RepositoryUrl>
|
|
<RepositoryType>Github</RepositoryType>
|
|
<PackageProjectUrl>https://github.com/Oceania2018/BotSharp</PackageProjectUrl>
|
|
<Authors>Haiping Chen, Bo Peng</Authors>
|
|
<Company>Personal</Company>
|
|
<PackageReleaseNotes>Added Penn Treebank tokenize standard.</PackageReleaseNotes>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/Oceania2018/BotSharp/master/BotSharp.WebHost/wwwroot/images/BotSharp.png</PackageIconUrl>
|
|
<PackageTags>BotSharp, NLP, NLU, POS, NER, LSTM, CRF, SVM, Tagger, NaiveBayes</PackageTags>
|
|
<Configurations>Debug;Release;RASA NLU;DIALOGFLOW;RASA</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RASA|AnyCPU'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RASA NLU|AnyCPU'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BotSharp.Algorithm\BotSharp.Algorithm.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="NER\README.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|