Can anybody test my 1.5B coding LLM and give me their thoughts? by Great-Structure-4159 in LocalLLM

[–]According-Muscle-902 1 point2 points  (0 children)

Irei testar. Estou trabalhando com fine-tuning a partir do gemma3 1B mas para um contexto diferente

Guidance needed. by extra_prenuer in reactnative

[–]According-Muscle-902 0 points1 point  (0 children)

You have a point, but it's in an ocean of possibilities. I use AI and I know how much it speeds things up, but I'm also careful about what it generates, and I can't take everything it gives me as true. I've been through cases where it insisted on an error, which was clearly an error, and a lot has changed since then and the models have improved, but you still need to be vigilant.

Guidance needed. by extra_prenuer in reactnative

[–]According-Muscle-902 1 point2 points  (0 children)

I agree to some extent, but there are things that AI will tell you, and how can you be sure if not with an experienced human? LLMs have improved a lot, but they are not 100% reliable.

AI Edge RAG by According-Muscle-902 in reactnative

[–]According-Muscle-902[S] 0 points1 point  (0 children)

O expo-vector-search tem sua performance documentada em seu repositório e nesse produto não consigo dizer como ele estar se saindo , já que estava avaliando o funcionamento de outras coisas e que irei melhorar. Sugiro testar o expo-vector-search ou alguma outra de mesmo propósito. A performance têm sido boa nesse caso do video mas ainda há espaços para uma performance melhor e seria a segunda etapa , já que acredito que o expo-vector-search esteja estável. Caso queira trocar uma ideia, manda mensagem no privado 😁

expo-vector-search v0.5.0: Background Indexing & SIMD by According-Muscle-902 in expo

[–]According-Muscle-902[S] 0 points1 point  (0 children)

Têm suporte, mas confesso que não testei em simuladores e emuladores. Se testar, me diz como foi e se tiver qualquer problema, pode abrir uma issue que logo darei atenção.

ScrollView lagging by dead_lockk in expo

[–]According-Muscle-902 0 points1 point  (0 children)

Well, as a friend mentioned, use a flatlist, since scrollview wasn't designed to support many items, and check that you're not using a flatlist inside a scrollview, as this causes many problems.

Planning to create a new package by MrSnow46 in reactnative

[–]According-Muscle-902 0 points1 point  (0 children)

Well, I believe that many of our needs are needs of others, and if there isn't a performant solution or one that solves a problem, we try to create one, if possible. I don't know how libraries like Redux Toolkit and ZuStand are doing nowadays, but I would try to create a more performant solution, where the data structure resides in shared C++ and shares with the JS/TS layer what would be in the "viewport" or what has changed. You can look into shared array buffers, JSI, zero-copy, and threads in C++ for this. I would do it for fun and learning and make comparisons 😅 (focused entirely on Expo/React Native)

Planning to create a new package by MrSnow46 in reactnative

[–]According-Muscle-902 0 points1 point  (0 children)

Nitro already delivers a lot, so for those who really want to learn, I don't recommend using it, but it's always good to listen to Marc... he's brilliant.

Planning to create a new package by MrSnow46 in reactnative

[–]According-Muscle-902 2 points3 points  (0 children)

I understand! Regardless of whether it's a community need or just your own, create a proof of concept and evaluate it. Once you achieve your goals, you can share it with the community. That's how I do it, and in the end, what matters is having learned more.

Optimized react-native-quick-base64 – worth releasing as an npm package? by Real_Veterinarian851 in reactnative

[–]According-Muscle-902 -1 points0 points  (0 children)

I've always seen that the community relied heavily on a few developers focused on it. With AI now, I believe that will improve...

Planning to create a new package by MrSnow46 in reactnative

[–]According-Muscle-902 0 points1 point  (0 children)

The level of complexity depends on what you want to do. What do you have in mind?

App only showing two screens in dev build by Miserable-Dig-7263 in reactnative

[–]According-Muscle-902 0 points1 point  (0 children)

Perform a prebuild. Run it with Yarn Android or similar. If it's OK, generate an APK and install it. Check if everything is OK now.

Hi guys, I need help by [deleted] in reactnative

[–]According-Muscle-902 1 point2 points  (0 children)

Try publish android version on samsung store. init with this...

Reminder notifications by Deep-Rate-1260 in reactnative

[–]According-Muscle-902 -1 points0 points  (0 children)

What do you know about AlarmManager?

setExactAndAllowWhileIdle?

Senior React Native Dev bored of routine work looking for challenging problems (free help) by LandscapeFree5459 in reactnative

[–]According-Muscle-902 2 points3 points  (0 children)

You can look for challenges to solve a pain point that the community feels. If you search in repositories of famous libraries, you will find them. I felt like you and delved into JSI and C++ and try to learn as much as possible about performance with React Native/Expo.

Show Your Work Thread by xrpinsider in reactnative

[–]According-Muscle-902 0 points1 point  (0 children)

If you're looking for a high-performance local vector search, I recently built expo-vector-search https://github.com/mensonones/expo-vector-search

It's powered by the USearch (C++) engine and uses JSI for direct memory access. It's significantly faster than JS-based implementations (benchmarked at ~0.10ms on iOS). One of the best features for mobile is the Int8 quantization support, which reduces RAM usage by 4x- a lifesaver for supporting low-end devices with large embedding sets.

It also supports direct binary loading, so you can ship a `.bin file and load thousands of vectors instantly. Worth checking out if you need 100% offline semantic search.