-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcommon.py
39 lines (32 loc) · 965 Bytes
/
common.py
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
from music21 import *
import os
from Dictionary import *
DATASETS = "datasets"
DATASET = "ent"
bin = True
CWD = os.getcwd()
DATASETS = os.path.join(CWD, DATASETS)
DATASET = os.path.join(DATASETS, DATASET)
# Checkpoint location:
CHECKPOINT_DIR = 'training_checkpoints_pytorch'
CHECKPOINT_DIR = os.path.join(DATASET, CHECKPOINT_DIR)
CHECKPOINT_PREFIX = 'my_ckpt.pth'
CHECKPOINT_PREFIX = os.path.join(CHECKPOINT_DIR, CHECKPOINT_PREFIX)
try:
os.mkdir(DATASETS)
except:
print("The datasets directory {} already exists.".format(DATASETS))
try:
os.mkdir(DATASET)
except:
print("The new dataset directory {} already exists.".format(DATASET))
try:
os.mkdir(CHECKPOINT_DIR)
except FileExistsError:
print("The directory checkpoint {} already exists.".format(CHECKPOINT_DIR))
def createDictionary(mySongFormatCombined):
dic = Dictionary()
for ps in mySongFormatCombined:
for ele in ps:
dic.add_word(ele)
return dic