AYE89

coding & learning

导航

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页

2017年9月6日

摘要: mono-unity github: https://github.com/Unity-Technologies/mono/blob/unity-staging/mono/metadata/assembly.c 此方案需要assemblyname已在GAC中,若不在可以用反射方式读取 mono_im 阅读全文

posted @ 2017-09-06 15:49 AYE89 阅读(1766) 评论(0) 推荐(0) 编辑

2017年9月5日

摘要: mono4.5 https://github.com/Unity-Technologies/mono 查看mono源码: cpp形式可以如下 其中MonoImage定义 数据类型说明: gunichar is defined as typedef guint32 gunichar guint32 i 阅读全文

posted @ 2017-09-05 10:27 AYE89 阅读(1076) 评论(0) 推荐(0) 编辑

2017年9月4日

摘要: Environment.getDataDirectory().getPath() : /dataEnvironment.getDownloadCacheDirectory().getPath() : /cacheEnvironment.getExternalStorageDirectory().ge 阅读全文

posted @ 2017-09-04 10:52 AYE89 阅读(2285) 评论(0) 推荐(0) 编辑

2017年9月1日

摘要: 代码如下 dlopen打开失败: dlopen第三方动态库时经常会发生打开失败的错误,可以适用dlerror()函数查看具体错误: 阅读全文

posted @ 2017-09-01 10:45 AYE89 阅读(6871) 评论(0) 推荐(0) 编辑

2017年8月30日

摘要: 本文针对Android 7.1 /sdcard是/mnt/sdcard的符号链,指向/storage/self/primary, /mnt/sdcard,也是符号链,指向/storage/self/primary, /storage/10F5-111D 是sdcard的分区…… 内部存储: inte 阅读全文

posted @ 2017-08-30 13:22 AYE89 阅读(1106) 评论(0) 推荐(0) 编辑

2017年8月29日

摘要: ART 虚拟机下Hook工具:VirtualHook http://bbs.pediy.com/thread-216786.htm Github: https://github.com/rk700/VirtualHook 代码结构: YAHFA是一个ART的Hook框架(可以Hook应用层、Java 阅读全文

posted @ 2017-08-29 13:23 AYE89 阅读(1256) 评论(0) 推荐(0) 编辑

摘要: Can't bind to local 8630 for debugger 表明本地8630端口被占用 1、Windows平台 在windows命令行窗口下执行: 1.查看所有的端口占用情况 C:\>netstat -ano 协议 本地地址 外部地址 状态 PID TCP 127.0.0.1:870 阅读全文

posted @ 2017-08-29 12:01 AYE89 阅读(485) 评论(0) 推荐(0) 编辑

2017年8月24日

摘要: BP 神经网络的简单实现 常用层 常用层对应于core模块,core内部定义了一系列常用的网络层,包括全连接、激活层等 Dense层 Dense就是常用的全连接层,所实现的运算是output = activation(dot(input, kernel)+bias)。其中activation是逐元素 阅读全文

posted @ 2017-08-24 18:35 AYE89 阅读(4669) 评论(1) 推荐(0) 编辑

摘要: 参考《Keras中文文档》http://keras-cn.readthedocs.io/en/latest/ 相关概念:神经网络优化器(优化策略)、梯度下降、随机梯度下降、小批的梯度下降(mini-batch gradient decent)、batch_size batch 这个概念与Keras无 阅读全文

posted @ 2017-08-24 16:43 AYE89 阅读(2170) 评论(0) 推荐(0) 编辑

摘要: 参考:Python3.6.2文档 Source code: Lib/concurrent/futures/thread.py and Lib/concurrent/futures/process.py Executor对象 class concurrent.futures.Executor 方法: 阅读全文

posted @ 2017-08-24 15:37 AYE89 阅读(341) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页