Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@neurosity/reinforcejs
Advanced tools
REINFORCEjs is a Reinforcement Learning library by Andrej Karpathy that implements several common RL algorithms, all with web demos. In particular, the library currently includes:
See the main webpage for many more details, documentation and demos.
This fork adds node.js and ESM support.
Install the library as a dependency:
npm install @neurosity/reinforcejs
The library also includes a fork of Andrej's project recurrentjs with various utilities for building expression graphs (e.g. LSTMs) and performing automatic backpropagation. Agents for reinforncejs include:
DPAgent
for finite state/action spaces with environment dynamicsTDAgent
for finite state/action spacesDQNAgent
for continuous state features but discrete actionsA typical usage might look something like:
import { DQNAgent } from "@neurosity/reinforcejs";
// create an environment object
const env = {
getNumStates: () => 8,
getMaxNumActions: () => 4
};
// create the DQN agent
const spec = { alpha: 0.01 }; // see full options on DQN page
agent = new DQNAgent(env, spec);
setInterval(function () {
// start the learning loop
const action = agent.act(s); // s is an array of length 8
//... execute action in environment and get the reward
agent.learn(reward); // the agent improves its Q,policy,model, etc. reward is a float
}, 0);
The full documentation and demos are on the main webpage.
MIT.
FAQs
Reinforcement Learning library
We found that @neurosity/reinforcejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.