maxxcarl commited on
Commit
a671e97
·
1 Parent(s): 6318016

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +14 -2
README.md CHANGED
@@ -65,7 +65,19 @@ Track: 'Shape of You'
65
  After training, deploy your model as a web app:
66
 
67
  ```bash
68
- ./deploy_space.sh spotify-genre-classifier
69
  ```
70
 
71
- This creates a Gradio Space at: `https://huggingface.co/spaces/your-username/spotify-genre-classifier`
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  After training, deploy your model as a web app:
66
 
67
  ```bash
68
+ ./deploy_space.sh spotify
69
  ```
70
 
71
+ This creates a Gradio Space at: `https://huggingface.co/spaces/your-username/spotify`
72
+
73
+ ## Clone on GPU Machine
74
+
75
+ To run on another machine with GPU:
76
+
77
+ ```bash
78
+ git clone https://huggingface.co/maxxcarl/spotify-training
79
+ cd spotify-training
80
+ pip install -r requirements.txt
81
+ cp .env.example .env # Add your HF token
82
+ ./run.sh gpt2_spotify
83
+ ```