Python
Python is a dynamically typed programming language designed by Guido van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.
- Sign up for GitHub or sign in to edit this page
- Created by Guido van Rossum
- Released February 20, 1991
Here are 123,948 public repositories matching this topic...
Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.
-
Updated
Dec 2, 2019 - Python
A curated list of awesome Python frameworks, libraries, software and resources
-
Updated
Dec 2, 2019 - Python
All Algorithms implemented in Python
-
Updated
Dec 2, 2019 - Python
Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy. Avoid writing scripts or custom code to deploy and update your applications — automate in a language that approaches plain English, using SSH, with no agents to install on remote systems. https://docs.ansible.com/ansible/
-
Updated
Dec 2, 2019 - Python
scikit-learn: machine learning in Python
-
Updated
Dec 2, 2019 - Python
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2)
-
Updated
Dec 2, 2019 - Jupyter Notebook
Repro:
@torch.jit.script
class Timebase:
def __init__(
self,
numerator, # type: int
denominator, # type: int
):
# type: (...) -> None
self.numerator = numerator # type: int
self.denominator = denominator # type: int
Produces the error:
RuntimeError: Return type line '# type: (...) -> ...' not found on multiline
The world's simplest facial recognition api for Python and the command line
-
Updated
Dec 2, 2019 - Python
:house_with_garden: Open source home automation that puts local control and privacy first
-
Updated
Dec 2, 2019 - Python
100 Days of ML Coding
-
Updated
Dec 2, 2019 - Python
Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.
-
Updated
Dec 2, 2019 - Python
给定两个由小写字母构成的字符串 A 和 B ,只要我们可以通过交换 A 中的两个字母得到与 B 相等的结果,就返回 true ;否则返回 false 。
示例 1:
输入: A = "ab", B = "ba"
输出: true
示例 2:
输入: A = "ab", B = "ab"
输出: false
示例 3:
输入: A = "aa", B = "aa"
输出: true
示例 4:
输入: A = "aaaaaaabc", B = "aaaaaaacb"
输出: true
示例 5:
输入: A = "", B = "aa"
输出: false
提示:
0 <= A.length <= 20000
0 <= B.length <= 20000
A 和 B 仅由小写字母构成。
来源:力扣(L
A collection of design patterns/idioms in Python
-
Updated
Dec 2, 2019 - Python
Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more
-
Updated
Dec 2, 2019 - Python
AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP
-
Updated
Dec 2, 2019 - Python
Python Data Science Handbook: full text in Jupyter Notebooks
-
Updated
Dec 2, 2019 - Jupyter Notebook
Learn about python
- Organization
- python
- Website
- www.python.org
- Wikipedia
- Wikipedia
In tensorflow website, it describes tf.losses.cosine_simialrity as follows:
Note that it is a negative quantity between -1 and 0, where 0 indicates orthogonality and values closer to -1 indicate greater similarity.
In fact, the quantity is from 1. to -1., it just takes a negative from normal cosine_similarity.
The page is at
https://tensorflow.google.cn/api_docs/python/tf/keras/losses/cosine_