Add PR template and note to README about said template
This commit is contained in:
parent
2cdb117101
commit
6de1119a79
2 changed files with 53 additions and 33 deletions
17
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
17
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
# Description
|
||||||
|
|
||||||
|
This pull request implements xyz or fixes abc.
|
||||||
|
|
||||||
|
closes #(issue)
|
||||||
|
closes #(another issue)
|
||||||
|
|
||||||
|
## Checklist
|
||||||
|
|
||||||
|
Please put an x inside each checkbox to indicate that you've read and followed it: `[ ]` -> `[x]`
|
||||||
|
|
||||||
|
- [ ] I/we have not leveraged GenAI to create the proposed changes.
|
||||||
|
- [ ] I/we have performed a self-review of added code.
|
||||||
|
- [ ] I/we have written code that is legible and maintainable by others.
|
||||||
|
- [ ] I/we have commented the added code, particularly in hard-to-understand areas.
|
||||||
|
- [ ] I/we have made any necessary changes to documentation.
|
||||||
|
- [ ] I/we have run `cargo fmt` and `cargo clippy`.
|
||||||
69
README.md
69
README.md
|
|
@ -18,43 +18,43 @@ cargo run --example audio_transcription
|
||||||
use whisper_rs::{WhisperContext, WhisperContextParameters, FullParams, SamplingStrategy};
|
use whisper_rs::{WhisperContext, WhisperContextParameters, FullParams, SamplingStrategy};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let path_to_model = std::env::args().nth(1).unwrap();
|
let path_to_model = std::env::args().nth(1).unwrap();
|
||||||
|
|
||||||
// load a context and model
|
// load a context and model
|
||||||
let ctx = WhisperContext::new_with_params(
|
let ctx = WhisperContext::new_with_params(
|
||||||
path_to_model,
|
path_to_model,
|
||||||
WhisperContextParameters::default()
|
WhisperContextParameters::default()
|
||||||
).expect("failed to load model");
|
).expect("failed to load model");
|
||||||
|
|
||||||
// create a params object
|
// create a params object
|
||||||
let params = FullParams::new(SamplingStrategy::Greedy { best_of: 1 });
|
let params = FullParams::new(SamplingStrategy::Greedy { best_of: 1 });
|
||||||
|
|
||||||
// assume we have a buffer of audio data
|
// assume we have a buffer of audio data
|
||||||
// here we'll make a fake one, floating point samples, 32 bit, 16KHz, mono
|
// here we'll make a fake one, floating point samples, 32 bit, 16KHz, mono
|
||||||
let audio_data = vec![0_f32; 16000 * 2];
|
let audio_data = vec![0_f32; 16000 * 2];
|
||||||
|
|
||||||
// now we can run the model
|
// now we can run the model
|
||||||
let mut state = ctx.create_state().expect("failed to create state");
|
let mut state = ctx.create_state().expect("failed to create state");
|
||||||
state
|
state
|
||||||
.full(params, &audio_data[..])
|
.full(params, &audio_data[..])
|
||||||
.expect("failed to run model");
|
.expect("failed to run model");
|
||||||
|
|
||||||
// fetch the results
|
// fetch the results
|
||||||
let num_segments = state
|
let num_segments = state
|
||||||
.full_n_segments()
|
.full_n_segments()
|
||||||
.expect("failed to get number of segments");
|
.expect("failed to get number of segments");
|
||||||
for i in 0..num_segments {
|
for i in 0..num_segments {
|
||||||
let segment = state
|
let segment = state
|
||||||
.full_get_segment_text(i)
|
.full_get_segment_text(i)
|
||||||
.expect("failed to get segment");
|
.expect("failed to get segment");
|
||||||
let start_timestamp = state
|
let start_timestamp = state
|
||||||
.full_get_segment_t0(i)
|
.full_get_segment_t0(i)
|
||||||
.expect("failed to get segment start timestamp");
|
.expect("failed to get segment start timestamp");
|
||||||
let end_timestamp = state
|
let end_timestamp = state
|
||||||
.full_get_segment_t1(i)
|
.full_get_segment_t1(i)
|
||||||
.expect("failed to get segment end timestamp");
|
.expect("failed to get segment end timestamp");
|
||||||
println!("[{} - {}]: {}", start_timestamp, end_timestamp, segment);
|
println!("[{} - {}]: {}", start_timestamp, end_timestamp, segment);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -100,4 +100,7 @@ work out of the box.
|
||||||
|
|
||||||
[Unlicense](LICENSE)
|
[Unlicense](LICENSE)
|
||||||
|
|
||||||
tl;dr: public domain
|
tl;dr: code is in the public domain
|
||||||
|
|
||||||
|
[the PR template](./.github/PULL_REQUEST_TEMPLATE.md) is derived from
|
||||||
|
[GoToSocial's PR template](https://codeberg.org/superseriousbusiness/gotosocial/src/branch/main/.gitea/pull_request_template.md)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue