Update default output dir
Browse files
unpack.py
CHANGED
|
@@ -9,11 +9,11 @@ Usage:
|
|
| 9 |
python unpack.py [--output /path/to/output] [--subset real_world|synthetic] [--jobs N]
|
| 10 |
|
| 11 |
Examples:
|
| 12 |
-
# Extract everything to ./
|
| 13 |
python unpack.py
|
| 14 |
|
| 15 |
# Extract to a specific location
|
| 16 |
-
python unpack.py --output /data/
|
| 17 |
|
| 18 |
# Extract only real_world data
|
| 19 |
python unpack.py --subset real_world
|
|
@@ -87,15 +87,15 @@ def main():
|
|
| 87 |
formatter_class=argparse.RawDescriptionHelpFormatter,
|
| 88 |
epilog="""
|
| 89 |
Examples:
|
| 90 |
-
python unpack.py # Extract all to ./
|
| 91 |
-
python unpack.py --output /data/
|
| 92 |
python unpack.py --subset real_world # Extract only real_world
|
| 93 |
python unpack.py --filter 20230705 # Extract matching archives
|
| 94 |
python unpack.py --jobs 4 # Parallel extraction
|
| 95 |
"""
|
| 96 |
)
|
| 97 |
-
parser.add_argument('--output', '-o', type=Path, default=Path('./
|
| 98 |
-
help='Output directory (default: ./
|
| 99 |
parser.add_argument('--subset', choices=['real_world', 'synthetic'],
|
| 100 |
help='Extract only a specific subset')
|
| 101 |
parser.add_argument('--filter', type=str,
|
|
|
|
| 9 |
python unpack.py [--output /path/to/output] [--subset real_world|synthetic] [--jobs N]
|
| 10 |
|
| 11 |
Examples:
|
| 12 |
+
# Extract everything to ./
|
| 13 |
python unpack.py
|
| 14 |
|
| 15 |
# Extract to a specific location
|
| 16 |
+
python unpack.py --output /data/cloud4d
|
| 17 |
|
| 18 |
# Extract only real_world data
|
| 19 |
python unpack.py --subset real_world
|
|
|
|
| 87 |
formatter_class=argparse.RawDescriptionHelpFormatter,
|
| 88 |
epilog="""
|
| 89 |
Examples:
|
| 90 |
+
python unpack.py # Extract all to ./
|
| 91 |
+
python unpack.py --output /data/cloud4D # Extract to specific location
|
| 92 |
python unpack.py --subset real_world # Extract only real_world
|
| 93 |
python unpack.py --filter 20230705 # Extract matching archives
|
| 94 |
python unpack.py --jobs 4 # Parallel extraction
|
| 95 |
"""
|
| 96 |
)
|
| 97 |
+
parser.add_argument('--output', '-o', type=Path, default=Path('./'),
|
| 98 |
+
help='Output directory (default: ./)')
|
| 99 |
parser.add_argument('--subset', choices=['real_world', 'synthetic'],
|
| 100 |
help='Extract only a specific subset')
|
| 101 |
parser.add_argument('--filter', type=str,
|