Update math/rand/v2 #98
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
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.21" | |
- 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 |