- 博客(20)
- 资源 (12)
- 收藏
- 关注
原创 unknown type name '_LIBCPP_BEGIN_NAMESPACE_STD'错误
在android加载头文件的时候,出现了unknown type name '_LIBCPP_BEGIN_NAMESPACE_STD'错误原因是:clang将*.h文件视为c头文件,将重命名为*.hpp就解决问题了,谁有知道如何正确配置clang-tidy,以便可以指定语言而不考虑文件扩展名。...
2020-01-14 14:48:07
3281
原创 Number of Proper Fractions with Denominator d
If n is the numerator and d the denominator of a fraction, that fraction is defined a (reduced) proper fraction if and only if GCD(n,d)==1.For example5/16is a proper fraction, while6/16is not, a...
2019-11-21 17:06:13
507
原创 Strings Mix
Given two strings s1 and s2, we want to visualize how different the two strings are. We will only take into account thelowercaseletters (a to z). First let us count the frequency of eachlowercasel...
2019-11-21 11:12:47
217
原创 Product of consecutive Fib numbers
The Fibonacci numbers are the numbers in the following integer sequence (Fn):0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, ...such asF(n) = F(n-1) + F(n-2) with F(0) = 0 and F(1) = ...
2019-09-17 15:13:22
310
原创 Kata Profile pic 7 kyu 62 7 kyu Find the next perfect square!
You might know some pretty large perfect squares. But what about the NEXT one?Complete the findNextSquare method that finds the next integral perfect square after the one passed as a parameter. Reca...
2019-09-03 09:38:10
275
原创 Vasya - Clerk
The new "Avengers" movie has just been released! There are a lot of people at the cinema box office standing in a huge line. Each of them has a single100,50or25dollars bill. An "Avengers" ticket ...
2019-09-02 10:51:16
196
原创 Exes and Ohs
Check to see if a string has the same amount of 'x's and 'o's. The method must return a boolean and be case insensitive. The string can contain any char.Examples input/output:XO("ooxx") => tru...
2019-08-30 10:24:57
247
原创 Reverse words
Complete the function that accepts a string parameter, and reverses each word in the string.Allspaces in the string should be retained.Examples"This is an example!" ==> "sihT si na !elpmaxe"...
2019-08-28 10:16:21
367
原创 Two to One
最近换了项目做,跟开发相差有点大了 发现自己不会写代码了 为了让自己多学点 开始在code war上练题了,从简单的开始 争取一天一题 锻炼自己开发同时巩固知识Take 2 stringss1ands2including only letters fromatoz. Return a newsortedstring, the longest possible, co...
2019-08-27 11:19:51
273
翻译 Tensorflow中简单的音频识别
本教程将向您展示如何构建可以识别 10 个不同字词的基本语音识别网络。需要注意的是,真正的语音和音频识别系统要复杂得多,但就像用于识别图像的 MNIST,这个基本语音识别网络能够帮助您基本了解所涉及的技术。学完本教程后,您将获得一个模型,该模型会尝试将时长为 1 秒的音频片段归类为无声、未知字词、“yes”、“no”、“up”、“down”、“left”、“right”、“on”、“off”、“s...
2019-04-18 17:14:27
3607
1
翻译 Eager Execution
TensorFlow 的 Eager Execution 是一种命令式编程环境,可立即评估操作,无需构建图:操作会返回具体的值,而不是构建以后再运行的计算图。这样能让您轻松地开始使用 TensorFlow 和调试模型,并且还减少了样板代码。要遵循本指南,请在交互式python解释器中运行下面的代码示例。Eager Execution 是一个灵活的机器学习平台,用于研究和实验,可提供:直...
2019-04-10 15:02:06
1312
翻译 Keras
Keras 是一个用于构建和训练深度学习模型的高阶 API。它可用于快速设计原型、高级研究和生产,具有以下三个主要优势:方便用户使用 Keras 具有针对常见用例做出优化的简单而一致的界面。它可针对用户错误提供切实可行的清晰反馈。 模块化和可组合 将可配置的构造块连接在一起就可以构建 Keras 模型,并且几乎不受限制。 易于扩展 可以编写自定义构造块以表达新的研究创意,并且可以创建...
2019-04-10 15:00:24
356
翻译 TensorFlow 指南
TensorFlow 指南本单元中的文档深入介绍了 TensorFlow 的工作原理。这些单元包括:高阶 APIKeras,用于构建和训练深度学习模型的 TensorFlow 高阶 API。 Eager Execution,一个以命令方式编写 TensorFlow 代码的 API,就像使用 NumPy 一样。 Estimator,一个高阶 API,可以提供已准备好执行大规模训练和生...
2019-04-10 14:56:05
158
翻译 TensorFlow简单的音频识别,官方文档
本教程将向您展示如何构建可以识别 10 个不同字词的基本语音识别网络。需要注意的是,真正的语音和音频识别系统要复杂得多,但就像用于识别图像的 MNIST,这个基本语音识别网络能够帮助您基本了解所涉及的技术。学完本教程后,您将获得一个模型,该模型会尝试将时长为 1 秒的音频片段归类为无声、未知字词、“yes”、“no”、“up”、“down”、“left”、“right”、“on”、“off”、“s...
2019-04-08 17:26:06
5050
2
原创 SDK 提供的命令行工具
emulator 启动模拟器ddms 启动调试界面adb 连接和操作模拟器或手机设备traceview 启动性能检测界面,可以查看程序运行情况,显示个函数调用关系和时间消耗hierarchyviewer 调试和调整UI布局layoutopt 分析UI布局aidl 为进程间通信创建接口代码
2017-01-17 14:57:48
561
原创 array01
public class ThinkingInJava04 {public static void main(String[] args) {// TODO Auto-generated method stub// System.out.println("Creating new Cupboard()in main");// new Cupboard();// System.out.println
2014-10-16 15:11:22
453
原创 2013.4.15 双缓冲技术
主要原理:当一个动画争先显示时,程序有在改变他,前面还没有显示完,程序又请求重新绘制,这样屏幕就会不停的闪烁。为了避免闪烁,可以用双缓冲技术,将要哦处理的图片都在内存中处理好之后,再将其显示到屏幕上。这样显示出来的总是完整的图像,不会出现闪烁的现象。核心技术:先通过setBitmap方法将要绘制哦所有图形绘制到一个Bitmap上,然后在来调用drawBitmap方法绘制出这个Bitmap,显示
2013-04-15 16:13:59
659
原创 2013.3.28开会的内容
1,关于IMS应用方面,开源的项目,特别是音视频会话,控制器变为IMS客户端?物联网的应用,视频监控(和IMS/信令)基于SIP。并且和运营商的联合。2,解决实际问题(仿真程序实现)3.实验4,项目建设书,见邮件, 怎么建立信令机制,协议的应用,验证(程序)。RTP的relay机制和angent的实现发送时 将包坼分 收到是组合。算法的应用6,工作问题的把握。(在公司
2013-03-28 17:34:39
532
原创 Tomcat加入Eclipse
1在http://tomcat.apache.org/download-70.cgi上下载Tomcat2,双击tomcat的bin文件下的startup.bat启动tomcat3.在浏览器中输入http://localhost:8080/出现apache tomcat的界面就安装成功 4,在双击2中的.bat文件,停止tomcat5,配置环境:新建name:CATALINA_HOM
2013-03-22 19:10:03
525
2019SEC conferences research article.rar
2020-05-15
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人