update them
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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>();
|
||||||
|
|||||||
Reference in New Issue
Block a user