Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
concatenate
- Page 1
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
…) positive_sample = positive_df.sample(n=33) negative_sample = negative_df.sample(n=33) #
Concatenate
the samples into one DataFrame dataset = pd.concat([neutral_sample, positive_sample…
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
…) positive_sample = positive_df.sample(n=33) negative_sample = negative_df.sample(n=33) #
Concatenate
the samples into one DataFrame dataset = pd.concat([neutral_sample, positive_sample…
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…) positive_sample = positive_df.sample(n=33) negative_sample = negative_df.sample(n=33) #
Concatenate
the samples into one DataFrame dataset = pd.concat([neutral_sample, positive_sample…
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by rproffitt
"Wiz Research Uncovers Exposed DeepSeek Database Leaking Sensitive Information" "Security researchers tested 50 well-known jailbreaks against DeepSeek’s popular new AI chatbot. It didn’t stop a single one." It only seems to get worse the more you look at DeepSeek. And I must note how it is known to not want to talk about …
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by policenbicleara
Llama-70B struggles with sentiment analysis (69% accuracy) vs. Qwen-32B (87%). Summarization performance is weaker, with lower ROUGE scores. Qwen-32B is the better choice—smaller, faster, and more accurate.
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by Pelorus_1
Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing!
Concatenate a substring
Programming
Software Development
14 Years Ago
by chiefpf
Concatenate
a substring of the original string sentence starting from index …
Re: Concatenate a substring
Programming
Software Development
14 Years Ago
by chiefpf
… you for the feedback, my question is... How do I
concatenate
a substring of the original string sentence starting from index…
Concatenate files
Programming
Software Development
16 Years Ago
by Slobodin
…I'm trying to write a program to archive, basicaly
concatenate
some files from a folder. The names of the files…12-15 09:42 usermap.txt[/CODE] The program should
concatenate
the files upon inputing the following command: [CODE]load …now, first I'm trying to get it to just
concatenate
the files ie add their content to the archivename. …
concatenate function
Programming
Software Development
17 Years Ago
by jlb_2_99
… that asks for the user first and last name and
concatenate
the function displaying the user's lastname and then firstname… name allen, bob // last and then first name using the
concatenate
function: This is what I done so far, this is…
Re: concatenate function
Programming
Software Development
17 Years Ago
by Aia
… last name The array that is going to hold the
concatenate
string needs to be big enough. [code=c]strcat( bob_array…] >allen, bob // last and then first name using the
concatenate
function: Being allen array big enough you could do this…
Concatenate strings in Pyhthon?
Programming
Software Development
10 Years Ago
by psichoman5
I have a problem with
concatenate
strings in pyhton. I need to
concatenate
the string clave and cadena_aleatoria(x) while cadena_inicio is minor…
Re: concatenate function
Programming
Software Development
17 Years Ago
by jlb_2_99
… User’s First Name and Last Name //and use the
concatenate
function from your text-book to make the output display…
Re: concatenate 3 string (char str[30]) using operator overloading
Programming
Software Development
11 Years Ago
by moaz.amin.37
… concatenating two string but my problem is that how to
concatenate
three or more string. according to me there is one… way to
concatenate
three or more string is following. #include<iostream>…
Concatenate strings/chars in a loop.
Programming
Software Development
15 Years Ago
by Anon17
…, i) + numKey); ltostr(n, base32, 32); if (i = 0) { //Cannot
concatenate
a blank char* it seems result = base32; } else { char* tempresult…
Concatenate distinct column 1 with none distinct countepart in column 2
Programming
Databases
15 Years Ago
by appleglaze28
… column 2. So I thought is it possible to like
concatenate
all 3 distinct number in column 2 with the same…
Re: Concatenate distinct column 1 with none distinct countepart in column 2
Programming
Databases
15 Years Ago
by appleglaze28
… 6 columns and I'm linking 2 tables before I
concatenate
the items. I just tested the 2 columns first. [code…
Concatenate two integers to make a double number
Programming
Web Development
13 Years Ago
by skitch
… and the other for the cents parts. i wanted to
concatenate
the two parts with a dot in the middle and…
concatenate a CREATE TABLE statement with my values from the first
Programming
Software Development
12 Years Ago
by ef_mag
… trying to write a program in java where i would
concatenate
a CREATE TABLE statement with my values from the first…
concatenate characters
Programming
Software Development
11 Years Ago
by SLMQC
I need to
concatenate
characters from a text document to create a phrase. I …
concatenate a string with an integer
Programming
Software Development
11 Years Ago
by manel1989
hi! i want to
concatenate
a string with an integer that's why i used this code : ++k; char f[50]; sprintf(f,"%d",k); strcat ( f,"N"); but what i got is this ( for example :**1N**) and what i want is some thing like this : **N1** Could you please help me with this Thank you verry muuuuch good night
Re: concatenate a string with an integer
Programming
Software Development
11 Years Ago
by k99rs
Here is another way you can
concatenate
the string and int together. // must include sstream library (#include <sstream>) int m = 21; stringstream joinedString; joinedString << "I am " <<m<<" years old."; string result = joinedString.str();
concatenate 3 string (char str[30]) using operator overloading
Programming
Software Development
11 Years Ago
by moaz.amin.37
i have a problem that how to
concatenate
more than two string in operator overloading i write a …
Re: concatenate 3 string (char str[30]) using operator overloading
Programming
Software Development
11 Years Ago
by moaz.amin.37
brother i want to
concatenate
three strings therefore pasing two parameters are necessary for concatenating …
Re: concatenate words without using STRING.H
Programming
Software Development
17 Years Ago
by iamthwee
>
concatenate
words without using STRING.H Use [inlinecode]#include <string&…
Re: How to concatenate date and time from two different datetimepicker
Programming
Software Development
14 Years Ago
by Saikalyankumar
Concatenate
in the Sense to add two Date Times into a single one?
Re: concatenate strings to open files
Programming
Software Development
17 Years Ago
by marcosjp
[QUOTE=hsma;589448]#include <cstdlib> file_c = i + f; file_d = i + o; The problem im having is getting the file to open.[/QUOTE] You cannot
concatenate
strings this way in C/C++. Use strcat. Like strcat(str1, str2); Hope this helps.
Re: concatenate strings to open files
Programming
Software Development
17 Years Ago
by hsma
When i tried to
concatenate
strings using my method, it outputs the correct thing, but when i try to use that variable to open that file it goes in to error. ill try strcat.
Re: Concatenate in C
Programming
Software Development
15 Years Ago
by csurfer
[B]"After reading all the above posts once"[/B] you will know your question itself has your answer. 1>Convert float to string. 2>
Concatenate
using srtcat or strncat as said by you or snprintf as said by Arkm. When you know everything did you try to [B]google[/B] out first?I think you lost your patience in the last step. !!! ;)
Re: Concatenate a substring
Programming
Software Development
14 Years Ago
by griswolf
Please use the CODE button to provide indentation, code coloring and line numbers. All worth doing. What is your question?
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC