Update Mimic4Dataset.py
Browse files- Mimic4Dataset.py +1 -1
Mimic4Dataset.py
CHANGED
@@ -133,7 +133,7 @@ class Mimic4Dataset(datasets.GeneratorBasedBuilder):
|
|
133 |
path_bench = './MIMIC-IV-Data-Pipeline-main'
|
134 |
else:
|
135 |
path_bench ='./MIMIC-IV-Data-Pipeline-main'
|
136 |
-
subprocess.run(["git", "clone", repo_url, path_bench],shell = True)
|
137 |
os.makedirs(path_bench+'/'+'mimic-iv')
|
138 |
shutil.move(version,path_bench+'/'+'mimic-iv')
|
139 |
|
|
|
133 |
path_bench = './MIMIC-IV-Data-Pipeline-main'
|
134 |
else:
|
135 |
path_bench ='./MIMIC-IV-Data-Pipeline-main'
|
136 |
+
subprocess.run(["git", "clone", repo_url, path_bench],shell = True,capture_output=True)
|
137 |
os.makedirs(path_bench+'/'+'mimic-iv')
|
138 |
shutil.move(version,path_bench+'/'+'mimic-iv')
|
139 |
|