binhvq
binhvq
Hi lopuhin! I was write code for load model and generate text. It's very simple. Thanks
Cấu hình hệ thống: * Server: 24 core * RAM 80GB * Process: 10 Sử dụng 2 cách: * Queue để get text line * Pool.map **Vấn đề: Process được...
i have same error, i was fix dump vocab and reload vocabulary, this error from vocab = list(set(data_)), EG: first: vocab = [1,2,3,4] 2nd: vocab = [2,1,4,3]
I use this ` app.get("/static/:path", static) app.get("/*", catch_all) app.get("/robots.txt", robots) app.get("/sitemap_*", sitemaps) `
simple setup ```python from socketify import App, AppOptions def make_app(app:App): app.get("/sitemap_*", lambda res, req: res.end("Hello World socketify from Python!")) if __name__ == "__main__": app = App() make_app(app) app.listen(3000, lambda config:...
I switched my project to using fastapi.