Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@magenta/image
Advanced tools
This JavaScript implementation of Magenta's image models uses TensorFlow.js for GPU-accelerated inference.
Complete documentation is available at https://tensorflow.github.io/magenta-js/image.
You can try our hosted demos for each model and have a look at the demo code.
Implements Ghiasi et al.'s fast arbitrary style transfer model (paper, code). Wraps around Reiichiro Nakano's TensorFlow.js port of the model checkpoint.
There are two main ways to get MagentaImage.js in your JavaScript project: via script tags or by installing it from NPM and using a build tool like yarn.
Add the following code to an HTML file, and place a content (content.jpg
) and style (style.jpg
) image in the same directory:
<html>
<head>
<!-- Load @magenta/image -->
<script src="https://cdn.jsdelivr.net/npm/@magenta/image@^0.1.2"></script>
</head>
<body>
<img id="content" height="256" src="content.jpg"/>
<img id="style" height="256" src="style.jpg"/>
<canvas id="stylized" height="256"></canvas>
<script>
const model = new mi.ArbitraryStyleTransferNetwork();
const contentImg = document.getElementById('content');
const styleImg = document.getElementById('style');
const stylizedCanvas = document.getElementById('stylized');
function stylize() {
model.stylize(contentImg, styleImg).then((imageData) => {
stylizedCanvas.getContext('2d').putImageData(imageData, 0, 0);
});
}
model.initialize().then(stylize);
</script>
</body>
</html>
Launch a simple HTTP server (e.g. python3 -m http.server
) and point your browser to http://0.0.0.0:8000/. You should see your content and style images displayed and, after a few seconds, the stylized output.
Add MagentaImage.js to your project using yarn or npm.
For example, with yarn you can simply call yarn add @magenta/image
.
Then, you can use the library in your own code as in the following example:
import * as mi from '@magenta/image';
const model = new mi.ArbitraryStyleTransferNetwork();
const contentImg = document.getElementById('content') as HTMLImageElement;
const styleImg = document.getElementById('style') as HTMLImageElement;
const stylizedCanvas = document.getElementById('stylized') as HTMLCanvasElement;
function stylize() {
model.stylize(contentImg, styleImg).then((imageData) => {
stylizedCanvas.getContext('2d').putImageData(imageData, 0, 0);
});
}
model.initialize().then(stylize);
See style-transfer.glitch.me and our demos for example usage.
yarn install
to install dependencies.
yarn test
to run tests.
yarn bundle
to produce a bundled version in dist/
.
yarn run-demos
to build and run the demo.
FAQs
Visual art with machine learning, in the browser.
We found that @magenta/image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.