| Mar | APR | May |
| 18 | ||
| 2020 | 2021 | 2022 |
COLLECTED BY
Collection: github.com
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.
.py extensions because TensorFlow does not yet support the current Python.
●dynamic_programming/k_means_clustering_tensorflow.py_tf
●machine_learning/lstm/lstm_prediction.py_tf
●neural_network/gan.py_tf
●neural_network/input_data.py_tf
TODO: Restore the .py file extensions
Read more
good first issue
import torch
from typing import Dict
@torch.jit.script
def missing_index(x: Dict[str, int]) -> int:
return x['dne']
missing_index({'item': 20, 'other_item': 120})
This code outputs:
9
10
---> 11 missing_index({'item': 20, 'other_item': 120})
RuntimeError: The fo
Read more
OSS contribution wanted
good first issue
module: bootcamp
oncall: jit
Open
image_stream = self.get_images(response, request, info, item=item)
while True:
try:
path, image, buf = next(image_stream)
except StopIteration:
break
except Exception:
co
Read more
bug
good first issue
Open
master branch of 3b1b/manim: Rendering on GPU using OpenGL and moderngl. Support interaction and have higher efficiency.
(二)ManimCommunity/manim: (@ManimCommunity
Read more
good first issue
final:
https://github.com/pandas-dev/pandas/blob/526d52f91ee06ba9134762373ab3a0bb38395d8a/pandas/core/generic.py#L3629-L3630
It's then overridden in series:
https://github.com/pandas-dev/pandas/blob/526d52f91ee06ba9134762373ab3a0bb38395d8a/pandas/core/series.py#L866
The reason mypy doesn't detect this failure is that the override in series in untyped,
Read more
Typing
good first issue
Open