Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
append
- Page 1
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
5 Days Ago
by usmanmalik57
…content rouge_scores = calculate_rouge(human_summary, generated_summary) results.
append
({ 'article_id': row.id, 'generated_summary': …] ).choices[0].message.content all_sentiments.
append
(sentiment_value) i = i + 1…
Re: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
2 Weeks Ago
by Reverend Jim
I'm confused. Since the log file is recreated automatically what is the problem with just deleting it? But if you want to shorten it you could always open it as write (but not
append
) and write a null string to it.
Benchmarking DeepSeek R1 for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…word in string["sentiment"].lower(): result.
append
({'sentiment':word}) results_df = pd.DataFrame(result) accuracy…user_query) rouge_scores = calculate_rouge(human_summary, generated_summary) results.
append
({ 'article_id': row.id, 'generated_summary': generated_summary,…
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
… response = generate_response(system_instructions, user_query) all_sentiments.
append
({ 'tweet_id': i, 'sentiment': sentiment_value … rouge_scores = calculate_rouge(human_summary, generated_summary) results.
append
({ 'article_id': row.id, 'generated_summary': …
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
1 Month Ago
by usmanmalik57
…= generate_response(model_client, system_instructions, user_query) all_sentiments.
append
({ 'tweet_id': i, 'model': model_name, …) rouge_scores = calculate_rouge(human_summary, generated_summary) results.
append
({ 'model': model_name, 'article_id': row.id…
Re: Best way to find a segment of code that matches a given input segment?
Programming
Software Development
1 Month Ago
by Dani
… article similarity = compute_similarity(target_article, current_article) b.
Append
the similarity score to the similarity_scores list similarity_scores.
append
((current_article, similarity)) 5. Sort the similarity_scores…
Re: Fine-tuning OpenAI Vision Models for Visual Question-Answering
Programming
Computer Science
2 Months Ago
by RKE2
Fine-tuning OpenAI Vision Models for visual question-answering is an exciting step forward in AI! It is amazing how these models can combine image recognition with natural language processing to provide accurate, context-aware answers. Cannot wait to see more advancements!
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
1 Month 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!
Append String from Linked List to Object Ostream
Programming
Software Development
12 Years Ago
by Nethran
… object and I'm having trouble figuring out how to
append
the track names and track lenghts, which are stored in….
append
("\t"); outCD.
append
(obj.artist); outCD.
append
("\t\t"); outCD.
append
(obj.title); outCD.
append
("\t\t"); outCD.
append
…
append in word document using c#
Programming
Software Development
15 Years Ago
by fafi_ali
…csharp]//Text to word file StringBuilder strBuilder = newStringBuilder(); strBuilder.
Append
("<h1 title='Header' align='Center'>Writing … //string strTextToWrite = TextBox1.Text; FileStream fStream = newFileStream (strPath,FileMode.
Append
); fStream.Close(); StreamWriter sWriter = newStreamWriter(strPath); sWriter.Write(strBuilder); sWriter…
Re: Append String from Linked List to Object Ostream
Programming
Software Development
12 Years Ago
by Nethran
… to the end of the nodeString string. if (nodePtr) nodeString.
append
(nodePtr->value); return nodeString; } So it starts at the… if thisNode is larger than 0, it only tries to
append
the string if there is a value in the node…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by DdoubleD
… sWriter.Close(); [/code][/QUOTE] [code] FileStream fStream = newFileStream (strPath,FileMode.
Append
); //fStream.Close(); //StreamWriter sWriter = newStreamWriter(strPath); StreamWriter = new StreamWriter(fStream… sWriter.Flush(); sWriter.Close(); [/code] The changes should fix your
append
at least. Not sure if you are even getting it…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by fafi_ali
[QUOTE=DdoubleD;949647][code] FileStream fStream = newFileStream (strPath,FileMode.
Append
); //fStream.Close(); //StreamWriter sWriter = newStreamWriter(strPath); StreamWriter = new StreamWriter(fStream); …); sWriter.Flush(); sWriter.Close(); [/code] The changes should fix your
append
at least. Not sure if you are even getting it…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by fafi_ali
… make crystal report ,save it as a word document then
append
some words in that word document would you just press… form1.cs then "save " in form2.cs the
append
code in save menustripitem handler in form2.cs thanks alot…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by DdoubleD
… make crystal report ,save it as a word document then
append
some words in that word document would you just press… form1.cs then "save " in form2.cs the
append
code in save menustripitem handler in form2.cs thanks alot…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by alc6379
[QUOTE=fafi_ali;944368][code] FileStream fStream = newFileStream (strPath,FileMode.
Append
); fStream.Close(); StreamWriter sWriter = newStreamWriter(strPath); sWriter.Write(strBuilder); sWriter.…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by DdoubleD
… means. I'm not sure if know, but you can
append
to any file you want. However, that doesn't mean…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by DdoubleD
… in word document the proble is that i want to
append
a string after a table i made in that document…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by DdoubleD
… at that time, which is just HTML. However, when you
append
the HTML to the existing Crystal embedded document, it is…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by fafi_ali
… in it so it makes me don't need to
append
in the word document thanks double d you helped me…
Re: append in word document using c#
Programming
Software Development
15 Years Ago
by DdoubleD
… in it so it makes me don't need to
append
in the word document thanks double d you helped me…
append list then select from list
Programming
Software Development
15 Years Ago
by oystercatcher
…return math.sqrt(x*y) mylist = [] mylist.
append
(a) mylist.
append
(b) n = len(mylist) np = n … tc) print ("from upper",td) mylist.
append
(td) print (mylist) elif (ta < tc …) print ("from lower",td) mylist.
append
(td) print (mylist) else: print("comp…
Re: append list then select from list
Programming
Software Development
15 Years Ago
by oystercatcher
…= [] myvar = [] mylist.
append
(a) mylist.
append
(b) def antilogserfirstpass( la,lb ) : mylist.
append
(gmean(la,lb)) mylist.sort()…mylist[0] def antilogser( la,lb ) : mylist.
append
(gmean(mylist[0],mylist[1])) # print ("in …mylist) myvar = [] for z in mylist : myvar.
append
( abs(z - target) ) # print ("myvar …
append name into text box
Programming
Web Development
10 Years Ago
by nadiam
… name."></td></tr>'; $(addG).
append
(insert);/*
append
into table2*/ }); }); $(".guests td").dblclick(function…each(function(){ if($(this).val() == "") { $(this).
append
(name); } }); addGuest function works and appends the text box. the…
Append Results to ListBox
Programming
Software Development
16 Years Ago
by Agni
… == '.h' or fileext == '.hpp' or fileext == '.py': myFileList.
append
(files[j]) return myFileList # print myFileList def addTextCtrl(self): self…matchline = 'line#'+ str(count+1),line # #print matchline valueList.
append
(matchline) if matchFound:# superDict[fullpath] = valueList # print superDict.keys()…
Append Node to XML file Using Vb.net
Programming
Software Development
16 Years Ago
by jaiprakash15
… myDoc.CreateElement("TaskName") With TaskStatusElements .Attributes.
Append
(myDoc.CreateAttribute("Value")) .Attributes("Value…").Value = Tskid .Attributes.
Append
(myDoc.CreateAttribute("Status")) .Attributes("Status&…
Append query from Excel to Access
Programming
Software Development
15 Years Ago
by stuckcomputer
I have created the
append
query in access and have my new data to
append
to the access table. I have 1500 rows but every time I go to
append
, it says its about to
append
4881 rows. I have deleted the rows several times but it still keeps appending 4881 rows. Could someone help? What could be the issue?
Re: Append query from Excel to Access
Programming
Software Development
15 Years Ago
by stuckcomputer
Hi, sorry, I didn't explain very well. I have my data in excel and I need to
append
the new data to access. The
append
query was working fine until recently. I have 1500 rows in excel to
append
, but when I run the query, it says I am appending 4881 rows - so there are over 3000 rows that are mysteriously getting appended.
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