We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bebaa35 commit 3d65915Copy full SHA for 3d65915
Dockerfile
@@ -26,6 +26,7 @@ FROM scratch
26
COPY --from=builder /mnt/micro /
27
WORKDIR /app
28
COPY / /app
29
-# RUN uv sync
+RUN uv sync
30
31
CMD ["uv", "run", "src/preprocess_imdb.py"]
32
+# CMD ["uv", "run", "src/traintest_emo.py"]
README.md
@@ -1,3 +1,18 @@
1
# Using Encoder-Only Transformers for Sentiment Analysis
2
3
See [the paper](./writing/paper.pdf).
4
+
5
+## Reproduce
6
7
+You can use the Dockerfile. Just build it with
8
9
+```
10
+docker build . -t eotfsa
11
12
13
+and run it. Running without any arguments will only do the preprocessing step. To get
14
+dropped in a shell with all dependencies installed, use
15
16
17
+docker run --rm -it eotfsa:latest bash -l
18
0 commit comments