-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
282 lines (220 loc) · 8.56 KB
/
Copy pathProgram.cs
File metadata and controls
282 lines (220 loc) · 8.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
using Microsoft.EntityFrameworkCore;
using MoreLikeThis.Data;
using ParadeDB.EntityFrameworkCore;
using ParadeDB.EntityFrameworkCore.Extensions;
using Shared;
var options = new DbContextOptionsBuilder<AppDbContext>()
.UseNpgsql(ExampleSetup.ConnectionString, o => o.UseParadeDb())
.UseSnakeCaseNamingConvention()
.Options;
await using var dbContext = new AppDbContext(options);
Console.WriteLine(new string('=', 60));
Console.WriteLine("MoreLikeThis Example");
Console.WriteLine("Find similar documents without vector embeddings");
Console.WriteLine(new string('=', 60));
await ExampleSetup.SetupMockItemsAsync(dbContext);
var count = await dbContext.MockItems.CountAsync();
Console.WriteLine($"\nLoaded {count} items");
await DemoSimilarToSingleProduct(dbContext);
await DemoSimilarToMultipleProducts(dbContext);
await DemoSimilarByDocument(dbContext);
await DemoTuningParameters(dbContext);
await DemoCombinedWithFilters(dbContext);
await DemoMultifieldSimilarity(dbContext);
Console.WriteLine();
Console.WriteLine(new string('=', 60));
Console.WriteLine("Done!");
return;
static void PrintHeader(string title)
{
Console.WriteLine();
Console.WriteLine(new string('=', 60));
Console.WriteLine(title);
Console.WriteLine(new string('=', 60));
}
static async Task DemoSimilarToSingleProduct(AppDbContext db)
{
PrintHeader("Demo 1: Similar to a single product");
var sourceId = 3;
var fields = new[] { "description" };
var moreLikeThisOptions = new MoreLikeThisOptions { Fields = fields };
var source = await db.MockItems.SingleAsync(x => x.Id == sourceId);
Console.WriteLine();
Console.WriteLine($"Source product (id={sourceId}):");
Console.WriteLine($" '{source.Description}' [{source.Category}]");
var similar = await db
.MockItems.Where(x => EF.Functions.MoreLikeThisId(x.Id, sourceId, moreLikeThisOptions))
.OrderByDescending(x => EF.Functions.Score(x.Id))
.Take(5)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Similar products (by description):");
foreach (var item in similar)
{
var marker = item.Id == sourceId ? " (source)" : "";
Console.WriteLine(
$" {item.Id}: {Truncate(item.Description)}... [{item.Category}]{marker}"
);
}
}
static async Task DemoSimilarToMultipleProducts(AppDbContext db)
{
PrintHeader("Demo 2: Similar to multiple products (browsing history)");
int[] browsedIds = [3, 12, 29];
var fields = new[] { "description" };
var moreLikeThisOptions = new MoreLikeThisOptions { Fields = fields };
var browsed = await db
.MockItems.Where(x => browsedIds.AsEnumerable().Contains(x.Id))
.OrderBy(x => x.Id)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("User's browsing history:");
foreach (var item in browsed)
{
Console.WriteLine($" {item.Id}: {Truncate(item.Description)}... [{item.Category}]");
}
var similar = await db
.MockItems.Where(x =>
EF.Functions.MoreLikeThisId(x.Id, 3, moreLikeThisOptions)
|| EF.Functions.MoreLikeThisId(x.Id, 12, moreLikeThisOptions)
|| EF.Functions.MoreLikeThisId(x.Id, 29, moreLikeThisOptions)
)
.Where(x => x.Id != 3 && x.Id != 12 && x.Id != 29)
.Select(x => new { Item = x, Score = EF.Functions.Score(x.Id) })
.OrderByDescending(x => x.Score)
.Take(5)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Recommended products (similar to any browsed item):");
foreach (var result in similar)
{
var item = result.Item;
Console.WriteLine($" {item.Id}: {Truncate(item.Description)}... [{item.Category}]");
}
}
static async Task DemoSimilarByDocument(AppDbContext db)
{
PrintHeader("Demo 3: Similar to text description");
var userDescription = "comfortable wireless audio for running";
var document = """{"description":"comfortable wireless audio for running"}""";
Console.WriteLine();
Console.WriteLine($"User wants: '{userDescription}'");
var similar = await db
.MockItems.Where(x => EF.Functions.MoreLikeThisDocument(x.Id, document))
.OrderByDescending(x => EF.Functions.Score(x.Id))
.Take(5)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Matching products:");
foreach (var item in similar)
{
Console.WriteLine($" {item.Id}: {Truncate(item.Description)}... [{item.Category}]");
}
}
static async Task DemoTuningParameters(AppDbContext db)
{
PrintHeader("Demo 4: Tuning MoreLikeThis parameters");
var sourceId = 5;
var source = await db.MockItems.SingleAsync(x => x.Id == sourceId);
Console.WriteLine();
Console.WriteLine($"Source: '{source.Description}'");
var fields = new[] { "description" };
var moreLikeThisOptions = new MoreLikeThisOptions { Fields = fields };
var tunedOptions = new MoreLikeThisOptions
{
Fields = fields,
MinDocFrequency = 2,
MaxQueryTerms = 5,
};
var defaultResults = await db
.MockItems.Where(x => EF.Functions.MoreLikeThisId(x.Id, sourceId, moreLikeThisOptions))
.OrderByDescending(x => EF.Functions.Score(x.Id))
.Take(3)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Default MLT (no tuning):");
foreach (var item in defaultResults)
{
Console.WriteLine($" {item.Id}: {Truncate(item.Description)}...");
}
var tunedResults = await db
.MockItems.Where(x => EF.Functions.MoreLikeThisId(x.Id, sourceId, tunedOptions))
.OrderByDescending(x => EF.Functions.Score(x.Id))
.Take(3)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Tuned MLT (min_doc_freq=2, max_query_terms=5):");
foreach (var item in tunedResults)
{
Console.WriteLine($" {item.Id}: {Truncate(item.Description)}...");
}
}
static async Task DemoCombinedWithFilters(AppDbContext db)
{
PrintHeader("Demo 5: MoreLikeThis + ORM filters");
var sourceId = 15;
var fields = new[] { "description" };
var moreLikeThisOptions = new MoreLikeThisOptions { Fields = fields };
var source = await db.MockItems.SingleAsync(x => x.Id == sourceId);
Console.WriteLine();
Console.WriteLine($"Source: '{source.Description}' (rating: {source.Rating})");
var results = await db
.MockItems.Where(x => EF.Functions.MoreLikeThisId(x.Id, sourceId, moreLikeThisOptions))
.Where(x => x.InStock)
.Where(x => x.Rating >= 4)
.OrderByDescending(x => EF.Functions.Score(x.Id))
.Take(5)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Similar products (in_stock=True, rating >= 4):");
foreach (var item in results)
{
var stock = item.InStock ? "In Stock" : "Out of Stock";
Console.WriteLine(
$" {item.Id}: {Truncate(item.Description, 40)}... (rating: {item.Rating}, {stock})"
);
}
}
static async Task DemoMultifieldSimilarity(AppDbContext db)
{
PrintHeader("Demo 6: Multi-field similarity");
var sourceId = 3;
var descriptionFields = new[] { "description" };
var descriptionAndCategoryFields = new[] { "description", "category" };
var descriptionOptions = new MoreLikeThisOptions { Fields = descriptionFields };
var descriptionAndCategoryOptions = new MoreLikeThisOptions
{
Fields = descriptionAndCategoryFields,
};
var source = await db.MockItems.SingleAsync(x => x.Id == sourceId);
Console.WriteLine();
Console.WriteLine($"Source: '{source.Description}' [{source.Category}]");
var byDescription = await db
.MockItems.Where(x => EF.Functions.MoreLikeThisId(x.Id, sourceId, descriptionOptions))
.Where(x => x.Id != sourceId)
.Take(3)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Similar by DESCRIPTION only:");
foreach (var item in byDescription)
{
Console.WriteLine($" {item.Id}: {Truncate(item.Description, 40)}... [{item.Category}]");
}
var byBoth = await db
.MockItems.Where(x =>
EF.Functions.MoreLikeThisId(x.Id, sourceId, descriptionAndCategoryOptions)
)
.Where(x => x.Id != sourceId)
.Take(3)
.ToListAsync();
Console.WriteLine();
Console.WriteLine("Similar by DESCRIPTION + CATEGORY (if both indexed):");
foreach (var item in byBoth)
{
Console.WriteLine($" {item.Id}: {Truncate(item.Description, 40)}... [{item.Category}]");
}
}
static string Truncate(string value, int maxLength = 50)
{
return value.Length <= maxLength ? value : value[..maxLength];
}