-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #219 from lappis-unb/improve_intents
Improve intents
- Loading branch information
Showing
10 changed files
with
507 additions
and
909 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
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
rouana/lab/intent-requirements.txt → analysis/intent-requirements.txt
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,4 +1,4 @@ | ||
matplotlib==3.0.1 | ||
matplotlib~=2.0 | ||
rasa-nlu==0.13.7 | ||
pygraphviz==1.5 | ||
spacy==2.0.16 | ||
|
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM jupyter/minimal-notebook | ||
|
||
USER root | ||
|
||
RUN apt-get update \ | ||
&& apt-get upgrade -yq | ||
|
||
RUN apt-get install -yq graphviz libgraphviz-dev pkg-config | ||
|
||
ADD ./evaluation/intent-requirements.txt /tmp/ | ||
|
||
RUN pip install -r /tmp/intent-requirements.txt | ||
|
||
WORKDIR /work/ | ||
|
||
RUN python -m spacy download pt | ||
|
||
CMD jupyter-notebook --allow-root --NotebookApp.token='' --NotebookApp.password='' |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.