Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,7 @@ cython_debug/

# idea
.idea/
/datasets/WikiTableQuestions/
/utils/draft.py
/utils/Amazon Sale Report.csv
/utils/draft_2.py
14 changes: 14 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,23 @@
## Authors

\#TODO


# Docker Setup for Duckling

## Prerequisites
Run the following commands in your terminal to install system dependencies and add your user to the Docker group:

```bash
# Update package list and install required dependencies
sudo apt-get update
sudo apt-get install -y libgmp-dev libpcre3-dev build-essential

# Add user 'master' to the docker group
sudo usermod -aG docker master

#run docker
docker run -d -p 8000:8000 --name duckling rasa/duckling

# Check container status
docker ps
Loading