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))