pirocheto commited on
Commit
8451750
·
1 Parent(s): dc938fc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -53,14 +53,14 @@ For details, please refer to the paper.
53
 
54
  ## Load Dataset
55
 
56
- - With **datasets**
57
  ```python
58
  from datasets import load_dataset
59
 
60
  dataset = load_dataset("pirocheto/phishing-url")
61
  ```
62
 
63
- - With **pandas** and **huggingface_hub**
64
  ```python
65
  import pandas as pd
66
  from huggingface_hub import hf_hub_download
@@ -73,7 +73,7 @@ df = pd.read_csv(
73
  )
74
  ```
75
 
76
- - With **pandas** only
77
  ```python
78
  import pandas as pd
79
 
 
53
 
54
  ## Load Dataset
55
 
56
+ - With **datasets**:
57
  ```python
58
  from datasets import load_dataset
59
 
60
  dataset = load_dataset("pirocheto/phishing-url")
61
  ```
62
 
63
+ - With **pandas** and **huggingface_hub**:
64
  ```python
65
  import pandas as pd
66
  from huggingface_hub import hf_hub_download
 
73
  )
74
  ```
75
 
76
+ - With **pandas** only:
77
  ```python
78
  import pandas as pd
79