上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 51 下一页
摘要: Security and Cryptography in Python - Substitution Cipher A Substitution Cipher has \[ 26! = 403291461126605635584000000 \] possible permutations / po 阅读全文
posted @ 2021-02-03 20:20 晨风_Eric 阅读(79) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Check the performance and understand how fast the space of permutations grows def faculty(n): if n <= 1: return 阅读全文
posted @ 2021-02-02 20:23 晨风_Eric 阅读(52) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Implementing a counter on how many permutations there are from itertools import permutations my_list = [1, 2, 3] 阅读全文
posted @ 2021-02-01 22:17 晨风_Eric 阅读(62) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Attack on Caesar Cipher Crypto Rule #1(Kerckhoffs' Principle) Eve should not be able to break the ciphers even w 阅读全文
posted @ 2021-01-31 15:02 晨风_Eric 阅读(53) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Caesar Cipher Decryption Coding in Python def generate_key(n): letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" key = {} c 阅读全文
posted @ 2021-01-31 14:37 晨风_Eric 阅读(40) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Caesar Cipher Coding in Python def generate_key(n): letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" key = {} cnt = 0 for 阅读全文
posted @ 2021-01-31 13:39 晨风_Eric 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Python for Data Science - Next Steps Network analysis using Python Deep learning, reinforcement learning, semi-supervised learning Start practicing Co 阅读全文
posted @ 2021-01-30 17:12 晨风_Eric 阅读(47) 评论(0) 推荐(0) 编辑
摘要: Chapter 6 - Other Popular Machine Learning Methods Segment 6 - Ensemble methods with random forest Ensemble Models Ensemble models are machine learnin 阅读全文
posted @ 2021-01-30 17:01 晨风_Eric 阅读(60) 评论(0) 推荐(0) 编辑
摘要: Chapter 6 - Other Popular Machine Learning Methods Segment 5 - Naive Bayes Classifiers Naive Bayes Classifiers Naive Bayes is a machine learning metho 阅读全文
posted @ 2021-01-30 16:11 晨风_Eric 阅读(65) 评论(0) 推荐(0) 编辑
摘要: Python for Data Science - Decision Trees With CART Decision Tree A decision tree is a decision-support tool that models decisions in order to predict 阅读全文
posted @ 2021-01-29 21:38 晨风_Eric 阅读(259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 51 下一页