-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
executable file
·475 lines (418 loc) · 15.1 KB
/
config.py
File metadata and controls
executable file
·475 lines (418 loc) · 15.1 KB
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
# coding=utf-8
# !/usr/bin/python3.7 # Please use python 3.7
"""
__synopsis__ : Contains system configuration details and other global
variables.
__description__ : Benefit: We can print the configuration on every run and
get the hyper-parameter configuration.
__project__ : MNXC
__author__ : Samujjwal Ghosh <cs16resch01001@iith.ac.in>
__version__ : ": 0.3 "
__date__ : "04-03-2019"
__copyright__ : "Copyright (c) 2019, All rights reserved."
__license__ : "This source code is licensed under the MIT-style license
found in the LICENSE file in the root directory of this source tree."
__classes__ : config
__variables__ : configuration, seed, platform
__methods__ :
__last_modified__:
"""
import json
from os.path import join
from Logger.logger import logger
global seed
seed = 0
global configuration
configuration = {
"data": {
# 'name': 'fire16_smerp17',
# 'train': 'fire16_train',
# 'val': 'fire16_val',
# 'test': 'smerp17_test',
# "source": {
# 'labelled': 'fire16_labeled',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': 'smerp17_labeled',
# 'unlabelled': 'smerp17_unlabeled'},
# 'name': 'fire16_smerp17_source',
# 'train': 'fire16_train',
# 'val': 'fire16_val',
# 'test': 'smerp17_test',
# "source": {
# 'labelled': 'fire16_labeled',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': 'smerp17_labeled',
# 'unlabelled': 'fire16_unlabeled'},
# 'name': 'smerp17_fire16',
# 'train': 'smerp17_train',
# 'val': 'smerp17_train',
# 'test': 'fire16_test',
# "source": {
# 'labelled': 'smerp17_labeled',
# 'unlabelled': 'smerp17_unlabeled'
# },
# "target": {
# 'labelled': 'fire16_labeled',
# 'unlabelled': 'fire16_unlabeled'},
'name': 'smerp17_fire16_small',
'train': 'smerp17_train_75',
'val': 'smerp17_val',
'test': 'fire16_test',
"source": {
'labelled': 'smerp17_labeled',
'unlabelled': 'smerp17_unlabeled'
},
"target": {
'labelled': 'fire16_labeled',
'unlabelled': 'fire16_unlabeled'},
# 'name': 'smerp17_fire16_target',
# 'train': 'smerp17_train',
# 'val': 'smerp17_val',
# 'test': 'fire16_test',
# "source": {
# 'labelled': 'smerp17_labeled',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': 'smerp17_labeled',
# 'unlabelled': 'fire16_unlabeled'},
# 'name': 'fire16_fire16',
# 'train': 'fire16_train',
# 'val': 'fire16_val',
# 'test': 'fire16_test',
# "source": {
# 'labelled': 'fire16_labeled',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': 'fire16_labeled',
# 'unlabelled': 'fire16_unlabeled'},
# 'name': 'smerp17_smerp17',
# 'train': 'smerp17_train',
# 'val': 'smerp17_val',
# 'test': 'smerp17_test',
# "source": {
# 'labelled': 'smerp17_labeled',
# 'unlabelled': 'smerp17_unlabeled'
# },
# "target": {
# 'labelled': 'smerp17_labeled',
# 'unlabelled': 'smerp17_unlabeled'},
'num_classes': 4,
'class_names': ('0', '1', '2', '3'),
# 'num_classes': 1,
# 'class_names': ('0'),
# 'name': 'nepal_queensland_source',
# 'train': '2015_Nepal_Earthquake_train',
# 'val': '2015_Nepal_Earthquake_dev',
# 'test': '2013_Queensland_Floods_test',
# "source": {
# 'labelled': '2015_Nepal_Earthquake_train',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': '2013_Queensland_Floods_test',
# 'unlabelled': 'fire16_unlabeled'},
# 'name': 'nepal_queensland_target',
# 'train': '2015_Nepal_Earthquake_train',
# 'val': '2015_Nepal_Earthquake_dev',
# 'test': '2013_Queensland_Floods_test',
# "source": {
# 'labelled': '2015_Nepal_Earthquake_train',
# 'unlabelled': 'queensland_unlabeled'
# },
# "target": {
# 'labelled': '2013_Queensland_Floods_test',
# 'unlabelled': 'queensland_unlabeled'},
#
# 'name': 'nepal_queensland',
# 'train': '2015_Nepal_Earthquake_train',
# 'val': '2015_Nepal_Earthquake_dev',
# 'test': '2013_Queensland_Floods_test',
# "source": {
# 'labelled': '2015_Nepal_Earthquake_train',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': '2013_Queensland_Floods_test',
# 'unlabelled': 'queensland_unlabeled'},
# 'name': 'queensland_nepal',
# 'train': '2013_Queensland_Floods_train',
# 'val': '2013_Queensland_Floods_dev',
# 'test': '2015_Nepal_Earthquake_test',
# "source": {
# 'labelled': '2013_Queensland_Floods_train',
# 'unlabelled': 'queensland_unlabeled'
# },
# "target": {
# 'labelled': '2015_Nepal_Earthquake_test',
# 'unlabelled': 'fire16_unlabeled'},
# 'name': 'queensland_nepal_source',
# 'train': '2013_Queensland_Floods_train',
# 'val': '2013_Queensland_Floods_dev',
# 'test': '2015_Nepal_Earthquake_test',
# "source": {
# 'labelled': '2013_Queensland_Floods_train',
# 'unlabelled': 'queensland_unlabeled'
# },
# "target": {
# 'labelled': '2015_Nepal_Earthquake_test',
# 'unlabelled': 'queensland_unlabeled'},
# 'name': 'queensland_nepal_target',
# 'train': '2013_Queensland_Floods_train',
# 'val': '2013_Queensland_Floods_dev',
# 'test': '2015_Nepal_Earthquake_test',
# "source": {
# 'labelled': '2013_Queensland_Floods_train',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': '2015_Nepal_Earthquake_test',
# 'unlabelled': 'fire16_unlabeled'},
# 'name': 'nepal_nepal',
# 'train': '2015_Nepal_Earthquake_train',
# 'val': '2015_Nepal_Earthquake_dev',
# 'test': '2015_Nepal_Earthquake_test',
# "source": {
# 'labelled': '2015_Nepal_Earthquake_train',
# 'unlabelled': 'fire16_unlabeled'
# },
# "target": {
# 'labelled': '2015_Nepal_Earthquake_train',
# 'unlabelled': 'fire16_unlabeled'},
# 'name': 'queensland_queensland',
# 'train': '2013_Queensland_Floods_train',
# 'val': '2013_Queensland_Floods_dev',
# 'test': '2013_Queensland_Floods_test',
# "source": {
# 'labelled': '2013_Queensland_Floods_train',
# 'unlabelled': 'queensland_unlabeled'
# },
# "target": {
# 'labelled': '2013_Queensland_Floods_train',
# 'unlabelled': 'queensland_unlabeled'},
"val_split": 0.15,
"test_split": 0.999,
"show_stat": False
},
"paths": {
"result_dir": "results",
"log_dir": "logs",
"cache_dir": "cache",
"embedding_dir": {
"Windows": "D:\\Datasets\\Extreme Classification",
"OSX": "/home/cs16resch01001/datasets/Extreme Classification",
"Linux": {
"sam": "/home/sam/Embeddings",
"cs14mtech11017": "/home/cs14mtech11017/Embeddings",
"cs16resch01001": "/home/cs16resch01001/Embeddings",
## Code path: /home/cs14resch11001/codes/MNXC
"cs14resch11001": "/raid/ravi/pretrain"
}
},
'dataset_root': {
"Windows": "D:\\Datasets\\Extreme Classification",
"OSX": "/home/cs16resch01001/datasets/Extreme Classification",
"Linux": {
"sam": "/home/sam/Datasets",
"cs14mtech11017": "/home/cs14mtech11017/Datasets",
"cs16resch01001": "/home/cs16resch01001/datasets",
"cs14resch11001": "/raid/ravi/Datasets/Extreme Classification"
}
}
},
# "transformer": {
# "model_type": "distilbert",
# "model_name": "distilbert-base-uncased-distilled-squad",
# "num_folds": 5,
# "max_seq_len": 128,
# 'gradient_accumulation_steps': 1,
# "max_vec_len": 5000,
# "dropout": 0.1,
# "dropout_external": 0.0,
# "clipnorm": 1.0,
# "data_slice": 5120,
# "use_cuda": {
# "Windows": False,
# "OSX": False,
# "Linux": {
# "sam": False,
# "cs14mtech11017": True,
# "cs16resch01001": True,
# "cs14resch11001": True
# },
# },
# "normalize_inputs": False,
# "kernel_size": 1,
# "stride": 1,
# "padding": 1,
# "context": 10,
# "classify_count": 0,
# "fce": True,
# "optimizer": {
# "optimizer_type": "AdamW",
# "learning_rate_scheduler": "linear_warmup",
# "lr": 3e-4,
# "lr_decay": 0.,
# "weight_decay": 0.,
# "max_grad_norm": 1.0,
# "adam_epsilon": 1e-8,
# 'warmup_ratio': 0.06,
# 'warmup_steps': 0.,
# "momentum": 0.9,
# "dampening": 0.9,
# "alpha": 0.99,
# "rho": 0.9,
# "centered": False
# },
# "view_grads": False,
# "view_train_precision": True
# },
"model": {
"num_folds": 5,
"max_sequence_length": 200,
"dropout": 0.2,
"dropout_external": 0.0,
"clipnorm": 1.0,
"use_cuda": {
"Windows": False,
"OSX": False,
"Linux": {
"sam": False,
"cs14mtech11017": False,
"cs16resch01001": True,
"cs14resch11001": True
},
},
"normalize_inputs": False,
"kernel_size": 1,
"stride": 1,
"padding": 1,
"context": 10,
"classify_count": 0,
"optimizer": {
"optimizer_type": "adam",
"lr": 0.0001,
"lr_decay": 0,
"weight_decay": 0,
"momentum": 0.9,
"dampening": 0.9,
"alpha": 0.99,
"rho": 0.9,
"centered": False
},
"view_grads": False,
"view_train_precision": True
},
"embeddings": {
'embedding_file': 'glove.6B.300d',
'saved_emb_file': 'merged_300d',
'emb_dim': 300,
},
"lstm_params": {
"num_layers": 2,
"bias": True,
"batch_first": True,
"bidirectional": True,
"hid_size": 64,
},
"gnn_params": {
"hid_dim": 100,
"num_heads": 2,
"padding": 1,
"stride": 1,
"kernel_size": 1,
"bias": True,
},
"training": {
"num_epoch": 20,
"num_train_epoch": 50,
"train_batch_size": 64,
"eval_batch_size": 256,
},
"prep_vecs": {
"max_nb_words": 20000,
"min_word_count": 1,
"window": 7,
"min_count": 1,
"negative": 10,
"num_chunks": 10,
"vectorizer": "doc2vec",
"sample_repeat_mode": "append",
"tfidf_avg": False,
"idf": True
},
"text_process": {
"encoding": 'latin-1',
"sents_chunk_mode": "word_avg",
"workers": 5
},
}
class Config(object):
""" Contains all configuration details of the project. """
def __init__(self):
super(Config, self).__init__()
self.configuration = configuration
def get_config(self):
"""
:return:
"""
return self.configuration
def print_config(self, indent=4, sort=True):
""" Prints the config. """
logger.info("[{}] : {}".format("Configuration",
json.dumps(self.configuration,
indent=indent,
sort_keys=sort)))
@staticmethod
def get_platform():
""" Returns dataset path based on OS.
:return: str
"""
import platform
if platform.system() == 'Windows':
return platform.system()
elif platform.system() == 'Linux':
return platform.system()
else: ## OS X returns name 'Darwin'
return "OSX"
@staticmethod
def get_username():
"""
:returns the current username.
:return: string
"""
try:
import os, pwd
username = pwd.getpwuid(os.getuid()).pw_name
except Exception as e:
import getpass
username = getpass.getuser()
# finally:
# username = os.environ.get('USER')
return username
config_cls = Config()
config_cls.print_config()
global platform
platform = config_cls.get_platform()
global username
username = config_cls.get_username()
global dataset_dir
dataset_dir = join(configuration["paths"]['dataset_root'][platform][username],
configuration['data']['name'])
def main():
"""
Main module to start code
:param args:
Type: tuple
Required
Read Only
:return:
"""
pass
if __name__ == "__main__":
main()