Push model using huggingface_hub.
Browse files- README.md +23 -0
- config.json +9 -0
- model.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
tags:
|
4 |
+
- minecraft
|
5 |
+
- structure-generation
|
6 |
+
- pytorch
|
7 |
+
license: mit
|
8 |
+
repository: https://github.com/mmmfrieddough/minecraft-schematic-generator
|
9 |
+
---
|
10 |
+
|
11 |
+
# Minecraft Structure Generator
|
12 |
+
|
13 |
+
This model generates Minecraft structures using a decoder-only transformer architecture.
|
14 |
+
|
15 |
+
## Model Details
|
16 |
+
|
17 |
+
- Architecture: Decoder-only Transformer
|
18 |
+
- Vocabulary Size: 20000 block types
|
19 |
+
- Sequence Length: 1331
|
20 |
+
- Embedding Dimension:
|
21 |
+
- Attention Heads: 6
|
22 |
+
- Transformer Layers: 6
|
23 |
+
- Parameters: 79,029,536
|
config.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"decoder_dropout": 0.1,
|
3 |
+
"embedding_dropout": 0.1,
|
4 |
+
"max_sequence_length": 1331,
|
5 |
+
"model_dim": 768,
|
6 |
+
"num_classes": 20000,
|
7 |
+
"num_heads": 6,
|
8 |
+
"num_layers": 6
|
9 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b2b5e80d2261ec64fb8b421ac3482288f8bf26356353aaf86a4f911a2f7561df
|
3 |
+
size 316140704
|