Python
Python is a dynamically-typed garbage-collected programming language developed by Guido van Rossum in the late 80s to replace ABC. 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.
Here are 228,547 public repositories matching this topic...
Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.
-
Updated
Sep 17, 2021 - Python
-
Updated
Sep 8, 2021 - Java
https://github.com/TheAlgorithms/Python/blob/master/data_structures/disjoint_set/disjoint_set.py
def union_set(x, y):
"""
union two sets.
set with bigger rank should be parent, so that the
disjoint set tree will be more flat.
"""
x, y = find_set(x), find_set(y)
if x.rank > y.rank:
y.parent = x
else:
x.parent = y
if x.raA curated list of awesome Python frameworks, libraries, software and resources
-
Updated
Sep 14, 2021 - Python
-
Updated
Sep 8, 2021
Description
Since we have Kotlin tutorials for available, why not include Flutter?
Why
We should allow this option when considering mobile development.
Possible Implementation & Open Questions
Similar to other sections formats, add sources and links for people to study.
Is this something you're interested in working on?
- YES
- NO
Deep Learning for humans
-
Updated
Sep 17, 2021 - Python
As easy as /aitch-tee-tee-pie/
-
Updated
Sep 17, 2021 - Python
Motivation
Currently lots of C++ based unit tests are executed directly from test.sh/win-test.sh for example:
https://github.com/pytorch/pytorch/blob/0bd8d0951dcb4063c0f7552a7404bd7f0e7b6e6f/.jenkins/pytorch/test.sh#L317
Which have following drawbacks:
- It excluded those test runtime from auto-sharding/auto-categorization
- Make them subject of running on only particular platform (
Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deployment to network configuration to cloud management, in a language that approaches plain English, using SSH, with no agents to install on remote systems. https://docs.ansible.com.
-
Updated
Sep 17, 2021 - Python
Describe the issue linked to the documentation
The "20 newsgroups text" dataset can be accessed within scikit-learn using defined functions. The dataset contains some text which is considered culturally insensitive.
Suggest a potential alternative/fix
Add a section in the dataset documentation, possibly above the "Recommendation" section called "Data Considerations".
https://
-
Updated
Sep 17, 2021 - Python
LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。)
-
Updated
Sep 16, 2021 - JavaScript
At the moment, ItemLoader(response=response) fails if response is not a TextResponse instance.
Passing a binary response can still be useful, though. For example, to allow processors to access the response from their loader context, and hence be able to report the source URL (response.url) when reporting input issues.
The world's simplest facial recognition api for Python and the command line
-
Updated
Sep 8, 2021 - Python
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2)
-
Updated
Sep 10, 2021 - Jupyter Notebook
To help test PRs like apache/superset#16393
We should create multiple databases & schemas for the ephemeral test environment.
Hello everyone, I will explain the current status of manim in this issue.
Now there are three main manim versions, and their differences:
- The
masterbranch of 3b1b/manim: Rendering on GPU using OpenGL and moderngl. Support interaction and have higher efficiency. - ManimCommunity/manim: (@ManimCommunity
First check
- I added a very descriptive title to this issue.
- I used the GitHub search to find a similar issue and didn't find it.
- I searched the FastAPI documentation, with the integrated search.
- I already searched in Google "How to X in FastAPI" and didn't find any information.
- I already read and followed all the tutorial in the docs and didn't find an answ
-
Updated
Sep 17, 2021 - Python
100 Days of ML Coding
-
Updated
May 23, 2021
AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP
-
Updated
Sep 7, 2021 - Python
Python Data Science Handbook: full text in Jupyter Notebooks
-
Updated
Sep 14, 2021 - Jupyter Notebook
Created by Guido van Rossum
Released February 20, 1991
- Organization
- python
- Website
- www.python.org
- Wikipedia
- Wikipedia


Current implementation of Go binding can not specify options.
GPUOptions struct is in internal package. And
go generatedoesn't work for protobuf directory. So we can't specify GPUOptions forNewSession.