Skip to content

Commit e948670

Browse files
authored
chore: replace QLoRa model with SpinQuant one (#493)
## Description <!-- Provide a concise and descriptive summary of the changes implemented in this PR. --> ### Introduces a breaking change? - [ ] Yes - [ ] No ### Type of change - [ ] Bug fix (change which fixes an issue) - [ ] New feature (change which adds functionality) - [ ] Documentation update (improves or adds clarity to existing documentation) - [ ] Other (chores, tests, code style improvements etc.) ### Tested on - [ ] iOS - [ ] Android ### Testing instructions <!-- Provide step-by-step instructions on how to test your changes. Include setup details if necessary. --> ### Screenshots <!-- Add screenshots here, if applicable --> ### Related issues <!-- Link related issues here using #issue-number --> ### Checklist - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have updated the documentation accordingly - [ ] My changes generate no new warnings ### Additional notes <!-- Include any additional information, assumptions, or context that reviewers might need to understand this PR. -->
1 parent 5c32720 commit e948670

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/llm/app/llm/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
} from 'react-native';
1313
import SendIcon from '../../assets/icons/send_icon.svg';
1414
import Spinner from 'react-native-loading-spinner-overlay';
15-
import { useLLM, LLAMA3_2_1B_QLORA } from 'react-native-executorch';
15+
import { useLLM, LLAMA3_2_1B_SPINQUANT } from 'react-native-executorch';
1616
import PauseIcon from '../../assets/icons/pause_icon.svg';
1717
import ColorPalette from '../../colors';
1818
import Messages from '../../components/Messages';
@@ -30,7 +30,7 @@ function LLMScreen() {
3030
const textInputRef = useRef<TextInput>(null);
3131
const { setGlobalGenerating } = useContext(GeneratingContext);
3232

33-
const llm = useLLM({ model: LLAMA3_2_1B_QLORA });
33+
const llm = useLLM({ model: LLAMA3_2_1B_SPINQUANT });
3434

3535
useEffect(() => {
3636
if (llm.error) {

0 commit comments

Comments
 (0)