mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
basename paths
This commit is contained in:
parent
4d8ae21a45
commit
59cfa4a89a
2 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ def get_filepaths(dirpath_input, shuffle=True):
|
||||||
if shuffle:
|
if shuffle:
|
||||||
result = shuffle(result)
|
result = shuffle(result)
|
||||||
else:
|
else:
|
||||||
result = sorted(result, key=lambda filepath: int(filepath.split(".", 1)[0]))
|
result = sorted(result, key=lambda filepath: int(os.path.basename(filepath).split(".", 1)[0]))
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@ def get_filepaths(dirpath_input, shuffle=True):
|
||||||
if shuffle:
|
if shuffle:
|
||||||
result = shuffle(result)
|
result = shuffle(result)
|
||||||
else:
|
else:
|
||||||
result = sorted(result, key=lambda filepath: int(filepath.split(".", 1)[0]))
|
result = sorted(result, key=lambda filepath: int(os.path.basename(filepath).split(".", 1)[0]))
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def dataset_segmenter(dirpath_input, batch_size=64, train_percentage=0.8, parallel_reads_multiplier=1.5, water_threshold=0.1, shape_water_desired=[100,100]):
|
def dataset_segmenter(dirpath_input, batch_size=64, train_percentage=0.8, parallel_reads_multiplier=1.5, water_threshold=0.1, shape_water_desired=[100,100]):
|
||||||
|
|
Loading…
Reference in a new issue