TaggingLibrary 0.6.0
dotnet add package TaggingLibrary --version 0.6.0
NuGet\Install-Package TaggingLibrary -Version 0.6.0
<PackageReference Include="TaggingLibrary" Version="0.6.0" />
paket add TaggingLibrary --version 0.6.0
#r "nuget: TaggingLibrary, 0.6.0"
// Install TaggingLibrary as a Cake Addin #addin nuget:?package=TaggingLibrary&version=0.6.0 // Install TaggingLibrary as a Cake Tool #tool nuget:?package=TaggingLibrary&version=0.6.0
TaggingLibrary
A library for providing tagging suggestions for documents, music, photos, etc.
Getting Started
PM> Install-Package TaggingLibrary
Create a set of tag rules (as a text file resource, for example):
animal [abstract]
mammal :: animal
dog & cat :: mammal
mammal -> hair
fur :: hair
Parse the tag rules and index the results:
using TaggingLibrary;
...
var parser = new TagRulesParser();
var rules = parser.Parse(Resources.TagRules);
var engine = new TagRuleEngine(rules);
Analyze a set of tags:
var currentTags = new[] { "cat" }; // If you are offended by cats, you can change this to "dog".
var analysis = engine.Analyze(currentTags);
Console.WriteLine($"Current Tags: {string.Join(", ", currentTags)}");
foreach (var suggestion in analysis.SuggestedTags)
{
Console.WriteLine($" Suggestion: {suggestion.Result} (via {string.Join("; ", suggestion.Rules)})");
}
The output in this example is something like:
Current Tags: cat Suggestion: fur (via fur :: hair) Suggestion: hair (via mammal -> hair)
Examples
For examples of tag sets, see:
- Animals.txt - An example used for displaying simple behaviours in our tests.
- Music.txt - A more detailed example used for stress-testing.
Tag Operators
::
(Specialization) The tags on the left are a specialization of the tag on the right. Multiple and circular inheritance are supported.[]
(Property Assignment) The tags on the left are all given each property on the right (comma separated, between the brackets).->
(Implication) The tags on the left together imply some tag on the right.<->
(Bidirectional Implication) A bidirectional form of implication. See below. All tags on the right also imply each tag on the left.~>
(Suggestion) The tags on the left together suggest some tag on the right.<~>
(Bidirectional Suggestion) A bidirectional form of suggestion. See below. All tags on the right also suggest each tag on the left.!>
(Exclusion) The tags on the left together exclude some tag on the right.<!>
(Mutual Exclusion) A mutual form of exclusion. See below. All tags on the right also exclude each tag on the left.=>
(Definition) Adds an alias. No bidirectional form is provided. If a circular reference is discovered, the tie is broken lexicographically.
When it makes sense, the left side of operators is allowed to be expressed as a conjunction and the right side is allowed to be expressed as a disjunction. For example:
a & b :: c
b -> x | y | z
a & b -> q | r
When a bidirectional operator includes conjunctions or disjunctions, the rule is simplified accordingly. For example:
a & b <!> x | y | z
becomes:
a & b !> x | y | z
x !> a
y !> a
z !> a
x !> b
y !> b
z !> b
A property assignment rule and a specialization rule for the same tags can be combined into a single rule. The rule is expanded into two rules at parse-time. For example:
q & r :: c [abstract]
becomes:
q & r :: c
q & r [abstract]
API
TagRule
- A single rule using the above operators.TagRulesParser
- Deserializes rules from text representation toTagRule
objects.TagRuleEngine
- Provides analysis for a set ofTagRule
objects..Analyze(tags, rejected)
- Analyze a set of tags and (optionally) rejected tags for missing, suggested, or incorrect tags.[tag]
- Get information about a single tag as aTagInfo
object. Can be used to traverse the entire set of tags.GetTagChildren
/GetTagParents
/GetTagDescendants
/GetTagAncestors
- Provides sets of tags allowing the traversal of the tag specialization map.GetTagProperties
/GetInheritedTagProperties
/GetAllTagProperties
- Enumerates the properties for the specified tag.GetKnownTags
- Enumerates all known tags.NormalizeRules
- Renames all tags according to defninition rules (=>
). TheTagRuleEngine
will call this method automatically when constructed.SimplifyRules
- Performs the above mentioned rule expansion steps to remove bidirectional rules (<->
,<~>
,<!>
) from the set rules. TheTagRuleEngine
will call this method automatically when constructed.
TagInfo
- Describes the indexed state of a single tag.Children
/Parents
/Descendants
/Ancestors
- Provides sets of tags allowing the traversal of the tag specialization map.Properties
- Enumerates all properties for the tag.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Pegasus (>= 4.1.0)
- System.Collections.Immutable (>= 1.7.1)
-
net6.0
- Pegasus (>= 4.1.0)
- System.Collections.Immutable (>= 1.7.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.6.0 | 172 | 9/16/2023 |
0.6.0-alpha.9 | 88 | 9/16/2023 |
0.6.0-alpha.7 | 157 | 9/27/2022 |
0.5.2 | 108 | 9/27/2022 |
0.5.1 | 99 | 9/27/2022 |
0.5.0 | 346 | 8/24/2021 |
0.5.0-alpha.5 | 158 | 8/24/2021 |
0.5.0-alpha.4 | 174 | 4/10/2021 |
0.5.0-alpha.3 | 175 | 1/25/2021 |
0.5.0-alpha.1 | 233 | 1/20/2021 |
0.4.1 | 144 | 8/24/2021 |
0.4.0 | 380 | 1/18/2021 |
0.4.0-alpha.11 | 179 | 1/18/2021 |
0.4.0-alpha.10 | 167 | 1/18/2021 |
0.4.0-alpha.9 | 170 | 1/18/2021 |
0.4.0-alpha.8 | 174 | 1/18/2021 |
0.4.0-alpha.7 | 244 | 1/17/2021 |
0.4.0-alpha.6 | 255 | 1/16/2021 |
0.3.0 | 385 | 1/7/2021 |
0.2.0 | 386 | 1/3/2021 |
0.2.0-alpha.3 | 218 | 1/3/2021 |
0.1.0 | 186 | 1/2/2021 |