starmoon-1134

Results 14 comments of starmoon-1134

https://mm.kaist.ac.kr/datasets/voxceleb/ 可以从这里下载,需要非个人邮箱,公司邮箱就能用,机器审核,很快就能收到邮件

2年过去了,还没有计划吗

按照你的提示,已经可以通过localhost:1002/my-app/ 的方式访问了,但是通过nginx反代之后就404了,nginx这么配置有问题吗(本人小白) > location /my-app/ { #chagpt路径 > proxy_redirect off; > proxy_pass http://127.0.0.1:1002; #chagpt监听端口 > proxy_http_version 1.1; > proxy_set_header Upgrade $http_upgrade; > proxy_set_header Connection "upgrade"; > proxy_set_header Host $host; >...

前端代理成功了,浏览器请求的时候,路径末尾少了/ 导致请求失败。也可以把vite.config.ts中base路径末尾的/去掉,即 ``` export default { // ... base: '/my-app', server: { // dev server 配置中要相同 port: 8080, base: '/my-app' } } ``` 修改前端环境变量 .env VITE_GLOB_API_URL=/my-app-backend/api 然后后端就404了,通过nginx替换路径解决,不知道是否还有更优雅的方式呢? ``` location /my-app-backend...

I use the version of 2.2.14, and with --clean --no_use_postgres options, get the same error

> I use the version of 2.2.14, and with --clean --no_use_postgres options, get the same error My issue is due to missing the .lab file.

> Doesn't seem to work with slmadv training though. I encountered a similar issue. If slm_out is None, the next iteration at accelerator.backward(g_loss) would throw an error: ``` [rank0]: RuntimeError:...