Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenjinp/terrain-synth-ml
Terrain Generation using ML techniques
https://github.com/kenjinp/terrain-synth-ml
Last synced: 13 days ago
JSON representation
Terrain Generation using ML techniques
- Host: GitHub
- URL: https://github.com/kenjinp/terrain-synth-ml
- Owner: kenjinp
- Created: 2024-03-27T02:15:19.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-27T02:17:19.000Z (9 months ago)
- Last Synced: 2024-12-08T21:07:56.943Z (15 days ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terrain Generator ML
A suite of ML tools and models for generating stylish earth-like terrain heightmaps using real earth data sets
# Run
https://stackoverflow.com/questions/6323860/sibling-package-imports/50193944#50193944
`pip install -e src`
.
├── .data
│ ├── processed
│ │ ├── test.csv
│ │ └── train.csv
│ └── raw
│ └── data.csv
|
├── .experiments
│ └── model1
│ ├── version_0
| | └── ...
| └── ...
└── src
|
└── ml
├── data
│ ├── make_dataset.py
│ └── preprocessing.py
|
├── datasets
│ ├── dataset1
│ | ├── datamodule.py
│ | └── dataset.py
| └── ...
|
├── engines
│ └── system.py
|
├── models
│ ├── model1.py
│ └── model2.py
|
├── scripts
│ ├── predict.py
│ ├── test.py
│ └── train.py
|
└── utils
├── constants.py
└── helpers.py