-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (99 loc) · 3.11 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ludwig-snippets",
"displayName": "Ludwig Snippets",
"description": "Provides snippets for Ludwig, a declarative deep learning framework build for scale and efficiency.",
"repository": {
"type": "git",
"url": "https://github.com/mhabedank/ludwig-snippets"
},
"bugs": {
"url": "https://github.com/mhabedank/ludwig-snippets/issues"},
"version": "0.2.1",
"engines": {
"vscode": "^1.91.0"
},
"icon": "images/ludwig_icon.png",
"publisher": "MartinHabedank",
"license": "Apache-2.0",
"categories": [
"Snippets",
"AI",
"Machine Learning",
"Data Science"
],
"contributes": {
"snippets": [
{
"language": "yaml",
"path": "./snippets/global.code-snippets",
"__description": "Snippets for creating Features and for boostraping a Ludwig model."
},
{
"language": "yaml",
"path": "./snippets/preprocessing.code-snippets",
"__description": "Preprocessing snippets for Ludwig."
},
{
"language": "yaml",
"path": "./snippets/encoders/bag.code-snippets",
"__description": "Bag encoders snippets for Ludwig.",
"__sources": [
"https://ludwig.ai/latest/configuration/features/bag_features/#encoders"
]
},
{
"language": "yaml",
"path": "./snippets/encoders/base.code-snippets",
"__description": "Base encoders snippets for Ludwig."
},
{
"language": "yaml",
"path": "./snippets/encoders/category.code-snippets",
"__description": "Category encoders snippets for Ludwig.",
"__sources": [
"https://ludwig.ai/latest/configuration/features/category_features/#encoders"
]
},
{
"language": "yaml",
"path": "./snippets/encoders/date.code-snippets",
"__description": "Date encoders snippets for Ludwig.",
"__sources": [
"https://ludwig.ai/latest/configuration/features/date_features/#encoders"
]
},
{
"language": "yaml",
"path": "./snippets/encoders/h3.code-snippets",
"__description": "H3 encoders snippets for Ludwig.",
"__sources": [
"https://ludwig.ai/latest/configuration/features/h3_features/#encoders"
]
},
{
"language": "yaml",
"path": "./snippets/encoders/sequence.code-snippets",
"__description": "Sequence encoders snippets for Ludwig.",
"__sources": [
"https://ludwig.ai/latest/configuration/features/sequence_features/#encoders"
]
},
{
"language": "yaml",
"path": "./snippets/encoders/set.code-snippets",
"__description": "Set encoders snippets for Ludwig.",
"__sources": [
"https://ludwig.ai/latest/configuration/features/set_features/#encoders"
]
},
{
"language": "yaml",
"path": "./snippets/encoders/text.code-snippets",
"__description": "Text encoders snippets for Ludwig.",
"__sources": [
"https://ludwig.ai/latest/configuration/features/text_features/#encoders"
]
}
]
}
}