-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retired the skater module. Updated to scikit-learn 0.23.1 which has the new capability to calculate feature importances. Updated to spaCy 2.2.4 and applied related fixes. Doc updates.
- Loading branch information
Nabeel
committed
May 28, 2020
1 parent
9dbf33c
commit 5bfad12
Showing
11 changed files
with
154 additions
and
82 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 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,37 @@ | ||
# Use an official Python runtime as a parent image | ||
FROM python:3.6.8 | ||
|
||
# Set the working directory to /qlik-py-tools | ||
WORKDIR /qlik-py-tools | ||
|
||
# Copy the current directory contents into the container at /qlik-py-tools | ||
COPY . /qlik-py-tools | ||
|
||
# Install dependencies | ||
RUN apt-get update | ||
RUN apt-get install build-essential | ||
|
||
# Upgrade pip and setuptools | ||
RUN python -m pip install --upgrade setuptools pip | ||
|
||
# Install required packages | ||
RUN pip install wheel==0.34.2 | ||
RUN pip install grpcio==1.26.0 grpcio-tools==1.26.0 numpy==1.17.5 scipy==1.4.1 pandas==0.25.3 cython==0.29.14 joblib==0.11 holidays==0.9.11 pyyaml==5.3 | ||
RUN pip install pystan==2.17 | ||
RUN pip install fbprophet==0.4.post2 | ||
RUN pip install scikit-learn==0.23.1 | ||
RUN pip install hdbscan==0.8.26 | ||
RUN pip install spacy==2.2.4 | ||
RUN pip install efficient_apriori==1.0.0 | ||
RUN pip install tensorflow==1.14.0 | ||
RUN pip install keras==2.2.5 | ||
RUN python -m spacy download en | ||
|
||
# Make ports 80 and 50055 available to the world outside this container | ||
EXPOSE 80 50055 | ||
|
||
# Set the working directory to /qlik-py-tools/core | ||
WORKDIR /qlik-py-tools/core | ||
|
||
# Run __main__.py when the container launches | ||
CMD ["python", "__main__.py"] |
Oops, something went wrong.