https://github.com/56kyle/stardew_chest_layout
A python package for finding the optimal layout for chest organization in Stardew Valley
https://github.com/56kyle/stardew_chest_layout
Last synced: about 1 year ago
JSON representation
A python package for finding the optimal layout for chest organization in Stardew Valley
- Host: GitHub
- URL: https://github.com/56kyle/stardew_chest_layout
- Owner: 56kyle
- License: lgpl-3.0
- Created: 2022-07-23T06:40:02.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-23T21:52:44.000Z (almost 4 years ago)
- Last Synced: 2025-01-23T05:17:01.765Z (over 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stardew Valley Chest Layout Generator
A tool to generate the optimal chest/workbench layout for a provided set of priorities
## Description
At its heart, this is basically the inverse of a simple neural network.
Typically, we would start with a dataset and end up with a set of abstractions and weights for said abstraction's parameters.
Instead, we are starting with concrete factors and parameters, then using how well input data fits into our factors as the scoring itself.
Finally, we use the inherent tree like nature of the data to maintain a common structure for our decided factors
(for example, Emerald is a gem, all gems are classified as minerals, all minerals are classified as items).
## Examples
The following are all preset factors and
#### Foo
![foo]()
- ![bar]()
- ![baz]()
## Installation
### Executable
Download the `stardew-chest-layout` executable from the [GitHub release page]()
### Package
#### Pip
```terminal
pip install stardew-chest-layout
```
#### Poetry
```terminal
poetry add stardew-chest-layout
```