2018-09-04 02:05:57 +00:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
<TargetFramework > netstandard2.0</TargetFramework>
<Platforms > AnyCPU;x64</Platforms>
<GeneratePackageOnBuild > true</GeneratePackageOnBuild>
<Version > 0.2.4</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.NLP</RepositoryUrl>
<RepositoryType > Github</RepositoryType>
<PackageProjectUrl > https://github.com/Oceania2018/BotSharp.NLP</PackageProjectUrl>
<Authors > Haiping Chen, Bo Peng</Authors>
<Company > Personal</Company>
<PackageReleaseNotes > Fix entity end position issue.
Mark milestone 0.2.3. Tokenizer, POS Tagger, NER and Text Classifier modules can be used in production environments.</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>
2018-09-04 20:39:51 +00:00
<Configurations > Debug;Release;RASA NLU;DIALOGFLOW;RASA</Configurations>
2018-09-04 02:05:57 +00:00
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
<DefineConstants > DEBUG;TRACE</DefineConstants>
</PropertyGroup>
2018-09-04 20:39:51 +00:00
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='RASA|AnyCPU'" >
<DefineConstants > DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='RASA NLU|AnyCPU'" >
<DefineConstants > DEBUG;TRACE</DefineConstants>
</PropertyGroup>
2018-09-04 02:05:57 +00:00
<ItemGroup >
<ProjectReference Include= "..\BotSharp.Algorithm\BotSharp.Algorithm.csproj" />
</ItemGroup>
<ItemGroup >
<Compile Update= "NER\README.cs" >
<SubType > Code</SubType>
</Compile>
</ItemGroup>
</Project>