Thursday, April 28, 2016

CSS rotate image

Rotate an image in image source in html - Stack Overflow

<img src="/image.png" class="rotate90">
CSS:.rotate90 {
   -webkit-transform: rotate(90deg);
   -moz-transform: rotate(90deg);
   -o-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
} 

OpenAI Gym

Open Sourcing Artificial Intelligence Research @ InfoQ
"OpenAI, a non-profit artificial intelligence research company. Officially launched in December, this research group has a billion dollars in funding from InfoSys, Amazon Web Services, and several private donors....
OpenAI today is they just released the public beta of OpenAI Gym. This toolkit is used to develop and compare reinforcement learning (RL) algorithms
...
OpenAI Gym offers these environments: Classic control, Toy text, Algorithmic, Atari(based on the Arcade Learning Environment), Board games, and 2D/3D robots."


"OpenAI Gym is compatible with algorithms written in any framework, such as Tensorflow and Theano. The environments are written in Python, but we'll soon make them easy to use from any language."

OpenAI Gym (tutorial)

"classic "agent-environment loop". Each timestep, the agent chooses an action, and the environment returns an observation and a reward."



related: (how Google plans to win with AI)