-
Notifications
You must be signed in to change notification settings - Fork 7
/
info.json
383 lines (379 loc) · 13 KB
/
info.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
[
{
"keywords": [
"Hello World",
"hello world",
"helloworld"
],
"description": "The first thing you write when you learn any programming language."
},
{
"keywords": [
"Intial Commit",
"First commit",
"inital commit"
],
"description": "Your first open source contibution commit message. Welcome to Open-Source!"
},
{
"keywords": [
"Python",
"py",
"python"
],
"description": "A high level programming language that is simple to use. It is an interpreted language, thus slower than its peers. Suitable for beginners."
},
{
"keywords": [
"Java",
"java"
],
"description": "A high level, class-based and object-oriented programming language. It is a sophisticated and powerful software designing tool."
},
{
"keywords": [
"Data Science",
"data science",
"DS"
],
"description": "A field of science that deals with the study and analysis of data using numerous approaches and algorithms."
},
{
"keywords": [
"Machine Learning",
"machine learning",
"M L",
"ML",
"Ml",
"ml"
],
"description": "A field of Computer sciences that deals with teaching computers to solve complex logical problems that are difficult to implement using traditional means."
},
{
"keywords": [
"Neural Network",
"neural network",
"N N",
"NN",
"nn"
],
"description": "A network of nodes that share and process information using various activation/threshhold algorithm, that simulates the functionality of biological neurons on a computer."
},
{
"keywords": [
"Pandas",
"pandas"
],
"description": "A python library mainly used to process data files and visualise it in various forms."
},
{
"keywords": [
"Standardization",
"standardization"
],
"description": "A data manipulation method that converts numeric data in a way that mean = 0 and standard deviation = 1."
},
{
"keywords": [
"Normalization",
"normalization"
],
"description": "A data manipulation method that fits the numeric data between a scale of 0 to 1."
},
{
"keywords": [
"Numpy",
"numpy"
],
"description": "A python library mainly used to simulate time and space efficient mathematical equations and data structures."
},
{
"keywords": [
"Matplotlib",
"matplotlib"
],
"description": "A python library that automates the plotting of datapoints onto various types of graphical representations."
},
{
"keywords": [
"sk-learn",
"scikit-learn",
"sklearn"
],
"description": "Sk-learn is a library of simple and efficient tools primariy used for predictive data analysis."
},
{
"keywords": [
"Tensorflow",
"tensorflow"
],
"description": "A python library that contains a huge collection of methods involving tensor data type that can be used for AI, ML and Deep Learning algorithms."
},
{
"keywords": [
"Tensor",
"tensor"
],
"description": "A tensor is a type of data structure which helps store and process huge amount of poly-dimensional data, it is expecially used in Tensorflow."
},
{
"keywords": [
"Stack",
"stack"
],
"description": "A stack is a type of data structure with a first-in-last-out policy, just like a stack of anything IRL."
},
{
"keywords": [
"Queue",
"queue"
],
"description": "A queue is a type of data structure with a first-in-first-out policy, just like a queue of people IRL."
},
{
"keywords": [
"Priority queue",
"priority queue"
],
"description": "A priority-queue is a type of data structure in which the top element is always the maximum or minimum element in the queue according to the priority queue declared."
},
{
"keywords": [
"Tuple",
"tuple"
],
"description": "A Python tuple is like an array of a series of member components which can be of any datatype. It is different from a list, as it is immutable."
},
{
"keywords": [
"List",
"list"
],
"description": "A Python list is like an array of a series of member components which can be of any datatype. It is very flexible in terms of operations like: append, pop, sort etc."
},
{
"keywords": [
"Set",
"set",
"Python Set",
"python set"
],
"description": "A Python set is like an array of a series of UNIQUE member components which can be of any datatype. It is iterable, mutable and has no duplicate elements."
},
{
"keywords": [
"Dictionary",
"dictionary",
"Python Dictionary",
"python dictionary"
],
"description": "A Python dictionary is a special implementation of 'set', where data can be stored in a form of Key-Value pair. It is iterable, mutable and has no duplicate elements."
},
{
"keywords": [
"Data structure",
"data structure"
],
"description": "A data structure is nothing but an arrangement and accessing method of numerous data points."
},
{
"keywords": [
"back end",
"backend",
"back-end",
"Back End"
],
"description": "Part of an application that performs an essential task not apparent to the user."
},
{
"keywords": [
"fron end",
"frontend",
"front-end",
"Front End"
],
"description": "Part of an application of producing HTML, CSS and JavaScript where user can see and interact with them directly."
},
{
"keywords": [
"malware",
"Malware"
],
"description": "Refers to a software program that has been developed to do harm to other computers. Malware is short for Malicious software. Types of malware include viruses, worms and spyware."
},
{
"keywords": [
"Spam",
"spam"
],
"description": " Spam refers to the unauthorized content that is intended to hinder the person's personal space or to share irrelevant messages in a bulk."
},
{
"keywords": [
"risk",
"Risk"
],
"description": "Risk refers to the potential threat that has occurred or has a due chance of occurring in the near future."
},
{
"keywords": [
"Data Visualization",
"Data visualization",
"data visualization"
],
"description": "Data Visualization refers to the process that is needed to present the data in a insightful manner in the form of a graph."
},
{
"keywords": [
"Data Prediction",
"data prediction",
"Data prediction"
],
"description": "Prediction refers to the forecast that is to be made on the newly available data based on the training data."
},
{
"keywords": [
"Supervised Learning",
"supervised learning",
"predictive learning"
],
"description": "Training of the model requires both x(features) and y(labels) for training purpose and give prediction."
},
{
"keywords": [
"Unsupervised Learning",
"unsupervised learning",
"descriptive learning"
],
"description": "Only features(x) are provided and classification is based on the basis of similarity and dis-similarity."
},
{
"keywords": [
"Boxplot",
"boxplot"
],
"description": "It is a type of graph which is used to plot the outliers(Points that deviate from the remaining data points)."
},
{
"keywords": [
"Data",
"data",
"DATA"
],
"description": "Data is just the collection of raw facts which can be moulded into information."
},
{
"keywords": [
"Reinforcement Learning",
"reinforcement learning",
"Reinforcement learning"
],
"description": "It works on the principle of reward which can be availed at the end of each achieved task. E.g.:- Q-learning."
},
{
"keywords": [
"PPC",
"ppc",
"pay per click"
],
"description": "PPC or Pay Per Click refers to an advertising model, where the advertiser pays money each time their ad is clicked by interesting viewer."
},
{
"keywords": [
"Digital Footprint"
],
"description": "A footprint of digital information that a user’s online activity leaves behind."
},
{
"keywords": [
"cache"
],
"description": "Cache is the fastest and most accessible segment of memory in computer architecture."
},
{
"keywords": [
"Dictionary Attack"
],
"description": "A type of brute force attack in which the attacker uses known dictionary words, phrases or common passwords as their guesses."
},
{
"keywords": [
"Ransomware"
],
"description": "Malicious software that makes data or systems unusable until the victim makes a payment."
},
{
"keywords": [
"BYOD",
"Bring Your Own Device"
],
"description": "BYOD or Bring Your Own Device is an organization's or policy that allows employees to use their own personal devices for work purposes."
},
{
"keywords": [
"credentials",
"creds"
],
"description": "A user’s authentication information used to verify identity typically one, or more, of password, token, certificate."
},
{
"keywords": [
"Git",
"git",
"GIT"
],
"description": "Git is a version control system. Basically, if someone changes a file (like opens a document and writes stuff in it, changes a line of code, or so on) it records the differences between the new version and the old version, and maintains a history. This allows people to preserve differing versions, go back in time to earlier ones, review changes as they have occurred over time, and so on."
},
{
"keywords": [
"Github",
"github",
"GitHub",
"GITHUB"
],
"description": "Github is basically a powerful collaboration and project management tool for computer programming. It's designed to let people share coding projects with others and help manage those projects while allowing others to also contribute to the source code. It's primarily useful when you have multiple people working on the same code-base and you want to keep track of and review everyone's individual contributions to the project."
},
{
"keywords": [
"social engineering"
],
"description": "Manipulating people into carrying out specific actions, or divulging information, which is of use to an attacker."
},
{
"keywords": [
"Trojan"
],
"description": "A type of malware or virus disguised as legitimate software, that is used to hack into the victim’s computer."
},
{
"keywords": [
"spear-phishing",
"spear phishing"
],
"description": "A more targeted form of phishing, where the email is designed to look like it’s from a person the recipient knows and/or trusts."
},
{
"keywords": [
"SaaS"
],
"description": "Describes a business model where consumers access centrally-hosted software applications over the Internet."
},
{
"keywords": [
"PaaS"
],
"description": "Platform as a service (PaaS) is a cloud computing model where a third-party provider delivers hardware and software tools to users over the internet."
},
{
"keywords": [
"R"
],
"description": "A very intuitive data science and analytics language. uwu"
},
{
"keywords": [
"IaaS"
],
"description": "Infrastructure as a service (IaaS) is a cloud computing service model in which computing resources are hosted in a public cloud, private cloud, or hybrid cloud."
}
]