anthonymartinez1 commited on
Commit
294cac8
·
verified ·
1 Parent(s): 23ba89e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -0
README.md CHANGED
@@ -21,6 +21,7 @@ In your notebook, paste the following code:
21
 
22
  from huggingface_hub import hf_hub_download
23
  hf_hub_download(repo_id="CSC310-fall25/training_classification_phishing", filename="model.pkl",local_dir='.')
 
24
  dt_loaded = sio.load('model.pkl')
25
 
26
  This will load the model.
@@ -28,6 +29,7 @@ This will load the model.
28
  You can download the appropriate test data by pasting this code:
29
 
30
  hf_hub_download(repo_id="CSC310-fall25/training_classification_phishing", filename="phishing_test.csv",local_dir='.')
 
31
  phishing_test = pd.read_csv('phishing_test.csv')
32
 
33
  ### Hyperparameters
 
21
 
22
  from huggingface_hub import hf_hub_download
23
  hf_hub_download(repo_id="CSC310-fall25/training_classification_phishing", filename="model.pkl",local_dir='.')
24
+
25
  dt_loaded = sio.load('model.pkl')
26
 
27
  This will load the model.
 
29
  You can download the appropriate test data by pasting this code:
30
 
31
  hf_hub_download(repo_id="CSC310-fall25/training_classification_phishing", filename="phishing_test.csv",local_dir='.')
32
+
33
  phishing_test = pd.read_csv('phishing_test.csv')
34
 
35
  ### Hyperparameters