BotSharp/BotSharp.NLP/BotSharp.NLP.csproj

56 lines
2.3 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2018-09-06 04:45:09 +00:00
<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>
2018-09-06 04:45:09 +00:00
<RepositoryUrl>https://github.com/Oceania2018/BotSharp</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
2018-09-06 04:45:09 +00:00
<PackageProjectUrl>https://github.com/Oceania2018/BotSharp</PackageProjectUrl>
<Authors>Haiping Chen, Bo Peng</Authors>
<Company>Personal</Company>
2018-09-06 04:45:09 +00:00
<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>
2018-09-28 00:49:43 +00:00
<Configurations>Debug;Release;RASA NLU;DIALOGFLOW;RASA;ARTICULATE</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RASA|AnyCPU'">
<DefineConstants>RASA;DEBUG;TRACE</DefineConstants>
<OutputPath>bin\RASA</OutputPath>
</PropertyGroup>
2018-09-21 20:11:57 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DIALOGFLOW|AnyCPU'">
<DefineConstants>DEBUG;TRACE;DIALOGFLOW;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
2018-09-28 00:49:43 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ARTICULATE|AnyCPU'">
<DefineConstants>TRACE;ARTICULATE</DefineConstants>
</PropertyGroup>
2018-09-05 19:38:37 +00:00
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BotSharp.Algorithm\BotSharp.Algorithm.csproj" />
</ItemGroup>
</Project>