Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
split
- Page 1
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
… Biology", "Quantitative Finance"] # Remove square brackets and
split
the subjects for each entry in outputs parsed_data = [item.strip…('[]').
split
(',') for item in outputs] # Create an empty DataFrame with columns …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
…break elif command.startswith('move'): _, x, y = command.
split
() pyautogui.moveTo(int(x), int(y)) elif command == '…pyautogui.click() elif command.startswith('type'): _, text = command.
split
(' ', 1) pyautogui.typewrite(text) conn.close() server_socket.close()…
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
… within the `<think> </think>` tags. We
split
the response using the last `</think>` tag and…;: user_query} ] ) output = response.choices[0].message.content final_response = output.strip().
split
("</think>")[-1].strip() return final_response system_instructions…
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…. If you are only interested in the response, you can
split
the response string using the `</think>` delimiter and… "</think>" in output: response = output.strip().
split
("</think>")[-1].strip() return response return…
McCharts - ArkTS
Programming
Software Development
1 Month Ago
by 杨_659
… maxValue = Math.max(...values) let maxNameW = 0 let cSpiltNum = 5 //
Split
into equal parts let cSpiltVal = maxValue / cSpiltNum // Calculate the…
split
spacing for(var i = 0; i <= this.options.data.…
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!
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Split test PPC Campaigns For Best ROI
Digital Media
Digital Marketing
Search Engine Strategies
9 Years Ago
by SmartMoneyFinan
… is a crucial part of Marketing. In fact without
split
testing your campaigns against each other you could be leaving…able to increase conversions by over 100% You can
split
test different offers or just different landing pages for the… same offer. Also
split
testing which keywords perform best. So start
split
testing today if you aren't…
Split Column by Pipe In Ms Sql
Programming
Databases
10 Years Ago
by jotungiya
Split
pipe delimited into new columns as below : col1 col2 col3 … tune 5 Data|| Data check http://stackoverflow.com/questions/19688863/
split
-pipe-delimited-into-new-columns
[split] c++ program for who wants to be a millionaire
Programming
Software Development
15 Years Ago
by fruymercado
[
split
from [url]http://www.daniweb.com/forums/post1162537.html#post1162537][/…
Re: Split Session values
Programming
Web Development
9 Years Ago
by broj1
Split
on what condition? Give an example of a session variable you have and how would you like to have it
split
.
Re: Split document an count words
Programming
9 Years Ago
by woooee
split
() on <doc> first and then process each item separately in the returned list.
Split
Programming
Software Development
14 Years Ago
by Kath_Fish
….ToString(); foreach (string lines in File.ReadAllLines(fileOpen.FileName)) { string[]
Split
= lines.
Split
(new string[] { " ", "\n", "\r…
Re: Split
Programming
Software Development
14 Years Ago
by Mitja Bonca
…Replace(",", ""); string[] lines = allText.
Split
(new string[] { "\n" }, StringSplitOptions.RemoveEmptyEntries);…i < lines.Length; i++) { string[] _Chars = lines[i].
Split
(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries); int counter…
Re: Split
Programming
Software Development
14 Years Ago
by Momerath
…quot;data.txt"); String[] first = lines[0].
Split
(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); String[] second = lines[…1].
Split
(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); for (int i = 0…
Re: Split
Programming
Software Development
14 Years Ago
by Munnazz
just use .
split
(' '); into an array
Re: Split
Programming
Software Development
14 Years Ago
by sidnei
… second parameter? Did you mistype it? Try simply [CODE] Arrl =
Split
("aaa bbb&ccc ddd&eee", "…;") [/CODE] It works fine for me. And [ICODE] Msgbox
Split
("aaa bbb&ccc ddd&eee","…[QUOTE=ITKnight;1517277]Hi, this part of code : [CODE]Arr1 =
Split
("aaa bbb&ccc ddd&eee",4…
Re: split
Programming
Software Development
10 Years Ago
by JamesCherrill
The parameter for
split
is a REGEX. In a REGEX the + character is a …, messy isn't it). In summary: to
split
on + characaters you need to code `
split
("\\+")` Check out the doc for…
Split
Programming
Software Development
14 Years Ago
by ITKnight
Hi all, How i can
split
a string that include spaces by "&" ? I already used
split
function but there are problem with spaces. thanks.
split
Programming
Software Development
10 Years Ago
by sGirl123
I want to
split
sentence that has + I code this: String[]s; String a; s=a.
split
("+"); but it throw this exeption: Exception in thread "main" java.util.regex.PatternSyntaxException: Dangling meta character '+' near index 0 what should I do?? thanks
Re: Split
Programming
Software Development
14 Years Ago
by ITKnight
Hi, this part of code : [CODE]Arr1 =
Split
("aaa bbb&ccc ddd&eee",4) [/CODE] it returns the values aaa ccc eee ignored the values after the spaces. Best Regards, Thank You
Re: Split
Programming
Software Development
14 Years Ago
by Jx_Man
See if this help : [CODE]Arr1 =
Split
("aaa bbb&ccc ddd&eee","&")[/CODE]
Re: Split
Programming
Software Development
14 Years Ago
by WaltP
Sorry, didn't remember there was a
split
command. Ignore my post
Re: Split Column by Pipe In Ms Sql
Programming
Databases
10 Years Ago
by djjeavons
…anything? If your question is how do I
split
Col1 based on a pipe to produce a …table then check out this great example [
Split
a string to a table using T-SQL](…http://ole.michelsen.dk/blog/
split
-string-to-table-using-transact-sql.html) which… creates a function to perform the
split
and returns the data as a table which …
Re: Split test PPC Campaigns For Best ROI
Digital Media
Digital Marketing
Search Engine Strategies
9 Years Ago
by rockingjohncart
I agree with your post. As my experience, I realize that many company never did
Split
testing although it's very important role to get high and genuine traffics.
Split string except inside brackets or quotes
Programming
Software Development
12 Years Ago
by TrustyTony
…Jarkko Veijalainen) {'This 'is' quoted' Great to "
split
" this}
split
"Also Quoted part" [test test] end …("is") quoted" Great to "
split
" {this
split
} "Also Quoted part" [test test] …
.Split Method is not working
Programming
Software Development
10 Years Ago
by Mara_1
…) { String SMSMessage; if (SMSMessages.TryDequeue(out SMSMessage)) { string[] nummsg = SMSMessage.
Split
(';'); ConsoleWriteLine("Waiting for message to send..."); IAsyncResult result…
Re: Split and merge image segmentation
Programming
Software Development
11 Years Ago
by willyah
… -------- quadtree splitting region
split
(const Mat& src…} } //--------------------------------------------------------------------------------------------------------------- --------
split
&merge test predicates …
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