-
### Pre-flight checklist
- [x] I have read the [contribution documentation](https://github.com/electron/forge/blob/main/CONTRIBUTING.md) for this project.
- [x] I agree to follow the [code of conduct…
-
**Describe the bug**
CUDA out of memory when use whisper model. For example, when use whisper-tiny.en on small dataset like an4, even using GPU: A6000 (48GB) will encourter CUDA out of memeory issue…
-
### Minimal Reproducible Example
```fortran
program main
implicit none
type :: Circle
real :: radius = 1.0
end type Circle
call print_radius(Circle(1.5), C…
-
Hi team, thank you so much for this great software and all the work put into the lists!
I have been trying to use the tool to set some individual configurations without editing the csv lists. Inste…
-
Hi,
I attempted to run the following command using the base model:
```bash
docker run -d --gpus all -p 9000:9000 -e ASR_MODEL=base -e ASR_ENGINE=openai_whisper onerahmet/openai-whisper-asr-webs…
-
## Minimal Reproducible Example
```f90
program main
real(8) :: a(2, 2), b(2, 2)
a = 1
b = 2
print *, max(a, b, dim=1)
end program
```
For the above fortran program, on i…
-
I have dataset with Uzbek audios. But sometimes model predicts as [tr] or even [ru]. How can I force model to make prediction as [uz] language?
-
```fortran
program main
character(3), parameter :: ar1 = repeat(["abc", "#^1", "123"], [1, 2, 3])
end program
```
```console
$ gfortran a.f90 && ./a.out
a.f90:2:48:
2 | c…
-
Long time ago I did the following workaround:
```c++
void visit_Function(const ASR::Function_t &x) {
// FIXME: this is a hack, we need to pass in a non-const `x`,
/…
-
```fortran
PROGRAM test_present
print *, f(42.9)
CONTAINS
LOGICAL FUNCTION f(x)
INTEGER, INTENT(IN), OPTIONAL :: x
f = PRESENT(x)
END FUNCTION
END PROGRAM
```
```console
$ lfo…