mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-17 18:00:35 +00:00
Add MarkovJunior 16D shim example config
This commit is contained in:
parent
92fdd77593
commit
0ff6cc60fd
1 changed files with 53 additions and 0 deletions
53
shared-data/examples/famm_markovjunior_16d_shim.example.json
Normal file
53
shared-data/examples/famm_markovjunior_16d_shim.example.json
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
{
|
||||||
|
"source": {
|
||||||
|
"engine": "MarkovJunior",
|
||||||
|
"shim_mode": "rule_anchor_projection",
|
||||||
|
"reference": "https://github.com/mxgmn/MarkovJunior"
|
||||||
|
},
|
||||||
|
"grid": {
|
||||||
|
"dimensions": 2,
|
||||||
|
"size": [16, 16],
|
||||||
|
"alphabet": ["B", "W", "R", "G", "A", "*"]
|
||||||
|
},
|
||||||
|
"constraints": {
|
||||||
|
"observations": [
|
||||||
|
{"cell": [15, 15], "target": "R", "weight": 0.8}
|
||||||
|
],
|
||||||
|
"temperature": 0.0
|
||||||
|
},
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"id": "growth",
|
||||||
|
"left": "WB",
|
||||||
|
"right": "WW",
|
||||||
|
"weight": 1.0,
|
||||||
|
"node": "exists",
|
||||||
|
"orientation": "axis_aligned",
|
||||||
|
"chirality": "neutral"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "maze_growth",
|
||||||
|
"left": "WBB",
|
||||||
|
"right": "WAW",
|
||||||
|
"weight": 0.8,
|
||||||
|
"node": "exists",
|
||||||
|
"orientation": "axis_aligned",
|
||||||
|
"chirality": "right"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "backtracker_step",
|
||||||
|
"left": "RBB",
|
||||||
|
"right": "GGR",
|
||||||
|
"weight": 0.6,
|
||||||
|
"node": "markov",
|
||||||
|
"orientation": "axis_aligned",
|
||||||
|
"chirality": "right"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"projection": {
|
||||||
|
"include_chirality": true,
|
||||||
|
"include_constraints": true,
|
||||||
|
"include_delta_memory": true,
|
||||||
|
"nuvmap_projection": "frontier"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue