The Wayback Machine - https://web.archive.org/web/20191229233708/https://github.com/topics/python
Skip to content
#

Python

python logo

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.

Here are 126,617 public repositories matching this topic...

yourtheron
yourtheron commented Dec 21, 2019

Thank you for submitting a TensorFlow documentation issue. Per our GitHub
policy, we only address code/doc bugs, performance issues, feature requests, and
build/installation issues on GitHub.

The TensorFlow docs are open source! To get involved, read the documentation
contributor guide: https://www.tensorflow.org/community/contribute/docs

URL(s) with the issue:

Please provide a link

requests
Sandy4321
Sandy4321 commented Dec 1, 2019

Description

if MultinomialNB there is strange behavior of clf.coef_:
clf.coef_ is the same as clf.feature_log_prob_[1]

and

clf.intercept_ is the same as only one clf.class_log_prior_

for example
clf.feature_log_prob_[0][0:3]

array([-3.63942161, -3.17296199, -4.59417863])

clf.feature_log_prob_[1][0:3]

array([-3.51935008, -3.010937 , -6.41836494])

clf.coef_[0][0:3]

agadetsky
agadetsky commented Sep 18, 2019

🚀 Feature

Add numerically stable cumulative logsumexp function. Also we have associated PR on cummax that is needed for numerically stable implementation (pytorch/pytorch#20240).

Motivation

This is useful when computing sum of probabilities and have different applications.

Pitch

Torch has cumsum and cumprod so I suggest logcumsumexp to be added.

Sparviero-Sughero
Sparviero-Sughero commented Nov 20, 2019
  • face_recognition version: 1.2.3
  • Python version: 3.7
  • Operating System: Debian 10.1

Description

face_detection need to scan "known_people" directory every time.
in "known_people" directory I've 20 people and face_detection need a lot of time to "learn" before search known peoples inside new photos (unknown_pictures directory contain 2 photos).
it's possible to cache "learn" anali

leetcode
azl397985856
azl397985856 commented Nov 11, 2019

给定两个由小写字母构成的字符串 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

gyermolenko
gyermolenko commented Feb 7, 2019

I think listing anti-patterns with some basic reasoning about "why not" is a good idea.

Example - singleton. Although #256 has "won't fix" label

  • it is in PRs section, and people (if searching history at all) are searching issues first.
  • it was misspelled, Singelton instead of Singleton, therefore impossible to find

Listing most popular anti-patterns (without actual implementation) shou

Yanwenjiepy
Yanwenjiepy commented Aug 30, 2019

项目推荐

  • 项目地址:https://github.com/nushell/nushell

  • 类别:Rust

  • 项目后续更新计划:
    该项目已达到最低可行的产品质量水平。虽然贡献者将它作为日常驱动程序,但它可能对某些命
    令不稳定。未来版本将填补缺失的功能并提高稳定性。它的设计也随着成熟而变化。

    Nu附带了一组内置命令(如下所示)。如果命令未知,命令将弹出并执行它(在 Windows 上使
    用 cmd 或在 Linux 和 MacOS 上使用 bash),正确地通过 stdin,stdout 和 stderr,所以像你的日常 git 工作流程甚至 vim 可以正常工作。

    还有一本关于 Nu 的书,目前正在进行中。

  • 项目描述:这是一个 Github 时代下,一个更加现代的 shell。Nushell 将 shell 命

MomIsBestFriend
MomIsBestFriend commented Nov 27, 2019

Since we are moving to f-strings and dropping old strings formats (% and .format()), we no longer need to have the redundant %r and !r specifiers, instead we use the repr() format.

Notes:

  • Don't forget to link this issue in your PR, paste this https://github.com/pandas-dev/pandas/issues/29886 in your PR.

  • If any of your changed files are related to

2313499
2313499 commented Mar 2, 2019

I was having a very hard time figuring out

fill = A.stack().mean()
A.add(B, fill_value=fill)

fill = 4.5. However I computed a value of 3.2 because I was taking the mean from the column of A not the DataFrame A.
This coming after the Indexing chapter where "explicit is better than implicit." I was thinking that this should be a little more explicit.

Created by Guido van Rossum

Released February 20, 1991

Organization
python
Website
www.python.org
Wikipedia
Wikipedia

Related Topics

language ruby flask
You can’t perform that action at this time.