精选几个好玩的开源AI应用

1、自动生成藏头诗或者藏字诗

古诗词生成器
利用 LSTM 神经网络,输入提供的词语,输出对应的藏头诗或藏字诗。适合程序员节日送礼,走亲访友。

开源项目地址:http://www.momodel.cn:8899/#/explore/5bfd118f1afd942b66b36b30?type=app&tab=1

体验地址:http://www.momodel.cn:8899/#/appcenter/5bfd118f1afd942b66b36b30

API请求:

import requests
base_url = "http://www.momodel.cn:8899/pyapi/apps/run/"
app_id = "5bfd118f1afd942b66b36b30"
input_dic = {"Chinese_word":"","style":""}
app_version = "0-0-10"
payload = {"app":{"input":input_dic},"version":app_version}
response = requests.post(base_url+app_id, json=payload)

2、线稿自动上色

在这里插入图片描述
STYLE2PAINTS 是新一代的线稿上色 AI ,可根据用户上传的自定义色彩给线稿进行上色。个人觉得是风格转移和自动上色的组合,非常有特色

在这里插入图片描述

项目地址:https://www.oschina.net/p/style2paints

3、风格迁移

在这里插入图片描述
输入一张图片,然后选择想要输出的风格,点击提交,就可以得到相应风格的图片输出。
这个项目是优化后的快速风格迁移: 1 生成网络 2 损失网络 3 训练主要代码 4 执行主要代码 5 部署

Mo 这个平台有个特点,可以直接在线上体验实际效果,比较方便
在这里插入图片描述
项目地址:http://www.momodel.cn:8899/#/explore/5c35b25c1afd944cccb308ca?type=app&tab=1

API调用:

let url = 'http://www.momodel.cn:8899/pyapi/apps/run/5c35b25c1afd944cccb308ca'
let input = {"img":"","style":""}
let app_version = "0-0-1"
let payload = JSON.stringify({"app":{"input":input},'version':app_version})
const otherPram = {
  headers:{
    "content-type":"application/json; charset=UTF-8"
     },
  body:payload,
  method:"POST"
}
fetch(url,otherPram)
.then(data=>data.json())
.then(res=>{console.log(res)})
.catch(error=>console.log(error))

4、看图说话,根据图片生成说明

在这里插入图片描述
利用TensorFlow实现的图文说明方案。
在这里插入图片描述

项目地址:http://www.momodel.cn:8899/#/appcenter/5ba33f578fe30b412042ac08

API:

let url = 'http://www.momodel.cn:8899/pyapi/apps/run/5ba33f578fe30b412042ac08'
let input = {"img":""}
let app_version = "2-0-1"
let payload = JSON.stringify({"app":{"input":input},'version':app_version})
const otherPram = {
  headers:{
    "content-type":"application/json; charset=UTF-8"
     },
  body:payload,
  method:"POST"
}
fetch(url,otherPram)
.then(data=>data.json())
.then(res=>{console.log(res)})
.catch(error=>console.log(error))
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值