get os system result to print in log
Browse files
app.py
CHANGED
@@ -19,8 +19,10 @@ with zipfile.ZipFile(data_source, 'r') as zip_ref:
|
|
19 |
print("unzip of dataset is done")
|
20 |
|
21 |
print("Going to find captions.csv")
|
22 |
-
os.system("find /home/user/ -name captions.csv")
|
23 |
-
os.system("find /usr/ -name captions.csv")
|
|
|
|
|
24 |
print("Going to invoke make_train_valid_dfs")
|
25 |
print("\n\n")
|
26 |
|
|
|
19 |
print("unzip of dataset is done")
|
20 |
|
21 |
print("Going to find captions.csv")
|
22 |
+
find_txt_home = os.system("find /home/user/ -name captions.csv")
|
23 |
+
find_txt_usr = os.system("find /usr/ -name captions.csv")
|
24 |
+
print(find_txt_home)
|
25 |
+
print(find_txt_usr)
|
26 |
print("Going to invoke make_train_valid_dfs")
|
27 |
print("\n\n")
|
28 |
|