-
The following code:
```python
from ltypes import i32
def g() -> i32:
print("Something")
return 3
def f() -> i32:
2 + g()
return 42
f()
```
Gives:
```console
$ lpytho…
-
MRE:
```py
from lpython import i32
class test:
x: i32 = 4
print(test.x)
```
Error:
```console
$ lpython examples/expr2.py
ASR verify pass error: Var_t::m_v test does not point to a…
-
- Docker镜像版本:funasr-runtime-sdk-online-cpu-0.1.10
Dockerfile:
```dockerfile
FROM registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-online-cpu-0.1.10
WORKDIR /workspace/Fu…
-
```console
(lp) namannimmo@srf lpython % cat t.py
def f():
l: list[str]
l = ['a', 'b', 'c']
print(l)
f()
(lp) namannimmo@srf lpython % lpython t.py && ./a.out
Internal Compile…
-
Document in https://github.com/lfortran/lfortran/blob/6eeb126cde6dcc4a1e73371e0fa3c7a010324b7f/doc/src/asr/asr_nodes/expression_nodes/IntrinsicFunction.md that IntrinsicFunction should be such functio…
-
## 論文タイトル(原文まま)
The Interspeech 2024 Challenge on Speech Processing Using Discrete Units
## 一言でいうと
離散単位を用いた音声処理の新しいベンチマークを提案し、多言語ASR、TTS、歌声合成の3つのタスクでその有効性を評価するチャレンジを紹介。
### 論文リンク
[arXiv:2406.…
-
Currently I get:
```
File "/Users/ondrej/repos/lfortran/lfortran/src/libasr/codegen/asr_to_llvm.cpp", line 5104
this->visit_expr(*x);
File "../libasr/asr.h", line 4956
File "../libasr/a…
-
Cannot start speech2text: OSError: [Errno -9996] Invalid input device (no default output device)
INFO: 127.0.0.1:50390 - "POST /api/wake_and_asr/ HTTP/1.1" 500 Internal Server Error
I'm testing it…
-
Have you or anyone you know applied your CTC modifaction succesfully to ASR since none of those results are included in the paper?
-
I'm having trouble finding out how to add LoRA layers to my baseline model when inferencing.
I am trying to create different LoRA layers that can be swapped out on a single pre-trained model.
I…