-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release adds: * stability improvements * generation quality improvements * proper settings for `drama_llama` Any combination of sampling modes can be used at once to whittle candidates down to a handful or a single token.
- Loading branch information
Showing
5 changed files
with
782 additions
and
115 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ jobs: | |
with: | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
- name: Install Ninja | ||
run: brew install ninja | ||
- name: Run cargo check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
|
@@ -42,6 +44,8 @@ jobs: | |
with: | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
- name: Install Ninja | ||
run: sudo apt-get install ninja-build | ||
- name: Run cargo check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
|
@@ -58,6 +62,7 @@ jobs: | |
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
# Windows is expected to fail for the moment | ||
windows-test: | ||
runs-on: windows-latest | ||
steps: | ||
|
@@ -68,6 +73,8 @@ jobs: | |
with: | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
- name: Install Ninja | ||
run: choco install ninja | ||
- name: Run cargo check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
|
Oops, something went wrong.