Differential Directory, indexing method Programming Software Development by xrjf … Miles “ Smith DiDi applies a similar concept, but instead of letters, it identifies the first differing bit between keys. It stores… Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks Programming Computer Science by usmanmalik57 …, negative, or neutral. Return only the sentiment value in small letters. tweet: {}""".format(tweet) sentiment_value = client.chat.completions… Re: Differential Directory, indexing method Programming Software Development 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 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 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 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 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 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: Differential Directory, indexing method Programming Software Development 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 … Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by usmanmalik57 …. " f"Return only the sentiment value in small letters.\n\n" f"tweet: {tweet}" ) sentiment_value = response… DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization Programming Computer Science by usmanmalik57 … only the sentiment value (positive, negative, or neutral) in small letters.\n\n" f"tweet: {tweet}" ) sentiment_value = generate_response… Re: What do you do for work? Community Center Geeks' Lounge by rproffitt … retired my new job is: 1. Activist. 2. Calls and letters to representatives which I find with 5calls.org and the… Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science 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 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: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by rproffitt UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance. Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science 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! % letters Programming Software Development by COKEDUDE Can you please give me a list of all of the % letters that go with int, floats, and doubles in printf and scanf. Letters, numbers and print numbers on the screen Programming Software Development by dr.eu …signs and it counts, how many is capital letters, how many small letters, and how many remaining signs. It stops,…lt; endl; cout << " how many small letters, and how many remaining signs." << endl; …cout << endl << " Number of capital letters is: " << countercapital; cout << endl… Re: Letters, numbers and print numbers on the screen Programming Software Development by dr.eu …lt; endl; cout << " how many small letters, and how many remaining signs." << endl; …endl << endl << " Number of small letters is: " << countersmall; cout << …endl << " Number of capital letters is: " << countercapital; cout << … Re: Letters, numbers and print numbers on the screen Programming Software Development by dr.eu …lt; endl; cout << " how many small letters, and how many remaining signs." << endl; …endl << endl << " Number of small letters is: " << countersmall; cout << …endl << " Number of capital letters is: " << countercapital; cout << … letters to numbers.. numbers to letters Programming Software Development by alexa868 …... I want to write a program that transforms numbers into letters and letters into numbers... for example 20 would be transformed into… Letters apparition problem Programming Software Development by M00nDancer … end :(. The task was to count the alphabet's upper letters appearing in a given text and to print on the… screen all the alphabet's letters and the rate of appearing (how many times was that… Re: Letters apparition problem Programming Software Development by sidatra79 … end :(. The task was to count the alphabet's upper letters appearing in a given text and to print on the… screen all the alphabet's letters and the rate of appearing (how many times was that… Letters frequencies Programming Software Development by poloblue … difficulties with a program that deal getting the letters frequencies from an input text file. So far…; #ifndef LAB_19_HEAD_H #define LAB_19_HEAD_H /**************************************************************** This function gets letters frequencies from the input file. You need to implement this… Re: Letters apparition problem Programming Software Development by ArkM No need in strchr, islower etc for latin letters only. [code=cplusplus] void CountUppers(std::istream& is) { if (!… Re: Letters in a text file Programming Software Development by programtrav how would i find the top 5 most common letters in the file.And how to give the total number of occurences as well as the percentage of the total number of letters.Can you give code please. Letters in a text file Programming Software Development by vegaseat Where you ever curious what the most common letter is in a typical text file? Just another question to ask a friend. The answer is right here in this tiny code snippet. The program converts the text to all lower case letters, and then list them out alphabetically showing the frequency. Letters Soup Problem Programming Software Development by kunkunlol … a word search in a square with loads of other letters). So far now I have a letter (A-Z) randomizer… Letters in array Programming Software Development by kukuruku Hi I am trying to put letters in array ,before that I am converting capitals to lower … Re: % letters Programming Software Development by gerard4143 Try googling C format specifiers..