-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 889 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "llm-architecture-from-scratch",
"version": "1.0.0",
"description": "A beginner-friendly implementation of LLM architecture in JavaScript - Learn by building!",
"main": "05_full_model/gpt.js",
"scripts": {
"test": "node test.js",
"demo:tokenizer": "node demos/demo_tokenizer.js",
"demo:embeddings": "node demos/demo_embeddings.js",
"demo:attention": "node demos/demo_attention.js",
"demo:full": "node demos/demo_full_model.js"
},
"keywords": [
"LLM",
"GPT",
"Transformer",
"NLP",
"Neural Networks",
"Deep Learning",
"JavaScript",
"Educational"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/llm-architecture-from-scratch"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {}
}