Spaces:
Sleeping
Sleeping
Upload 5 files
Browse files- .gitignore +0 -0
- app_gradio.py +0 -0
- config.json +18 -0
- model.safetensors +3 -0
- requirements.txt +0 -0
.gitignore
ADDED
|
File without changes
|
app_gradio.py
ADDED
|
File without changes
|
config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"CustomGPT"
|
| 4 |
+
],
|
| 5 |
+
"auto_map": {
|
| 6 |
+
"AutoConfig": "configuration_gpt.CustomGPTConfig",
|
| 7 |
+
"AutoModelForCausalLM": "modeling_gpt.CustomGPT"
|
| 8 |
+
},
|
| 9 |
+
"block_size": 768,
|
| 10 |
+
"dropout": 0.1,
|
| 11 |
+
"model_type": "custom_gpt",
|
| 12 |
+
"n_embd": 768,
|
| 13 |
+
"n_head": 8,
|
| 14 |
+
"n_layer": 8,
|
| 15 |
+
"torch_dtype": "float32",
|
| 16 |
+
"transformers_version": "4.48.3",
|
| 17 |
+
"vocab_size": 50257
|
| 18 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b98e169c04548f8f78e197d8929eb15f7f565966bbb9004cd36b5bb9b6a8b374
|
| 3 |
+
size 383577048
|
requirements.txt
ADDED
|
File without changes
|