GVAmaresh commited on
Commit
ee321f9
·
1 Parent(s): 3ae44f3

dev: check working

Browse files
Files changed (1) hide show
  1. app.py +2 -23
app.py CHANGED
@@ -30,26 +30,5 @@ def reencode_audio(input_path, output_path):
30
  ]
31
  subprocess.run(command, check=True)
32
 
33
- def download_and_read_h5(file_id, dataset_name):
34
- file_path = f"/tmp/{file_id}.h5"
35
- # dataset_name = "your_dataset_name"
36
-
37
- with h5py.File(file_path, "r") as h5_file:
38
- if dataset_name in h5_file:
39
- obj = h5_file[dataset_name]
40
- if isinstance(obj, h5py.Dataset):
41
- data = obj[:]
42
- print("Data loaded successfully")
43
- return data
44
- else:
45
- print(f"'{dataset_name}' is a group. Inspect its contents.")
46
- print(list(obj.keys()))
47
- else:
48
- print(f"Dataset '{dataset_name}' not found in the file.")
49
-
50
-
51
- file_id_1 = '1zhisRgRi2qBFX73VFhzh-Ho93MORQqVa'
52
- download_and_read_h5(file_id_1, "check_1")
53
-
54
- file_id_2 = '1wIaycDFGTF3e0PpAHKk-GLnxk4cMehOU'
55
- download_and_read_h5(file_id_2, "check_2")
 
30
  ]
31
  subprocess.run(command, check=True)
32
 
33
+
34
+ #-----------------------------------------------------------------------------------------