SushantGautam commited on
Commit
3e34a17
1 Parent(s): fd0e994

remove soccernet download script

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,8 +3,8 @@ RUN useradd -m -u 1000 user
3
 
4
  WORKDIR /code
5
 
6
- RUN pip install soccernet
7
- RUN python -c "from SoccerNet.Downloader import SoccerNetDownloader; mySoccerNetDownloader = SoccerNetDownloader(LocalDirectory='data/dataset/SoccerNet'); mySoccerNetDownloader.downloadGames(files=['Labels-caption.json'], split=['train', 'valid', 'test']); mySoccerNetDownloader.downloadGames(files=['Labels-v2.json'], split=['train', 'valid', 'test'])"
8
 
9
  COPY ./requirements.txt /code/requirements.txt
10
 
 
3
 
4
  WORKDIR /code
5
 
6
+ # RUN pip install soccernet
7
+ # RUN python -c "from SoccerNet.Downloader import SoccerNetDownloader; mySoccerNetDownloader = SoccerNetDownloader(LocalDirectory='data/dataset/SoccerNet'); mySoccerNetDownloader.downloadGames(files=['Labels-caption.json'], split=['train', 'valid', 'test']); mySoccerNetDownloader.downloadGames(files=['Labels-v2.json'], split=['train', 'valid', 'test'])"
8
 
9
  COPY ./requirements.txt /code/requirements.txt
10