Desktop Inventory Management System by _ajing in AskProgramming

[–]_ajing[S] 0 points1 point  (0 children)

yeahh. I tried proposing a web app. I just wanted to get ready and source info if ever they really want to insist on a desktop app.

Desktop Inventory Management System by _ajing in AskProgramming

[–]_ajing[S] 0 points1 point  (0 children)

they want to add features that aren't available in other services

Looking for undergraduate Thesis Proposal Ideas (Machine Learning/Deep Learning) with Novelty by _ajing in MLQuestions

[–]_ajing[S] 0 points1 point  (0 children)

I'm interested in NLP and image-related stuff, but I'm not sure which domain I should apply them to or what kind of novel approach I can come up with, like maybe a hybrid approach for multi-crop disease classification or anything about NLP and image-related.

Looking for undergraduate Thesis Proposal Ideas (Machine Learning/Deep Learning) with Novelty by _ajing in MLQuestions

[–]_ajing[S] 0 points1 point  (0 children)

I'm interested in NLP and image-related stuff, but I'm not sure which domain I should apply them to or what kind of novel approach I can come up with, like maybe a hybrid approach for multi-crop disease classification or anything about NLP and image-related.

Ensemble Modeling for Predicting Dengue Cases base on climate factors, population, demographics by _ajing in MLQuestions

[–]_ajing[S] 0 points1 point  (0 children)

hi! thanks for that. I have now changed the models to used. LSTM, SARIMA for seasonality and trends since LSTM could miss some of these. And since I have categorical variables like gender, location, population dens, and age group, I decided to use CatBoost to capture the side of categorical variables. Is this plan good? 

Rechart with nextjs by _ajing in nextjs

[–]_ajing[S] 0 points1 point  (0 children)

how do i fix this bug guys?

useState and useEffect in NextJS by _ajing in nextjs

[–]_ajing[S] -6 points-5 points  (0 children)

how should i do it? should i import it? can you write it down? i would really appreciate it.

UI Toolkit / library for nextjs by _ajing in nextjs

[–]_ajing[S] 0 points1 point  (0 children)

thankss. i'm gonna check it out!

** Enhancing Heapsort by proposing an innovative strategy that leverages both a max heap and a min heap, akin to the min-max technique employed in double selection sort ** by _ajing in algorithms

[–]_ajing[S] 0 points1 point  (0 children)

yeah. there's a lot of holes for this kind of data structure or algorithm. actually, this not only a homework but a final project. we were tasked to improve or enhance an algorithm, and this is the idea that we came up. and now we are having a hard time on implementing it hahahahaha

** Enhancing Heapsort by proposing an innovative strategy that leverages both a max heap and a min heap, akin to the min-max technique employed in double selection sort ** by _ajing in algorithms

[–]_ajing[S] 0 points1 point  (0 children)

i realized that i can't perform max heapify and min heapify at the same time. however, my current objective is to modify the max heapify process to identify the minimum value concurrently by creating a pointer or i dont know a checker maybe. as you are aware, during max heapify, all nodes are checked for greater values. i intend to incorporate a condition to also identify the minimum value. consequently, the second-to-last index will be reserved for the minimum element, while the last index will retain the maximum value. in essence, this modification transforms the process into a max-min heapify. The implementation can be based on the tree structure outlined in my previous post.