Loading

随笔分类 -  技术

上一页 1 2 3 4 5 6 ··· 11 下一页
摘要:对比深度学习十大框架:TensorFlow 并非最好? TensorFlow与主流深度学习框架对比 五大主流深度学习框架对比:MXNET是最好选择 主流开源深度学习框架对比分析 主流深度学习框架对比 深度学习框架的评估与比较 几种机器学习框架的对比和选择 机器学习框架比较 DL4J与Torch、Th 阅读全文
posted @ 2018-04-26 19:29 _朝晖 阅读(440) 评论(0) 推荐(0)
摘要:不说废话了,直接上py3 django代码: 阅读全文
posted @ 2018-03-04 12:05 _朝晖 阅读(386) 评论(0) 推荐(0)
摘要:以下内容来自由CSDN运营的人工智能头条微信公众号 阅读全文
posted @ 2018-02-23 13:11 _朝晖 阅读(1105) 评论(0) 推荐(0)
摘要:背景 Cloud Native表面看起来比较容易理解,但是细思好像又有些模糊不清:Cloud Native和Cloud关系是啥?它用来解决什么问题?它是一个新技术还是一个新的方法?什么样的APP符合“云原生”的呢?等等。下面将会一一解读。 Cloud Native介绍 Cloud Native是Ma 阅读全文
posted @ 2018-01-05 22:28 _朝晖 阅读(941) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/vencent7/article/details/76849849 自己一直用的 pyenv 和 pyenv-virtualenv 管理不同的 python 环境。昨天朋友推荐我安装一个 Anaconda(通过官网下载安装带有图形界面Anaconda Nav 阅读全文
posted @ 2017-12-26 11:43 _朝晖 阅读(811) 评论(0) 推荐(0)
摘要:1、大量的外键定义需要加on_delete参数 2、'WSGIRequest' object has no attribute 'session',这个问题是因为settings中middleware的定义参数变了,得把MIDDLEWARE_ClASSES改成MIDDLEWARE。 阅读全文
posted @ 2017-12-10 13:15 _朝晖 阅读(1007) 评论(0) 推荐(0)
摘要:https://www.leiphone.com/news/201703/iZGuGfnER4Sv2zRe.html 2017年Gartner数据科学平台(在2016年被称作“高级分析平台”)的魔力象限报告于近期出炉了。今年的报告对16个数据分析公司进行了15个标准的评估,并基于前瞻性(Comple 阅读全文
posted @ 2017-11-23 14:20 _朝晖 阅读(1077) 评论(0) 推荐(0)
摘要:https://assemblinganalytics.com/post/airbnbapache-superset-first-impressions-and-link-to-a-demo/ Today I spent some time looking into Superset, the an 阅读全文
posted @ 2017-11-23 10:19 _朝晖 阅读(1103) 评论(0) 推荐(0)
摘要:资源入口: awesome-business-intelligence https://github.com/thenaturalist/awesome-business-intelligence https://github.com/onurakpolat/awesome-bigdata http 阅读全文
posted @ 2017-11-22 17:16 _朝晖 阅读(1154) 评论(0) 推荐(0)
摘要:https://www.programmableweb.com/news/how-5-natural-language-processing-apis-stack/analysis/2014/07/28 The world is awash in digital data. The challeng 阅读全文
posted @ 2017-11-20 14:38 _朝晖 阅读(349) 评论(0) 推荐(0)
摘要:1、Live USB制作官方guide:Making a Kali Bootable USB Drive:https://docs.kali.org/downloading/kali-linux-live-usb-install ,额外说两句:1、这个制作方法做出来的的系统,你在其他系统里面因为文件 阅读全文
posted @ 2017-11-20 13:44 _朝晖 阅读(3651) 评论(0) 推荐(0)
摘要:https://blog.appdynamics.com/engineering/how-microservices-are-transforming-python-development/ Summary The goal of any tech business worth its salt i 阅读全文
posted @ 2017-11-17 13:24 _朝晖 阅读(318) 评论(0) 推荐(0)
摘要:https://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/ Universal USB Installer aka UUI is a Live Linux Bootable USB Creator that allows 阅读全文
posted @ 2017-11-15 12:51 _朝晖 阅读(1140) 评论(0) 推荐(0)
摘要:按照官方Readme文档在Ubunut16.04上成功编译安装Greenplum最新代码(now:2017-11-12 21:40) 按照文档安装的过程中主要出现两个问题: 1、Root用户安装会卡在:make create-demo-cluster这一步,原因就是Root用户不行。 2、Ok,ad 阅读全文
posted @ 2017-11-12 21:49 _朝晖 阅读(997) 评论(0) 推荐(0)
摘要:https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Sending_forms_through_JavaScript As in the previous article, HTML forms can send an HTTP req 阅读全文
posted @ 2017-11-08 19:00 _朝晖 阅读(238) 评论(0) 推荐(0)
摘要:https://blog.angular.io/version-5-0-0-of-angular-now-available-37e414935ced Version 5.0.0 of Angular Now Available We are pleased to announce version 阅读全文
posted @ 2017-11-06 16:07 _朝晖 阅读(420) 评论(0) 推荐(0)
摘要:1、Ueditor的集成主要通过把UEditor做成一个Component来实现,先上Component代码: 简单解释一下,这个代码干了啥,用DomSanitizer这个组件把本来模板中不合法的Script标签合法化,而且只能通过属性绑定的赋值,才能让模板把它渲染出来。Ng的模板自带XSS过滤,像 阅读全文
posted @ 2017-11-03 15:13 _朝晖 阅读(2631) 评论(0) 推荐(0)
摘要:其实上一篇里面提到的集成datatables.net就是admin-lte里面的一个子插件,不过这个子插件,他是自带types定义文件的,admin-lte这个东西在DefinitelyTyped里面目前没有人给它写过types定义,不过倒也不难,他也是基于jQuery的扩展,同类典型是Bootst 阅读全文
posted @ 2017-11-03 15:05 _朝晖 阅读(2108) 评论(0) 推荐(0)
摘要:集成步骤: 1、安装jquery极其扩展插件库ts定义文件 2、页面加载jquery和扩展插件: 3、把扩展插件module加入到tsconfig.app.json的types配置。 4、调用扩展插件的方法: 5、运行ng serve: 这个里面有个问题,就是我们不是直接去尝试调用jquery pl 阅读全文
posted @ 2017-11-02 18:34 _朝晖 阅读(2574) 评论(0) 推荐(0)
摘要:说在前面,根据Angular官方命名,Angular.js主要指版本1.*,Anuglar主要只v2之后的版本,此处的学习笔记主要是最近学习Angular4过程中的一些记录 1、几条技术线:TypeScript、Angular、JavaScript、打包工具、配置 2、投入工程实践应该有梯度,从简单 阅读全文
posted @ 2017-10-28 13:26 _朝晖 阅读(187) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 11 下一页