update them

This commit is contained in:
mike
2025-12-24 05:09:50 +01:00
parent 0a9a537fa8
commit b4b573d64e
3 changed files with 2 additions and 7 deletions

View File

@@ -94,11 +94,6 @@ public final class ExportFormat {
maxC = Math.max(maxC, cc); maxC = Math.max(maxC, cc);
} }
minR -= 1;
minC -= 1;
maxR += 1;
maxC += 1;
// 3) map of only used letter cells (everything else becomes '#') // 3) map of only used letter cells (everything else becomes '#')
Map<Long, Character> letterAt = new HashMap<>(); Map<Long, Character> letterAt = new HashMap<>();
for (var p : placed) { for (var p : placed) {

View File

@@ -13,7 +13,7 @@ public class Main {
public static class Opts { public static class Opts {
public int seed = 1; public int seed = 1;
public int pop = 18; public int pop = 18;
public int gens = 100; public int gens = 200;
public int tries = 5; public int tries = 5;
public String wordsPath = "./out/pool.txt"; public String wordsPath = "./out/pool.txt";
public double minSimplicity = 0; // 0 means no limit public double minSimplicity = 0; // 0 means no limit

View File

@@ -877,7 +877,7 @@ public class ThemePoolBuilderLength {
System.out.println("Using model: " + modelId); System.out.println("Using model: " + modelId);
System.out.println("Generating theme words via LM Studio..."); System.out.println("Generating theme words via LM Studio...");
List<String> llmWords = Arrays.asList();//llmThemeWords(o, modelId, rssText.toString()); List<String> llmWords = llmThemeWords(o, modelId, rssText.toString());
// Normalize + keep only those present in master lexicon // Normalize + keep only those present in master lexicon
var themeKept = new LinkedHashSet<String>(); var themeKept = new LinkedHashSet<String>();