Skip to content

Update some files

Update some files #102

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Download testdata
run: |
make datasetdl
- name: Tests
run: |
make test
- name: MNIST
run: |
make mnist1
- name: CBOW
run: |
make cbow
- name: CBOW(Negative Sampling)
run: |
make cbow_negative_sampling
- name: RNNLM
run: |
make rnnlm
- name: RNNLM(LSTM)
run: |
make rnnlm_lstm
- name: RNNLM(GRU)
run: |
make rnnlm_gru
- name: RNNLMGen(GRU)
run: |
make rnnlm_gen
- name: Seq2Seq
run: |
make seq2seq
- name: Seq2Seq(Attention)
run: |
make seq2seq_attention
- name: Codecov
uses: codecov/codecov-action@v3