Skip to content

Instantly share code, notes, and snippets.

View alexander-rakhlin's full-sized avatar
🐩
Fiji

Alexander Rakhlin alexander-rakhlin

🐩
Fiji
View GitHub Profile
@alexander-rakhlin
alexander-rakhlin / Crossover.sh
Created January 17, 2025 06:31 — forked from ellsies/Crossover.sh
Crackover (Complete free version of crossover)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS
@alexander-rakhlin
alexander-rakhlin / README.md
Created March 25, 2016 10:24 — forked from EderSantana/CATCH_Keras_RL.md
Keras plays catch - a single file Reinforcement Learning example
@alexander-rakhlin
alexander-rakhlin / readme.md
Created March 22, 2016 13:12 — forked from baraldilorenzo/readme.md
VGG-16 pre-trained model for Keras

##VGG16 model for Keras

This is the Keras model of the 16-layer network used by the VGG team in the ILSVRC-2014 competition.

It has been obtained by directly converting the Caffe model provived by the authors.

Details about the network architecture can be found in the following arXiv paper:

Very Deep Convolutional Networks for Large-Scale Image Recognition

K. Simonyan, A. Zisserman