Commit
·
c69ef82
1
Parent(s):
fd1cc62
initial functioning image
Browse files- Dockerfile +36 -0
- README.md +3 -1
- requirements.txt +9 -0
Dockerfile
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# copied/adapted from oriingal docker file here: https://github.com/NeotomaDB/MetaExtractor/tree/main/docker/data-review-tool
|
2 |
+
|
3 |
+
FROM python:3.10
|
4 |
+
|
5 |
+
RUN git clone https://github.com/NeotomaDB/MetaExtractor.git
|
6 |
+
|
7 |
+
# Copy the requirements.txt file to the working directory
|
8 |
+
# COPY ./requirements.txt .
|
9 |
+
|
10 |
+
# Install the Python dependencies
|
11 |
+
RUN pip install --no-cache-dir -r MetaExtractor/docker/data-review-tool/requirements.txt
|
12 |
+
|
13 |
+
WORKDIR MetaExtractor/
|
14 |
+
|
15 |
+
ENV LOG_LEVEL=DEBUG
|
16 |
+
|
17 |
+
# Expose the port your Dash app is running on
|
18 |
+
# changed from default 8050 to match HF spaces requirements
|
19 |
+
# edit the port in the app.py file
|
20 |
+
# inspired from: https://stackoverflow.com/questions/27713362/editing-files-from-dockerfile
|
21 |
+
RUN sed -i "s|port=8050|port=7860 |g" ./src/data_review_tool/app.py
|
22 |
+
EXPOSE 7860
|
23 |
+
|
24 |
+
RUN pip install pyarrow
|
25 |
+
|
26 |
+
RUN mkdir -p ./inputs
|
27 |
+
|
28 |
+
# set defualt env variables to sample files in the repo
|
29 |
+
ENV ARTICLE_RELEVANCE_BATCH=article-relevance-output.parquet
|
30 |
+
ENV ENTITY_EXTRACTION_BATCH=entity-extraction-output.zip
|
31 |
+
|
32 |
+
# instead of vlume mapping copy sample files to expected input folder in regular image
|
33 |
+
RUN cp ./data/data-review-tool/article-relevance-output.parquet ./inputs \
|
34 |
+
&& cp ./data/data-review-tool/entity-extraction-output.zip ./inputs
|
35 |
+
|
36 |
+
ENTRYPOINT python src/data_review_tool/app.py
|
README.md
CHANGED
@@ -8,4 +8,6 @@ pinned: false
|
|
8 |
license: mit
|
9 |
---
|
10 |
|
11 |
-
|
|
|
|
|
|
8 |
license: mit
|
9 |
---
|
10 |
|
11 |
+
This is a sample image of the MetaExtractor Data Review Tool which can be used to review research article data extracted using the [finding-fossils/metaextractor](https://huggingface.co/finding-fossils/metaextractor) model.
|
12 |
+
|
13 |
+
See the GitHub Repo for more information: [github.com/NeotomaDB/MetaExtractor](https://github.com/NeotomaDB/MetaExtractor)
|
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dash==2.9.3
|
2 |
+
dash_bootstrap_components==1.4.1
|
3 |
+
dash_iconify==0.1.2
|
4 |
+
dash_mantine_components==0.12.1
|
5 |
+
numpy==1.24.3
|
6 |
+
pandas==1.5.3
|
7 |
+
plotly==5.14.1
|
8 |
+
seaborn==0.12.2
|
9 |
+
dash-player==1.1.0
|