Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
records
- Page 1
OpenAI o3 vs Anthropic Claude 4 for Text Classification & Summarization
Programming
Computer Science
5 Days Ago
by usmanmalik57
…airline_sentiment'] == 'positive'] negative_df = dataset[dataset['airline_sentiment'] == 'negative'] # Randomly sample
records
from each sentiment neutral_sample = neutral_df.sample(n=34) positive_sample = positive_df… output tokens. The function iterates through the first 10
records
in the dataset and calls the `make_prediction()` function to…
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Months Ago
by usmanmalik57
…'] == 'positive'] negative_df = dataset[dataset['airline_sentiment'] == 'negative'] # Randomly sample
records
from each sentiment neutral_sample = neutral_df.sample(n=34) positive_sample = positive_df…call the `find_research_category()` to predict multiple labels for the
records
in our dataset and then convert the output into binary…
Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
…. If it matches, we insert a new node 6e between
records
1 and 2, updating the structure to: 1J → record 1…
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
I've just made an update because some
records
weren't being added properly. The issue was that the form didn't take into account that the register field (in the call to DiDi) is passed by reference.
Re: How much anonymity does a VPN really provide?
Hardware and Software
Information Security
1 Month Ago
by Liam91
… is more private than a credit card) -If they keep
records
of your activity (best if they don’t) -If they…
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by rproffitt
DiDi appears to be some China based UBER service but then again I can't find a question or much else to discuss here.
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
About DiDi DiDi (Differential Directory) was originally developed as part of my thesis project in the early 1990s. The name bears no relation to the more recent Chinese ride-sharing company. At the time, DiDi was a novel approach within its academic context, but a change in legislation unfortunately led to the closure of the school and the …
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
For example, as Donald Knuth points out in The Art of Computer Programming, the theoretical lower bound for comparison-based sorting algorithms is K × log₂(N). I developed a very simple method that matches this performance. However, DiDi goes far beyond: its performance is proportional to K × (maximum key length), regardless of the number of …
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
As an illustration, consider the theoretical lower bound for comparison-based sorting, as stated by Donald Knuth in The Art of Computer Programming: K × log₂(N). I developed a simple method that matches this limit. For example, to sort the list {2, 5, 7, 1, 4, 3, 8, 6}: Sort pairs: (2, 5) → [1] (1, 7) → [2] (3, 4) → [3] (6, 8) → [4] Merge…
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
"Just to clarify a previous mistake: the efficiency should be K × N × log₂(N), not K × log₂(N) as I initially wrote."
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
Just a quick update for anyone interested: I have revisited and significantly improved the code, aiming for a more professional structure and better performance. The updated version avoids freezing the UI during long operations and follows more robust programming practices. If you’d like to see DiDi in action, there is also a video …
Records Help
Programming
Software Development
18 Years Ago
by Marinow
…I am not very good at it haha, but
records
just make me even more oblivious. The program … program because I don't understand how to use
records
. Basically, the program is a database using a… I can't figure out how to read or sort
records
using arrays. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [code]Program Database (Infile, Outfile); Type…
Re: Records Help
Programming
Software Development
18 Years Ago
by radu84
….f9.co.uk/articles/apps6.htm[/url] you work with
records
using their instances recordname.instance1 recordname.instance2 recordname.instance3 and…
records print in php
Programming
Web Development
14 Years Ago
by jacob21
Hi, I am fetching data from database & using pagination(showing 10
records
per page).What i am trying if i want to print
records
between 20-30,I can print only these
records
(20-30). or by using search if i get 4 result ,can print only 4
records
. Need suggestion
Re: records print in php
Programming
Web Development
14 Years Ago
by jacob21
yes,but only selected
records
. Suppose i did searching n got only 5
records
.I want to print only those 5
records
not all. [QUOTE=divyakrishnan;1592053]What u want?want to set print option to print the report?[/QUOTE]
Records Counting
Programming
Software Development
14 Years Ago
by Naveed_786
How can i count the no of
records
fetched in datagrid from admission table and how to show these no of
records
in a label i.e Total No of
records
= 20 Please help
Re: Records Counting
Programming
Software Development
14 Years Ago
by Naveed_786
Its working fine but i had only one problem now it is counting the
records
but it shows one extra
records
i.e if there is three
records
in admission table it shows me 4 please help
Re: records print in php
Programming
Web Development
14 Years Ago
by jacob21
… ------------------------------------------------------------------------ class PS_Pagination { var $php_self; var $rows_per_page = 10; //Number of
records
to display per page var $total_rows = 0; //Total number of…: SELECT * FROM users * @param integer $rows_per_page Number of
records
to display per page. Defaults to 10 * @param integer $…
Re: Records to HTML pages ?
Programming
Databases
18 Years Ago
by aniseed
…=kickoff3pm;302965]Anyone know of a database app which stores
records
in html format on the web server and nt in… for this. Or does anyone have code that will take
records
from a Mysql database and copy each record to a… advice greatfully received[/QUOTE] You don't need to store
records
in HTML on a web server. You could have an…
Re: Records Counting
Programming
Software Development
14 Years Ago
by AndreRet
That id because there is no
records
to load. [CODE]rs.Open "select StudentID,StudentName,Dob,….EOF = True Or rs.BOF = True Then msgbox "No
Records
" lblIds.Caption = "0" Exit Sub Else Dim…
Re: Records Counting
Programming
Software Development
14 Years Ago
by dspnhn
… if rs.recordcount >0 then label1.caption="Total
Records
Found: " & rs.recordcount else label1.caption="Total…
Re: records print in php
Programming
Web Development
14 Years Ago
by jacob21
I want to print all the
records
.Is there any method of pagination including print option
Re: records print in php
Programming
Web Development
14 Years Ago
by divyakrishnan
Use check box to select specific
records
.Mark the check boxs to be wanted print.
Records to HTML pages ?
Programming
Databases
18 Years Ago
by kickoff3pm
Anyone know of a database app which stores
records
in html format on the web server and nt in a sql server. I have a spacific need for this. Or does anyone have code that will take
records
from a Mysql database and copy each record to a seperate html page. Any advice greatfully received
records from one datagridview to another then a textbox
Programming
Software Development
15 Years Ago
by Xinnie
… on the project_name I want it to bring all the
records
about it. Because I have another feature that obligates everyone… click on the project_name, it should bring me all the
records
+ dates 15/05/2010, 16/05/2010... in another datagridview…
Records & Tables
Programming
Databases
12 Years Ago
by anthonyjpv
Hi! 1. Whats the difference between using these PL/SQL
records
? -Table Based -Cursor Based -Programmer Based 2. Whats the importance of using PL/SQL Table? 3. Whats the importance of using VARRAYS? 4. When to use these 3
RECORDS
, TABLES, VARRAYS Thanks!
records should be in tamil letters (a language in india) and english when displyed
Programming
Databases
18 Years Ago
by thangasiva
… a table if yes how please? can i fetch the
records
from that table (first column in tamil and second column…
Records and Files x.x
Programming
Software Development
16 Years Ago
by codeforfun
… i'm trying to make a program that saves the
records
in a file... this is what i got so far…
Re: Records and Files x.x
Programming
Software Development
16 Years Ago
by codeforfun
Im really lost there x.x. I tried changing the place of assigns. but i still get the error code = 102, and i know its because the file isn't assigned, but this is my first program with files and
records
x.x
Records in python- small wrapper around namedtuple
Programming
Software Development
12 Years Ago
by hughesadam_87
… works nicely, but what if we want to read in
records
with no height column. This is the first place that…
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC