eriklindernoren / PyTorch-GAN
PyTorch implementations of Generative Adversarial Networks.
https://github.com/eriklindernoren/PyTorch-GAN
PyTorch implementations of Generative Adversarial Networks.
https://github.com/eriklindernoren/PyTorch-GAN
GitHub
GitHub - eriklindernoren/PyTorch-GAN: PyTorch implementations of Generative Adversarial Networks.
PyTorch implementations of Generative Adversarial Networks. - eriklindernoren/PyTorch-GAN
pytorch / fairseq
Facebook AI Research Sequence-to-Sequence Toolkit written in Python.
https://github.com/pytorch/fairseq
Facebook AI Research Sequence-to-Sequence Toolkit written in Python.
https://github.com/pytorch/fairseq
GitHub
GitHub - facebookresearch/fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.
Facebook AI Research Sequence-to-Sequence Toolkit written in Python. - facebookresearch/fairseq
explosion / spaCy
💫 Industrial-strength Natural Language Processing (NLP) with Python and Cython
https://github.com/explosion/spaCy
💫 Industrial-strength Natural Language Processing (NLP) with Python and Cython
https://github.com/explosion/spaCy
GitHub
GitHub - explosion/spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in Python
💫 Industrial-strength Natural Language Processing (NLP) in Python - explosion/spaCy
Everything you need to know about TensorFlow 2.0
Keras-APIs, SavedModels, TensorBoard, Keras-Tuner and…
https://towardsdatascience.com/everything-you-need-to-know-about-tensorflow-2-0-b0856960c074
Keras-APIs, SavedModels, TensorBoard, Keras-Tuner and…
https://towardsdatascience.com/everything-you-need-to-know-about-tensorflow-2-0-b0856960c074
rwightman / pytorch-image-models
PyTorch image models, scripts, pretrained weights -- (SE)ResNet/ResNeXT, DPN, EfficientNet, MixNet, MobileNet-V3/V2/V1, MNASNet, Single-Path NAS, FBNet, and more
https://github.com/rwightman/pytorch-image-models
PyTorch image models, scripts, pretrained weights -- (SE)ResNet/ResNeXT, DPN, EfficientNet, MixNet, MobileNet-V3/V2/V1, MNASNet, Single-Path NAS, FBNet, and more
https://github.com/rwightman/pytorch-image-models
GitHub
GitHub - huggingface/pytorch-image-models: The largest collection of PyTorch image encoders / backbones. Including train, eval…
The largest collection of PyTorch image encoders / backbones. Including train, eval, inference, export scripts, and pretrained weights -- ResNet, ResNeXT, EfficientNet, NFNet, Vision Transformer (V...
eriklindernoren / PyTorch-YOLOv3
Minimal PyTorch implementation of YOLOv3
https://github.com/eriklindernoren/PyTorch-YOLOv3
Minimal PyTorch implementation of YOLOv3
https://github.com/eriklindernoren/PyTorch-YOLOv3
GitHub
GitHub - eriklindernoren/PyTorch-YOLOv3: Minimal PyTorch implementation of YOLOv3
Minimal PyTorch implementation of YOLOv3. Contribute to eriklindernoren/PyTorch-YOLOv3 development by creating an account on GitHub.
The Hitchhiker’s Guide to Regular Expressions and Python’s re Library
DON’T PANIC
https://medium.com/@hparker5/the-hitchhikers-guide-to-regular-expressions-and-python-s-re-library-1342444900d2
DON’T PANIC
https://medium.com/@hparker5/the-hitchhikers-guide-to-regular-expressions-and-python-s-re-library-1342444900d2
Medium
The Hitchhiker’s Guide to Regular Expressions and Python’s re Library
DON’T PANIC
How virtual environment libraries work in Python
Have you ever wondered what happens when you activate a virtual environment and how it works ...
http://rushter.com/blog/python-virtualenv/
Have you ever wondered what happens when you activate a virtual environment and how it works ...
http://rushter.com/blog/python-virtualenv/
Artem Golubin
How virtual environment libraries work in Python | Artem Golubin
An introduction to virtual environment internals
Matlab declares war on Python. Can the Python community respond or hit back?
https://www.reddit.com/r/Python/comments/cm5pin/matlab_declares_war_on_python_can_the_python/
https://www.reddit.com/r/Python/comments/cm5pin/matlab_declares_war_on_python_can_the_python/
reddit
Matlab declares war on Python. Can the Python community respond or...
news about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python.
Coding is 90% Google Searching — A Brief Note for Beginners
https://www.reddit.com/r/Python/comments/cnay8b/coding_is_90_google_searching_a_brief_note_for/
https://www.reddit.com/r/Python/comments/cnay8b/coding_is_90_google_searching_a_brief_note_for/
reddit
r/Python - Coding is 90% Google Searching — A Brief Note for Beginners
1,043 votes and 176 comments so far on Reddit
Starting and Synchronizing Threads
If you have developed code for long enough, probably you have faced the situation in which a task ...
https://www.pythonforthelab.com/blog/starting-and-synchronizing-threads
If you have developed code for long enough, probably you have faced the situation in which a task ...
https://www.pythonforthelab.com/blog/starting-and-synchronizing-threads
Python for the Lab
Starting and Synchronizing Threads
Learn how threads in Python can help you develop better code
Unsupervised Data Augmentation
https://medium.com/towards-artificial-intelligence/unsupervised-data-augmentation-6760456db143
https://medium.com/towards-artificial-intelligence/unsupervised-data-augmentation-6760456db143
Long Short-Term Memory: From Zero to Hero with PyTorch
Just like us, Recurrent Neural Networks (RNNs) can be very forgetful. This struggle with short-term ...
https://blog.floydhub.com/long-short-term-memory-from-zero-to-hero-with-pytorch/
Just like us, Recurrent Neural Networks (RNNs) can be very forgetful. This struggle with short-term ...
https://blog.floydhub.com/long-short-term-memory-from-zero-to-hero-with-pytorch/
vpj / python_autocomplete
A simple neural network for python autocompletion
https://github.com/vpj/python_autocomplete
A simple neural network for python autocompletion
https://github.com/vpj/python_autocomplete
GitHub
GitHub - vpj/python_autocomplete: A simple neural network for python autocompletion
A simple neural network for python autocompletion. Contribute to vpj/python_autocomplete development by creating an account on GitHub.
sherlock-project / sherlock
🔎 Find usernames across social networks
https://github.com/sherlock-project/sherlock
🔎 Find usernames across social networks
https://github.com/sherlock-project/sherlock
GitHub
GitHub - sherlock-project/sherlock: Hunt down social media accounts by username across social networks
Hunt down social media accounts by username across social networks - sherlock-project/sherlock
How Python saves memory when storing strings
Since Python 3, the str type uses Unicode representation. Unicode strings can take up to 4 bytes ...
http://rushter.com/blog/python-strings-and-memory/
Since Python 3, the str type uses Unicode representation. Unicode strings can take up to 4 bytes ...
http://rushter.com/blog/python-strings-and-memory/
Artem Golubin
How Python saves memory when storing strings | Artem Golubin
Data visualization with Plotly
https://towardsdatascience.com/data-visualization-with-plotly-71af5dd220b5
https://towardsdatascience.com/data-visualization-with-plotly-71af5dd220b5
HelloZeroNet / ZeroNet
ZeroNet - Decentralized websites using Bitcoin crypto and BitTorrent network
https://github.com/HelloZeroNet/ZeroNet
ZeroNet - Decentralized websites using Bitcoin crypto and BitTorrent network
https://github.com/HelloZeroNet/ZeroNet
GitHub
GitHub - HelloZeroNet/ZeroNet: ZeroNet - Decentralized websites using Bitcoin crypto and BitTorrent network
ZeroNet - Decentralized websites using Bitcoin crypto and BitTorrent network - HelloZeroNet/ZeroNet
What are Eigenvalues and Eigenvectors?
A must-know concept for Machine Learning
https://medium.com/fintechexplained/what-are-eigenvalues-and-eigenvectors-a-must-know-concept-for-machine-learning-80d0fd330e47
A must-know concept for Machine Learning
https://medium.com/fintechexplained/what-are-eigenvalues-and-eigenvectors-a-must-know-concept-for-machine-learning-80d0fd330e47