TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How to deploy an AI App?

1 点作者 gyeonggi超过 6 年前
My mate and I are thinking of deploying a website (maybe running Node &amp; Express), where users can upload an image. That image will be passed to a python script in the same environment, which will contain the AI logic &#x2F; neural network. Then we want the image to be sent back to the front end.<p>We are looking for the lowest-cost solution as this is just a hobby project, maybe even a solution where the server starts up on demand when someone tries to reach the website.<p>How would you deploy an application of this sort, using what cloud service?

2 条评论

SkyTreasure超过 6 年前
If you haven&#x27;t brought aws yet. They provide 1 year free service, check if its available.<p>Then deploy your server side API code using lamda and serve users from that layer(Read abt serverless architecture, u don&#x27;t need an ec2 instance). Which is relatively cheap, its pricing is based on number of times it runs, if i remember correctly they give 1 million free call per month i guess, even if its not, its pricing is relatively cheap.<p>And store the images in s3.
评论 #18506187 未加载
pplonski86超过 6 年前
How big is your model (neural network)? How many RAM you need to load the model? How big are images?<p>Do you need a website running (same pages with html)? Or just need API to the model?
评论 #18506180 未加载