-
Towards https://github.com/lfortran/lfortran/issues/4703
```fortran
subroutine lu(L, U)
real, intent(out), allocatable :: L(:,:), U(:,:)
integer :: i, j
allocate(L(5,5), U(5,5))
…
-
I slept on the idea of implementing this and found out that we need to make a design choice. The choice will be applicable to any data structure defined by a struct (i.e., lists, tuples, class, exclud…
-
It's a great job and it shown extraordinary results for zero-shot condition. Have you test your model on mandarin datasets?If I want to try on mandarin datasets, which module i need to modify.
-
As more models and better APIs become available, we are all going to need a config management interface to set the various components in Sunva backend and pipeline systems.
References:
https://gis…
-
@amritkromana Getting this error. Can you provide access to the models?
Failed to retrieve file url:
Cannot retrieve the public link of the file. You may need to change
the permis…
-
Ref: #3674
```fortran
subroutine print_generic(generic)
class(*), intent(in), optional :: generic
select type(generic)
type is (character(len=*))
print*, adjustl(generic)
…
-
```fortran
program main
implicit none
print*, maskr(63, 8)
end
```
The above fortran program is converted to the below program with asr_to_fortran.
```fortran
program main
implic…
-
你好,想请教一个问题。
我希望将一个音频中的说话人进行分离。每一段切分的子音频 有开始时间,持续时间,说话的内容,以及说话人的id。
我不清楚在这个仓库中是否提供这样的功能。
感谢
-
**What's the issue?**
`sudo apt install snips-asr-model-en-500mb` installs with uid 501 and group staff on rpi3
**Use Cases Impacted**
A security/permissions issue
**How to reproduce**
```
s…
-
I am using zipformer with online model (streaming mode) using C APIs on android platform, the ASR functionality is working OK. In my code during constructor call, I am initializing and keeping the rec…