-
「译」Core ML 介绍:构建一个简单的图片识别 APP
本文是翻译于AppCoda社区,如有版权问题,请告知,会配合处理 原文地址在 WWDC 2017, Apple 发布了很多令人兴奋的框架和 APIs 供开发者使用。在所有的新框架中,最受欢迎的无疑是 Core ML。 Core ML 是一个可以利用它将机器学习模型集成到应用程序中的框架。Core ML 最棒的地方在于,你不需要对神经网络和机器学习有有广泛的了解;Core ML 的另一个特性是,只要你能将其转换成 Core ML 模型,你就可以使用预先训练好的数据模型。为了演示目的,我...…
-
Aspects
layout: posttitle: Aspectdate: 2018-07-24 10:26:24.000000000 +09:00—为何Aspects在定义ErrorLog宏的时候采用while(0)的循环#define AspectLogError(...) do { NSLog(__VA_ARGS__); }while(0)#define AspectError(errorCode, errorDescription) do { \AspectLogError(@"Aspects:...…
-
Design
记录寻找设计素材的来源发现一个很好的设计素材网站 uplabs.com 需要翻墙…
-
LeetCode failed to record
在实现LeetCode的问题记录 两数之和未通过方案在使用一次遍历,然后寻找数组中是否包含 array.contains(tartget - nums[i]), 再获取complement的索引,该索引和i不相等。代码如下: func twoSum(_ nums: [Int], _ target: Int) -> [Int] { for i in 0 ..< nums.count { let complement = target - nums...…
-
Questions of Jekyll on Github Page
1.build过程将Vno-Jekyll下载后,copy到<username>.github.io的仓库 root 目录下, 执行 bundle install安装好当前Jekyll的依赖。效果如下EmptyWalker-2:github-site emptywalker$ bundle installFetching gem metadata from https://rubygems.org/...........Fetching public_suffix 2.0.5In...…
-
Hello World - Vno
What’s thisVno Jekyll is a theme for Jekyll. It is a port of my Ghost theme vno, which is originally developed from Dale Anthony’s Uno.Usage$ git clone https://github.com/onevcat/vno-jekyll.git your_site$ cd your_site$ bundler install$ bundler exe...…
-
Sample Post
You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run jekyll serve, which launches a web server and auto-r...…