-
Notifications
You must be signed in to change notification settings - Fork 203
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 #119 from lappis-unb/devel
Atualização jupyter notebooks
- Loading branch information
Showing
15 changed files
with
529 additions
and
586 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
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 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 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.
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 @@ | ||
FROM botrequirements as coach | ||
FROM botrequirements | ||
|
||
WORKDIR /bot | ||
|
||
|
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,11 +1,13 @@ | ||
FROM lappis/botrequirements:boilerplate | ||
FROM botrequirements | ||
|
||
RUN apt-get update && apt-get install -y graphviz libgraphviz-dev pkg-config | ||
|
||
# Pygraphviz depends on package graphviz wich needs to be configurated | ||
# acording to each OS. because of it it's not added to bot.requirements | ||
RUN pip install jupyter pygraphviz==1.5 | ||
|
||
COPY ./bot /bot | ||
|
||
WORKDIR /work/ | ||
|
||
CMD jupyter-notebook --allow-root --NotebookApp.token='' --ip=0.0.0.0 --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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.6-slim as botrequirements | ||
FROM python:3.6-slim | ||
|
||
RUN apt update && apt install -y gcc make | ||
|
||
|
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,8 +1,5 @@ | ||
COACH_DIR_PATH=../../coach/ | ||
COACH_DOMAIN_PATH=../../coach/domain.yml | ||
COACH_NLU_CONFIG_PATH=../../coach/nlu_config.yml | ||
COACH_STORIES_PATH=../../coach/data/stories/ | ||
COACH_INTENTS_PATH=../../coach/data/intents/ | ||
COACH_MODELS_PATH=/models/ | ||
COACH_MODELS_NLU_PATH=/models/nlu/current/ | ||
COACH_MODELS_DIALOGUE_PATH=/models/dialogue | ||
DIR_PATH=/bot/ | ||
DOMAIN_PATH=/bot/domain.yml | ||
CONFIG_PATH=/bot/config.yml | ||
DATA_PATH=/bot/data/ | ||
MODELS_PATH=/bot/models/ |
Oops, something went wrong.