Explore >> Select a destination


You are here

blog.uvokchee.de
| | cprimozic.net
12.9 parsecs away

Travel
| | I recently upgraded to a 7900 XTX GPU. The upgrade itself went quite smoothly from both a hardware and software perspective. Games worked great out of the box with no driver or other configuration needed - as plug and play as it could possibly get. However, I wanted to try out some machine learning on it. I'd been using TensorFlow.JS to train models using my GPU all in the browser, but that approach is limited compared to what's possible when running it natively.
| | blog.nelhage.com
18.6 parsecs away

Travel
| | I've been spending some time learning deep learning and tensorflow recently, and as part of that project I wanted to be able to train models using GPUs on EC2. This post contains some notes on what it took to get that working. As many people have commented, the environment setup is often the hardest part of getting a deep learning setup going, so hopefully this will be useful reference to someone.
| | blog.nobugware.com
18.9 parsecs away

Travel
| | It's more a reminder to myself, gevent depends on libevent2 but the setup.py doesn't correcty look for it, a simple solution: export CFLAGS=-I/usr/local/include export LDFLAGS=-L/usr/local/lib pip install gevent change it for /opt/local/... if you are on OSX or you will get a bunch of errors /Developer/usr/bin/llvm-gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -pipe -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/opt/local/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c...
| | quakkels.com
36.4 parsecs away

Travel
| Django is a Python framework that I've written about before. I've compared Django to ASP.NET MVC. But, I didn't go into much detail about how to actually use Django to create a data driven website. That's what I'll cover now.