-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
26 lines (26 loc) · 977 Bytes
/
package.json
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
{
"name": "examples",
"private": true,
"type": "module",
"description": "In `training.ts` we give a brief example of discojs, in it we run two clients training jointly via federated learning. It trains on a few examples of the [face task](https://www.kaggle.com/datasets/frabbisw/facial-age), the samples are already stored in the repo and so it is not necessary to download any additional data.",
"scripts": {
"train": "npm run build && node dist/training.js",
"custom_task": "npm run build && node dist/custom_task.js",
"language_model": "npm run build && node dist/wikitext.js",
"benchmark_gpt": "npm run build && node dist/benchmark_gpt.js",
"build": "tsc",
"lint": "npx eslint .",
"test": "npm run train"
},
"license": "ISC",
"dependencies": {
"server": "*",
"@epfml/discojs": "*",
"@epfml/discojs-node": "*"
},
"devDependencies": {
"eslint": "9",
"typescript": "5",
"typescript-eslint": "8"
}
}