Explore >> Select a destination


You are here

md.ekstrandom.net
| | vickiboykis.com
13.9 parsecs away

Travel
| | What are ML artifacts?
| | blog.nelhage.com
14.6 parsecs away

Travel
| | 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
16.4 parsecs away

Travel
| | 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
74.4 parsecs away

Travel
| Recurrent Neural Networks (RNNs) are popular models that have shown great promise in manyNLP tasks.