jiyzhang

Results 5 comments of jiyzhang

@colercoast3r @Fohrbach Me too

Same issue on Mac platform: g++ -DHAVE_CONFIG_H -I. -O3 -Wall -c -o crf_learn.o crf_learn.cpp crf_learn.cpp:9:10: fatal error: 'winmain.h' file not found #include "winmain.h" ^~~~~~~~~~~ 1 error generated. make[1]: *** [crf_learn.o]...

same issue, with Mac(macOS 14.4) and Android(Xiaomi HyperOS 1.0.2)

`DATABASE_URL="file:/Users/xyz/private/chatollama.sqlite"` > npm run prisma-migrate > > > prisma-migrate > > prisma migrate dev > > Environment variables loaded from .env > Prisma schema loaded from prisma/schema.prisma > Datasource "sqlite":...

在M1 Mac上尝试使用了MPS,监控也可以看到GPU的使用情况,但推理速度并不快 修改 deploy/web_streamlit_for_instruct_v*.py, 将其中的 v.cuda()改成 ` device = torch.device("mps" if torch.backends.mps.is_available() else "cpu") ` ` v.to(device) ` 以及注释掉 `torch.cuda.empty_cache()`