-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Implement fixes for remote evaluation (#109)
* implement fixes for remote evaluation * another spelling fix * fixing a weird nltk not found error * attempt to download missing nltk files in main.yml * attempt to download nltk * attempt to download nltk with python -c * change the python command according to the error message
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM python:3.8 | ||
RUN apt-get update \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y \ | ||
&& apt-get -y install apt-utils gcc libpq-dev libsndfile-dev | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y \ | ||
&& apt-get -y install apt-utils gcc libpq-dev libsndfile-dev | ||
RUN git clone https://github.com/facebookresearch/SimulEval.git | ||
WORKDIR SimulEval | ||
RUN git checkout v1.1.0 | ||
RUN pip install -e . | ||
CMD ["simuleval", "--standalone", "--remote-port", "8888", "--agent", "examples/quick_start/first_agent.py.py"] | ||
CMD ["simuleval", "--standalone", "--remote-port", "8888", "--agent", "examples/quick_start/first_agent.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters