Skip to content

Instantly share code, notes, and snippets.

View oiva's full-sized avatar

Oiva Eskola oiva

View GitHub Profile
@jaukia
jaukia / neural-style-aws.md
Created May 28, 2016 09:14
Neural stylen ajaminen Amazonin AWS:ssä

Neural stylen ajaminen Amazonin AWS:ssä

CPU:lla onnistunee myös noiden laskeminen, mutta on ainakin paljon hitaampaa, en ole kokeillut. Tyypillisesti 1000 iteraatiota GPU:lla kesti noin 10 minuuttia AWS:ssä.

AWS:n setuppaaminen onnistuu aika helposti jos on yhtään komentorivi-mitään tehnyt koneella. Toki esim joku ssh-yhteys julkisella avaimella tms voi olla ongelmallista, jos ei ole sitä tehnyt aiemmin.

Mä tein näin suurin piirtein:

  1. Amazon AWS-tunnukset
  2. Amazonin AWS-konsolista EC2, sieltä "Spot Requests" , "Request Spot Instances", "Community AMIs" ja hakukenttään "neural style". jos oikeasta ylänurkasta valittuna "N. California", niin tuolta pitäis löytyä kaksi valmista imagea:
@nikcorg
nikcorg / active-javascript.md
Last active May 18, 2016 17:25
Finnish GitHub users stats

Most active GitHub users (git.io/top)

The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Sun, 19 Apr 2015 17:59:08 GMT till Tue, 19 Apr 2016 17:59:08 GMT.

Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:

githubUsers
 .filter(user => user.followers > 11)
@petersondrew
petersondrew / update-rocketraid
Created March 27, 2012 14:30
Recompile RocketRaid drivers after kernel update
#!/bin/bash
#Automagically recompile rocketraid driver for new kernel
#Save this file in /etc/kernel/postinst.d/
dir="/usr/src/rocketraid_driver/rr232x-linux-src-v1.10/product/rr232x/linux/"
make -C $dir install KERNELDIR=/lib/modules/$1/build/
exit 0