Retrieval Augmented Generation (RAG) with Google Gemma From HuggingFace Programming Computer Science by usmanmalik57 …(docs)}") ``` **Output:** ``` Total documents loaded: 45 ``` Next, we will divide our documents into multiple chunks using the `RecursiveCharacterTextSplitter` from the… following script creates an object of the `RecursiveCharacterTextSplitter` class. We divide our documents into chunks of 1000 characters with an overlap… Re: divide by ten Programming Software Development by wildgoose …I have trouble doing the 'carry' part. i can't divide the sum of the ones place integers by ten. what… number mov bl,10;move 10 to bl. div bl;divide to get the remainder/ [/CODE] thanls in advance[/QUOTE] Add…' = 1 Ones = '9'-'0' = 9 If you truly want the divide! # = (Tens * 10) + Ones or # = (Tens << 3) + Tens + … divide Programming Software Development by maharba … srand() to get a few random numbers for her to divide with the number she choose. All is fine until I… able to go into the numbers she chooses [code] void Divide::doRandDivide() { cout << "OK. Lest see if you… divide by ten Programming Software Development by cmsc … I have trouble doing the 'carry' part. i can't divide the sum of the ones place integers by ten. what… number mov bl,10;move 10 to bl. div bl;divide to get the remainder/ [/CODE] thanls in advance Re: divide by ten Programming Software Development by tesuji … I have trouble doing the 'carry' part. i can't divide the sum of the ones place integers by ten. what… number mov bl,10;move 10 to bl. div bl;divide to get the remainder/ [/CODE] thanls in advance[/QUOTE] Hi… Re: divide Programming Software Development by bkelly Conceptual thought: start with two numbers and multiply them together. Then you have three numbers, one of which can be evenly divided by the other two. Display them as you choose to make the divide problem. divide and conquer Community Center Say Hello! by pin objectives: 1. use the divide and conquer method. 2. use VOID. by this figure, how …can i can i make a program by using the divide and conquer method?how can i make this a program… divide and conquer method Programming Software Development by pin bjectives: 1. use the divide and conquer method. 2. use VOID. by this figure, how …can i can i make a program by using the divide and conquer method?how can i make this a program… divide overflow issue Programming Software Development by loudstil … to all, I wrote a code, and it gives me divide overflow, but the issue here is that when I run… run the program in the dos mode it gives me Divide overflow error. here the code: [code=assembly] prt_sig: mov al… Re: divide overflow issue Programming Software Development by Evenbit … to all, I wrote a code, and it gives me divide overflow, but the issue here is that when I run… run the program in the dos mode it gives me Divide overflow error. here the code: tnx[/QUOTE] Insert a CWD… divide by 2 in mips using sra Programming Software Development by dh_007 … I try and use the sra $s3, $s1, 1 to divide the number in 2 #this works div $s2, $s1, 1… tried putting the numbers in f registers and trying to divide from there. Got the same result 0.00000000 .data # Begin… Re: divide a number equal to the input Programming Software Development by virusisfound … have two textboxs txt_val1 and txt_val2 now i want to divide the numbers like : val1/val2 and the addition equals to… val1 like: 5/3 then it should divide 5 three times. but the output addition must be 5… :7/5 output : 1+2+2+1+1=7 // it divide the values five times and addition of all number is… Re: divide overflow issue Programming Software Development by loudstil [QUOTE=Evenbit;771351]Insert a CWD instruction right before the DIV instruction. This will sign-extend AX into the DX:AX pair needed for the ('dword' divided by 'word') division. Nathan.[/QUOTE] Thanks for the fast replay I tried to put cwd before the DIV instruction, but it still gives me DIVIDE OVERFLOW..... divide overflow??? Programming Software Development by ghostfacelz … skills arent that great...what is the best way to divide something? my book isnt very helpful. thanks -g Re: divide overflow??? Programming Software Development by bighorse …;div", system will call 0 interrupt, and display "Divide overflow" Divide time Programming Web Development by kvdd Hello all, What I want is to divide a string in timeformat, lets say 27:30. How can I do that? Eventually I can use SQL for it, because the string comes from the database. Thanks before! Re: Divide time Programming Web Development by kvdd No I want to divide it. Simple dividing a number that is in timeformat, e.g. 37:40 / 5. For example. Note that is 37 hours and 40 minutes. divide big numbers Programming Software Development by &rea hello, I have get through this problem, I want to divide these numbers but the result calculated by c++ is not … Divide and Conquer Cell Counting Programming Software Development by meddlepal I am having a lot of trouble with a Divide and Conquer algorithm to count the number of white cells … Re: Divide and Conquer Cell Counting Programming Software Development by meddlepal … checkerboard). My real trouble is with the counting and the divide and conquer method. But I have made some progress and… Divide and conquer? Programming Software Development by jodyf1717 what is meant by "divide and conquer in programing? can anyone give any examples of this? Re: Divide and conquer? Programming Software Development by Salem Ever heard of a search engine? [url]http://clusty.com/search?query=divide+and+conquer+in+programing&sourceid=Mozilla-search[/url] Divide array into multiple arrays using $variable Programming Web Development by shaneog Hi there, I am trying to divide a single array into multiple arrays using a $variable. The $… divide overflow problem Programming Software Development by urbancalli …] when the "day" is divisible by 7, a 'divide oveflow' occurs.. how do i get this right? thanks Divide a String into Number of Characters Programming Software Development by breisa … there a function in VB.net that allows me to divide a really long String into a specific number of characters… Divide this code up into different .java files please!! Programming Software Development by musikluver4 I would like to be able to divide this java code up into more than one file, so … Divide Comments into groups Programming Web Development by Infame … big pile of comments. What I basically want is to divide the amount into smaller groups: Page: 1, 2, 3, 4… divide dataset into training and test data set using random sampling Programming Software Development by sherinpoulose I have to divide dataset into training dataset(80%) and test dataset (20%) using random sampling.I have to implement it in c#.If anyone knows,please help me..... Re: divide dataset into training and test data set using random sampling Programming Software Development by Mitja Bonca [QUOTE=sherinpoulose;1608330]I have to divide dataset into training dataset(80%) and test dataset (20%) using random sampling.[/QUOTE] What do you mean by dividing? Re: divide dataset into training and test data set using random sampling Programming Software Development by sherinpoulose for example,if there are 100 rows in a data set,then we have to divide it separately into 80 and 20 rows by using random sampling.... ie partition it into 2 separate data sets which are subsets of original data set