Skip to content

Commit 3d65915

Browse files
committed
Add instructions for reproducing.
1 parent bebaa35 commit 3d65915

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ FROM scratch
2626
COPY --from=builder /mnt/micro /
2727
WORKDIR /app
2828
COPY / /app
29-
# RUN uv sync
29+
RUN uv sync
3030

3131
CMD ["uv", "run", "src/preprocess_imdb.py"]
32+
# CMD ["uv", "run", "src/traintest_emo.py"]

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
11
# Using Encoder-Only Transformers for Sentiment Analysis
22

33
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

Comments
 (0)