Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions apps/computer-vision/app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ export default function Layout() {
title: 'Classification',
}}
/>
<Drawer.Screen
name="imageEmbeddings/index"
options={{
drawerLabel: 'Image Embeddings',
title: 'Image Embeddings',
}}
/>
<Drawer.Screen
name="detection/index"
options={{
Expand Down
17 changes: 2 additions & 15 deletions apps/computer-vision/app/classification/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { commonStyles, ColorPalette } from '../../theme';
import { useImage } from '@shopify/react-native-skia';
import { useClassifier, models } from 'react-native-executorch';
import ScreenWrapper from '../../components/ScreenWrapper';
import { getImage } from '../../utils';
import { getImage, skImageToBuffer } from '../../utils';
import { ModelPicker, type ModelOption } from '../../components/ModelPicker';
import { ImageViewport } from '../../components/ImageViewport';
import { ModelStatus } from '../../components/ModelStatus';
Expand Down Expand Up @@ -64,20 +64,7 @@ function ClassificationContent() {
if (!sync) setIsProcessing(true);
setError(null);
try {
const pixels = skiaImage.readPixels();
if (!pixels) {
throw new Error('Failed to read pixels from image');
}
if (!(pixels instanceof Uint8Array)) {
throw new Error('Expected Uint8Array from readPixels');
}
const buffer = {
data: pixels,
width: skiaImage.width(),
height: skiaImage.height(),
format: 'rgba' as const,
layout: 'hwc' as const,
};
const buffer = skImageToBuffer(skiaImage);
const start = Date.now();
const output = sync
? classifyWorklet(buffer, { topk: 5 })
Expand Down
250 changes: 250 additions & 0 deletions apps/computer-vision/app/imageEmbeddings/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,250 @@
import React, { useState } from 'react';
import { View, Text, StyleSheet, ScrollView, TextInput, TouchableOpacity } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { commonStyles, ColorPalette } from '../../theme';
import { useImage } from '@shopify/react-native-skia';
import { useImageEmbeddings, useTextEmbeddings, models } from 'react-native-executorch';
import ScreenWrapper from '../../components/ScreenWrapper';
import { getImage, skImageToBuffer } from '../../utils';
import { ModelPicker, type ModelOption } from '../../components/ModelPicker';
import { ImageViewport } from '../../components/ImageViewport';
import { ModelStatus } from '../../components/ModelStatus';
import { LatencyIndicator } from '../../components/LatencyIndicator';
import { Button } from '../../components/Button';

const IMAGE_MODEL_OPTIONS: ModelOption[] = [
{
label: 'CLIP ViT-B/32 (INT8)',
value: models.imageEmbeddings.CLIP_VIT_BASE_PATCH32.XNNPACK_INT8,
},
{
label: 'CLIP ViT-B/32 (FP32)',
value: models.imageEmbeddings.CLIP_VIT_BASE_PATCH32.XNNPACK_FP32,
},
];

const DEFAULT_LABELS = [
'a photo of a dog',
'a photo of a cat',
'a landscape photo',
'a photo of food',
'a photo of people',
];

// CLIP text and image embeddings are L2-normalized, so their cosine similarity
// is the dot product.
const dot = (a: Float32Array, b: Float32Array) => {
let s = 0;
for (let i = 0; i < a.length; i++) {
s += a[i]! * b[i]!;
}
return s;
};

function ImageEmbeddingsContent() {
const [selectedImageModel, setSelectedImageModel] = useState<any>(IMAGE_MODEL_OPTIONS[0].value);
const [imageUri, setImageUri] = useState<string | null>(null);
const [labels, setLabels] = useState<string[]>(DEFAULT_LABELS);
const [newLabel, setNewLabel] = useState('');
const [results, setResults] = useState<{ label: string; score: number }[]>([]);
const [latency, setLatency] = useState<number | null>(null);
const [isProcessing, setIsProcessing] = useState(false);
const [error, setError] = useState<string | null>(null);

const insets = useSafeAreaInsets();
const skiaImage = useImage(imageUri, (err) => setError(err.message || String(err)));

// Zero-shot classification pairs a CLIP image encoder with the CLIP text
// encoder and scores the image against each text label by embedding similarity.
const imageModel = useImageEmbeddings(selectedImageModel);
const textModel = useTextEmbeddings(models.textEmbeddings.CLIP_VIT_BASE_PATCH32_TEXT);

const ready = imageModel.isReady && textModel.isReady;

const pickImage = async () => {
setError(null);
try {
const uri = await getImage(false);
if (!uri) return;
setImageUri(uri);
setResults([]);
setLatency(null);
} catch (e: any) {
setError(e.message || String(e));
}
};

const classify = async () => {
if (!skiaImage || !ready || !imageModel.forward || !textModel.forward) return;
setIsProcessing(true);
setError(null);
try {
const start = Date.now();
const imageEmbedding = await imageModel.forward(skImageToBuffer(skiaImage));
const scored: { label: string; score: number }[] = [];
for (const label of labels) {
const textEmbedding = await textModel.forward(label);
scored.push({ label, score: dot(imageEmbedding, textEmbedding) });
}
scored.sort((a, b) => b.score - a.score);
setLatency(Date.now() - start);
setResults(scored);
} catch (e: any) {
setError(e.message || String(e));
} finally {
setIsProcessing(false);
}
};

const addLabel = () => {
const trimmed = newLabel.trim();
if (!trimmed || labels.includes(trimmed)) return;
setLabels((prev) => [...prev, trimmed]);
setNewLabel('');
setResults([]);
};

const removeLabel = (label: string) => {
setLabels((prev) => prev.filter((l) => l !== label));
setResults((prev) => prev.filter((r) => r.label !== label));
};

const activeError = imageModel.error
? String(imageModel.error)
: textModel.error
? String(textModel.error)
: error;

return (
<ScrollView
style={commonStyles.container}
contentContainerStyle={[commonStyles.contentContainer, { paddingBottom: insets.bottom + 24 }]}
>
<Text style={commonStyles.description}>
Pick an image, then rank text labels by how well CLIP matches them to it (zero-shot
classification).
</Text>

<ModelPicker
label="Image model"
options={IMAGE_MODEL_OPTIONS}
selectedValue={selectedImageModel}
onValueChange={(model) => {
setSelectedImageModel(model);
setResults([]);
setLatency(null);
}}
/>

<ModelStatus
isReady={ready}
downloadProgress={Math.min(imageModel.downloadProgress, textModel.downloadProgress)}
error={activeError}
modelTypeLabel="CLIP models"
/>

<ImageViewport skiaImage={skiaImage} onPressPlaceholder={pickImage} />

<View style={commonStyles.buttonRow}>
<Button title="Pick image" onPress={pickImage} variant="secondary" />
<Button
title="Find best label"
onPress={classify}
disabled={!skiaImage || !ready || isProcessing}
loading={isProcessing}
/>
</View>

<LatencyIndicator latency={latency} />

{results.length > 0 && (
<View style={styles.card}>
<Text style={styles.cardTitle}>Results</Text>
{results.map((r, i) => (
<View key={r.label} style={styles.row}>
<Text style={[styles.rowLabel, i === 0 && styles.topLabel]} numberOfLines={1}>
{i === 0 ? '🥇 ' : ''}
{r.label}
</Text>
<Text style={styles.rowScore}>{r.score.toFixed(3)}</Text>
</View>
))}
</View>
)}

<View style={styles.card}>
<Text style={styles.cardTitle}>Labels</Text>
{labels.map((label) => (
<View key={label} style={styles.row}>
<Text style={styles.rowLabel} numberOfLines={1}>
{label}
</Text>
<TouchableOpacity onPress={() => removeLabel(label)} hitSlop={8}>
<Text style={styles.remove}>✕</Text>
</TouchableOpacity>
</View>
))}
<View style={styles.addRow}>
<TextInput
style={styles.input}
placeholder="Add a label…"
placeholderTextColor="#94A3B8"
value={newLabel}
onChangeText={setNewLabel}
onSubmitEditing={addLabel}
returnKeyType="done"
/>
<Button title="Add" onPress={addLabel} disabled={!newLabel.trim()} variant="secondary" />
</View>
</View>
</ScrollView>
);
}

export default function ImageEmbeddingsScreen() {
return (
<ScreenWrapper>
<ImageEmbeddingsContent />
</ScreenWrapper>
);
}

const styles = StyleSheet.create({
card: {
width: '100%',
backgroundColor: '#fff',
borderRadius: 12,
padding: 16,
borderWidth: 1,
borderColor: '#e9ecef',
marginTop: 16,
},
cardTitle: {
fontSize: 16,
fontWeight: '600',
color: ColorPalette.strongPrimary,
marginBottom: 8,
},
row: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
paddingVertical: 8,
borderBottomWidth: 1,
borderBottomColor: '#f1f3f5',
},
rowLabel: { fontSize: 14, color: '#334155', flex: 1, marginRight: 8 },
topLabel: { fontWeight: '700', color: ColorPalette.strongPrimary },
rowScore: { fontSize: 13, fontWeight: '600', color: ColorPalette.primary },
remove: { fontSize: 16, color: '#94A3B8', paddingHorizontal: 4 },
addRow: { flexDirection: 'row', alignItems: 'center', gap: 8, marginTop: 12 },
input: {
flex: 1,
backgroundColor: '#f1f3f5',
borderRadius: 10,
paddingHorizontal: 12,
paddingVertical: 10,
fontSize: 14,
color: '#0F172A',
},
});
3 changes: 3 additions & 0 deletions apps/computer-vision/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ export default function Home() {
<TouchableOpacity style={styles.button} onPress={() => router.navigate('classification/')}>
<Text style={styles.buttonText}>Classification</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={() => router.navigate('imageEmbeddings/')}>
<Text style={styles.buttonText}>Image Embeddings</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={() => router.navigate('detection/')}>
<Text style={styles.buttonText}>Object Detection</Text>
</TouchableOpacity>
Expand Down
2 changes: 2 additions & 0 deletions apps/computer-vision/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"react-native-executorch": {
"features": [
"classification",
"imageEmbeddings",
"textEmbeddings",
"instanceSegmentation",
"keypointDetection",
"objectDetection",
Expand Down
26 changes: 26 additions & 0 deletions apps/computer-vision/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
import { Alert } from 'react-native';
import * as ImagePicker from 'expo-image-picker';
import { ImageManipulator, SaveFormat } from 'expo-image-manipulator';
import type { SkImage } from '@shopify/react-native-skia';

/**
* Converts a Skia image into the raw RGBA/HWC image buffer that
* react-native-executorch vision tasks accept. Throws if the pixel data cannot
* be read.
* @param image - The Skia image to read pixels from.
* @returns The RGBA/HWC image buffer with its `data`, `width`, `height`,
* `format`, and `layout`.
*/
export const skImageToBuffer = (image: SkImage) => {
const pixels = image.readPixels();
if (!pixels) {
throw new Error('Failed to read pixels from image');
}
if (!(pixels instanceof Uint8Array)) {
throw new Error('Expected Uint8Array from readPixels');
}
return {
data: pixels,
width: image.width(),
height: image.height(),
format: 'rgba' as const,
layout: 'hwc' as const,
};
};

export const getImage = async (
useCamera: boolean,
Expand Down
7 changes: 7 additions & 0 deletions apps/nlp/app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ export default function Layout() {
title: 'Tokenizer',
}}
/>
<Drawer.Screen
name="text-embeddings/index"
options={{
drawerLabel: 'Text Embeddings',
title: 'Text Embeddings',
}}
/>
</Drawer>
);
}
3 changes: 3 additions & 0 deletions apps/nlp/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ export default function Home() {
<TouchableOpacity style={styles.button} onPress={() => router.navigate('tokenizer/')}>
<Text style={styles.buttonText}>Tokenizer</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={() => router.navigate('text-embeddings/')}>
<Text style={styles.buttonText}>Text Embeddings</Text>
</TouchableOpacity>
</View>
</View>
);
Expand Down
Loading