libffm 0.2.0

Field-aware factorization machines in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: build
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        target-feature: [+sse3, -sse3]
    env:
      RUSTFLAGS: -C target-feature=${{ matrix.target-feature }}
    steps:
      - uses: actions/checkout@v4
      - run: cargo test
      - run: cargo run --bin ffm-train --features cli -- data/train.ffm
      - run: cargo run --bin ffm-predict --features cli -- data/test.ffm train.ffm.model output.txt