useStyleTransfer
Style transfer is a technique used in computer graphics and machine learning where the visual style of one image is applied to the content of another. This is achieved using algorithms that manipulate data from both images, typically with the aid of a neural network. The result is a new image that combines the artistic elements of one picture with the structural details of another, effectively merging art with traditional imagery. React Native ExecuTorch offers a dedicated hook useStyleTransfer
, for this task. However before you start you'll need to obtain ExecuTorch-compatible model binary.
It is recommended to use models provided by us which are available at our Hugging Face repository, you can also use constants shipped with our library
Reference
import {
useStyleTransfer,
STYLE_TRANSFER_CANDY,
} from 'react-native-executorch';
const model = useStyleTransfer({
modelSource: STYLE_TRANSFER_CANDY,
});
const imageUri = 'file::///Users/.../cute_cat.png';
try {
const generatedImageUrl = await model.forward(imageUri);
} catch (error) {
console.error(error);
}
Type definitions
interface StyleTransferModule {
error: string | null;
isReady: boolean;
isGenerating: boolean;
forward: (input: string) => Promise<string>;
}
Arguments
modelSource
A string that specifies the location of the model binary. For more information, take a look at loading models page.
Returns
Field | Type | Description |
---|---|---|
forward | (input: string) => Promise<string> | Executes the model's forward pass, where input can be a fetchable resource or a Base64-encoded string. |
error | string | null | Contains the error message if the model failed to load. |
isGenerating | boolean | Indicates whether the model is currently processing an inference. |
isReady | boolean | Indicates whether the model has successfully loaded and is ready for inference. |
Running the model
To run the model, you can use forward
method. It accepts one argument, which is the image. The image can be a remote URL, a local file URI, or a base64-encoded image. The function returns a promise which can resolve either to an error or a URL to generated image.
Images from external sources and the generated image are stored in your application's temporary directory.
Example
function App(){
const model = useStyleTransfer(
modelSource: STYLE_TRANSFER_CANDY,
);
...
const imageUri = 'file::///Users/.../cute_cat.png';
try{
const generatedImageUrl = await model.forward(imageUri)
}catch(error){
console.error(error)
}
...
}