拼写纠错配套资源:该文件记录了很多用户写错的单词和对应正确的单词,可以通过该文件确定每个正确的单词所对应的错误拼写方式,并计算出每个错误拼写方式出现的概率
2021-06-01 15:19:50 441KB python NLP 拼写纠错
1
了解有错误学习(LWE)的参数 在本笔记本中,我将简要介绍有错误学习(LWE)方法,该方法是一种量子后的公钥密码算法。 我们提供了数学背景,然后详细介绍了基于Python 3和numpy ,最后是我们的实验,其目的是了解更改算法参数如何影响预期结果。 我们的实验基于对值为1的单个消息的加密和解密,对于每个测试的配置,该消息执行一万次。 创建图形以可视化结果。 试试住 LWE解密 LWE是一种后量子公钥算法,有关更多信息和,请参阅。 该方法可以恢复到本节中描述的计算。 首先,创建一个公钥和私钥: 和 是公钥, 是私钥, 是随机误差,并且 。 矩阵 有尺寸 ,即它们是单列,因为在此报告中,我们实现了一位加密和解密。 加密一位消息 使用公钥 我们获得由以下组成的加密消息 和: 在哪里 是从以下样本中随机选择的 和 。 最后,解密消息 并找到位消息的值 : LWE实施 以下run函数基于,
2021-05-15 11:17:10 124KB JupyterNotebook
1
英文单词拼写混淆集:spell-errors.txt
2021-04-05 16:02:21 449KB 拼写纠错
1
understanding-and-minimising-adc-conversion-errors-stmicroelectronics.pdf
2021-04-02 17:04:45 406KB stm32
1
flashdevelop Build halted with errors (fcsh).解决方案.doc
2021-01-28 02:11:16 105KB flash actionscript
BP算法的经典文章。反向传播算法最早于上世纪70年代被提出,但是直到1986年,由David Rumelhart, Geoffrey Hinton, 和Ronald Williams联合发表了这篇论文之后,人们才完全认识到这个算法的重要性。
2019-12-21 21:02:13 2.95MB BP神经网络
1
Introduction The usual implementation of malloc and free are unforgiving to errors in their callers' code, including cases where the programmer overflows an array, forgets to free memory, or frees a memory block twice. This often does not affect the program immediately, waiting until the corrupted memory is used later (in the case of overwrites) or gradually accumulating allocated but unused blocks. Thus, debugging can be extremely difficult. In this assignment, you will write a wrapper for the malloc package that will catch errors in the code that calls malloc and free. The skills you will have learned upon the completion of this exercise are pointer arithmetic and a greater understanding of the consequences of subtle memory mistakes. Logistics Unzip debugging_malloc.zip into an empty directory. The files contained are as follows: File(s): Function: debugmalloc.c Contains the implementation of the three functions you will be writing. This is the one file you will be editing and handing in. debugmalloc.h Contains the declaration of the functions, as well as the macros that will call them. driver.c Contains main procedure and the code that will be calling the functions in the malloc package dmhelper.c, dmhelper.h Contain the helper functions and macros that you will be calling from your code grader.pl Perl script that runs your code for the various test cases and gives you feedback based on your current code debugmalloc.dsp Exercise 3 project file debugmalloc.dsw Exercise 3 workspace file tailor.h, getopt.c, getopt.h Tools that are used only by the driver program for I/O purposes. You will not need to know what the code in these files do. Others Required by Visual C++. You do not need to understand their purpose Specification Programs that use this package will call the macros MALLOC and FREE. MALLOC and FREE are used exactly the same way as the malloc() and free() functions in the standard C malloc package. That is, the li
2019-12-21 21:00:53 2KB Debugging Malloc Memory Errors
1
这是一个OpenCV 1.0.0的补丁文件。OpenCV 1.0.0在较新的linux机器上,如果选择支持ffmpeg的话,会出现找不到ffmpeg头文件和img_convert()定义等编译错误。这个补丁解决了上述问题。
2019-12-21 19:29:34 1.95MB OpenCV patch ffmpeg compilation
1