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

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.

Here are 120,124 public repositories matching this topic...

invencode
invencode commented Oct 1, 2019

I think we need more detailed description and example for streaming training data from disk on
https://www.tensorflow.org/guide/data#basic_mechanics.

It is mentioned on other documents, but no how-tos. It would be helpful if we add how to implement streaming data from disk and improvements on TF2.0, if any.

When iterating over training data that fits in memory, feel free to use regular Py

httpie
rshurts
rshurts commented Mar 8, 2017

Brew is listed as the recommended way of installing httpie on macOS. However, it doesn't work with auth plugins.

For example, if you pip3 install requests-hawk and then run http --help hawk will not show as an auth type. If you pip3 install httpie-oauth it will install httpie via pip as a dependency and overwrite the brew installed link in /usr/local/bin/http and now all the plugins wil

requests
rabbbit
rabbbit commented Oct 2, 2017

tldr; in multi-process environment (Celery) sessions might lead to request/responses being mixed up.

It is unsafe to use Session in a multi-process environment - if the fork happens after Session initialisation the underlying connection pool will be shared across both processes, leading to potentially dangerous and hard to debug issues.

I'm not sure what should happen - whather a code change

jnothman
jnothman commented Oct 8, 2019

We recently merged https://github.com/NicolasHug/scikit-learn/blob/master/examples/release_highlights/plot_release_highlights_0_22_0.py to summarise the highlights of 0.22, to be released in early November.

More release highlights, briefly demonstrating the new thing in action, belong in that example doc:

  • Permutation based feature importance
  • HistGradientBoostingClassifier with m
yf225
yf225 commented Sep 30, 2019

Context

We would like to add torch::nn::functional::normalize to the C++ API, so that C++ users can easily find the equivalent of Python API torch.nn.functional.normalize.

Steps

  • Add torch::nn::NormalizeOptions to torch/csrc/api/include/torch/nn/options/normalization.h (add this file if it doesn’t exist), which should include the following parameters (based on https://pytorch.
Nabel0721
Nabel0721 commented Oct 4, 2019

There are issues in some docstrings where the See Also section is not complete. All of the following errors exist because there is no description for a referenced function or method. If these can get fixed then CI will be able to check all of the See Also section errors! The command to check for the errors is ./scripts/validate_docstrings.py --errors=SA04

pandas.melt: Missing description
You can’t perform that action at this time.