matrix-spam-ml

git clone git://archive.git.mtrnord.blog/MTRNord/matrix-spam-ml.git
Log | Files | Refs | Submodules | README | LICENSE

commit e779e49030581de0e8be670a95795bf9a4ddf27b
parent f93e5aae40f6774a7942900098b21643d138d361
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed, 23 Nov 2022 21:43:18 +0100

Disable cargo-vet

Diffstat:
D.github/workflows/vet.yml | 22----------------------
Mmodel_v2.py | 3---
2 files changed, 0 insertions(+), 25 deletions(-)

diff --git a/.github/workflows/vet.yml b/.github/workflows/vet.yml @@ -1,22 +0,0 @@ -name: CI -on: [push, pull_request] -jobs: - cargo-vet: - name: Vet Dependencies - runs-on: ubuntu-latest - env: - CARGO_VET_VERSION: 0.3.0 - steps: - - uses: actions/checkout@master - - name: Install Rust - run: rustup update stable && rustup default stable - - uses: actions/cache@v2 - with: - path: ${{ runner.tool_cache }}/cargo-vet - key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }} - - name: Add the tool cache directory to the search path - run: echo "${{ runner.tool_cache }}/cargo-vet/bin" >> $GITHUB_PATH - - name: Ensure that the tool cache is populated with the cargo-vet binary - run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet - - name: Invoke cargo-vet - run: cargo vet --locked diff --git a/model_v2.py b/model_v2.py @@ -12,9 +12,6 @@ from nltk.corpus import stopwords from tensorflow import keras vocab_size = 1000 -# embedding_dim = 16 -# embedding_dim = 32 -# embedding_dim = 64 logdir = "logs/scalars/" + datetime.now().strftime("%Y%m%d-%H%M%S")