File size: 1,648 Bytes
b0c7a93
 
 
99fad87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9b2aa2e
99fad87
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
license: apache-2.0
---

# UAVD4L-Model

This dataset contains `feicuiwan-OSGB.zip` (~48.5 GB), which has been split into 12 parts for reliable uploading/downloading:

- `feicuiwan-OSGB.zip.part01` ~ `part11`: 4.29 GB each
- `feicuiwan-OSGB.zip.part12`: 1.26 GB

## Download

Download **all 12 parts** before merging.

**Option 1: Python (`huggingface_hub`)**

```python
from huggingface_hub import snapshot_download

snapshot_download(
    repo_id="RingoWRW97/UAVD4L-Model",
    repo_type="dataset",
    allow_patterns=["feicuiwan-OSGB.zip.part*"],
    local_dir="./feicuiwan-parts",
)
```

**Option 2: CLI**

```bash
hf download RingoWRW97/UAVD4L-Model --repo-type dataset --include "feicuiwan-OSGB.zip.part*" --local-dir ./feicuiwan-parts
```

## Merge the parts

After downloading all parts into the same folder, merge them back into the original zip file.

**Windows (CMD / PowerShell):**

```powershell
cd feicuiwan-parts
copy /b feicuiwan-OSGB.zip.part01+feicuiwan-OSGB.zip.part02+feicuiwan-OSGB.zip.part03+feicuiwan-OSGB.zip.part04+feicuiwan-OSGB.zip.part05+feicuiwan-OSGB.zip.part06+feicuiwan-OSGB.zip.part07+feicuiwan-OSGB.zip.part08+feicuiwan-OSGB.zip.part09+feicuiwan-OSGB.zip.part10+feicuiwan-OSGB.zip.part11+feicuiwan-OSGB.zip.part12 feicuiwan-OSGB.zip
```

**Linux / macOS:**

```bash
cd feicuiwan-parts
cat feicuiwan-OSGB.zip.part* > feicuiwan-OSGB.zip
```

> Note: the wildcard `part*` works because the zero-padded names sort in the correct order (`part01` ... `part12`).

## Verify (optional)

The merged file should be exactly **48.5 GB** (48,501,801,513 bytes). You can then unzip it:

```bash
unzip feicuiwan-OSGB.zip
```