You are here |
md.ekstrandom.net | ||
| | | |
vickiboykis.com
|
|
| | | | What are ML artifacts? | |
| | | |
blog.nelhage.com
|
|
| | | | I have spent many years as an software engineer who was a total outsider to machine-learning, but with some curiosity and occasional peripheral interactions with it. During this time, a recurring theme for me was horror (and, to be honest, disdain) every time I encountered the widespread usage of Python pickle in the Python ML ecosystem. In addition to their major security issues1, the use of pickle for serialization tends to be very brittle, leading to all kinds of nightmares as you evolve your code and... | |
| | | |
www.eliza-ng.me
|
|
| | | | Title: Potential Implications of Removing the Global Interpreter Lock (GIL) in Python Introduction: The Global Interpreter Lock (GIL) has long been a topic of discussion among Python developers. While the GIL ensures the thread safety of Python code, it also limits the language's ability to fully leverage parallelism, causing performance bottlenecks. Recently, there have been calls to remove the GIL, sparking a debate about the potential implications for existing Python code and its accompanying C extensions. | |
| | | |
dennybritz.com
|
|
| | Recurrent Neural Networks (RNNs) are popular models that have shown great promise in manyNLP tasks. |