Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by usmanmalik57 In the [last article](https://www.daniweb.com/programming/computer-science/tutorials/542973/benchmarking-deepseek-r1-for-text-classification-and-summarization#post2300447), I explained how you can use the [DeepSeek-R1-Distill-Qwen-32B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B) model for text classification and summarization … Re: Selling the house that I grew up Community Center Geeks' Lounge by Dani Why did you tag this thread 'gaming' and 'virtual-reality'? I changed the tag to finance, which is the closest tag I can think of that would fit, I suppose. I am in a bit of a similar boat. I lived in a very large house with my parents in New York from the age of 2 until I was 27, at which point I bought my own co-op with DaniWeb money about a … Re: Google Search Console -> Page indexing Digital Media Digital Marketing Search Engine Strategies by Dani It looks like you have 800 pages that have been successfully crawled by Google, but Google chose not to index them because it felt as if they were too low quality (or some other reason) to make it into the index. Start by reviewing the pages that are in this category to see if you spot any obvious reasons why Google might consider them thin content… Re: I am back after a hiatus, I want to help! Programming Web Development by Dani Hello and welcome back!! You can post random code snippets by clicking on the [Contribute](https://www.daniweb.com/community/contribute/4) link in the top navigation menu and then under Topic Type, change it to "Reusable Code Snippet". You can also contribute new topics by using the sidebar hamburger menu, selecting a forum category … Re: How to contact a specific member Community Center Say Hello! by Ja sa bong I had to check but sadly I couldn't find anywhere to specifically contact a member personally. There is no option for you to send direct message or even see the person's contact information on their profile. You have to just tag the person on a post and hope that the person comes back to see it. Re: Why my created link is not updating as a backlinks? Digital Media Digital Marketing Search Engine Strategies by sarahhamdan If your backlink isn't updating, it could be due to indexing delays, a nofollow tag, or the linking site’s low authority. Make sure the page is indexed and check with backlink tools like Ahrefs or Moz. Sometimes, it just takes a bit of time! 😊 Re: Escape in-app browser? Programming Web Development by rproffitt Sorry about that. When I replied I saw the PHP tag so my thought was you were writing code. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon > However, what is the harm in adding loading="lazy" to an existing web app? 96% of users will experience a performance improvement. The other 4% of users will have no negative consequences, and everything will be exactly the same for them. That 4% will not lose any functionality. That 4% will not experience any UI/UX consequences or … 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: 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! Re: Tag Cloud Generators? Digital Media Digital Marketing Search Engine Strategies by jafrain_jaff Tag cloud generator is a block to generate most popular keyword and the frequency of the website. It analyzes those keywords which user can type for searching the website through Google. And yes it is very reliable and I recommend you to go for: http://www.scotiasystems.com/keyword-tag-cloud/keywordcloud.php Re: tag printing Community Center by fpsasm tag, as in barcode? or as in a small piece of "paper" with a few characters? Tag System Programming Databases by delta_frost I wish to implement a tag system for a gallery,I have a huge number of images and all of them are to be associated with one or more tags. The number of tags is also large,but not exceeding say 500,isn't constant.Tag texts may also be large in certain cases. What is the best way to implement such a tag system performance-wise(out of the following or… tag <? Programming Web Development by dourvas hallo there i had built a bunch of webpages and they ve been working fine for months. yestarday i installed this website to another computer after i instaled easyphp 5.4.6 (Apache 2.4.2, mysql 5.5.27 and php 5.4.6). it seems that nothing is working as it should. after i debug my code i found out that the tag <?, that i used a lot, can not be … tag system Programming Databases by jboog I'd like to add tags to my app. I have several different resources I would want to apply tags to, such as blogs, picture galleries and a few others. More efficient to add tag columns to each resource table or create a seperate table for tags that refrences each resource. I can't decide on the trade off. its a web app written in php5 and mysql5 I… Re: tag system Programming Databases by binaryten [quote=jboog;316983]I'd like to add tags to my app. I have several different resources I would want to apply tags to, such as blogs, picture galleries and a few others. More efficient to add tag columns to each resource table or create a seperate table for tags that refrences each resource. I can't decide on the trade off. its a web app written … Re: tag system Programming Databases by dezignwork I am in process of doing something similar for one of my web sites. I would add another question here for anyone to discuss. Is there a better design that allows to group tags so that they don't grow exponentially over time. Imagine tags like: tag, tags, the tags, tagg, etc. Any ideas? Tim Tag Handler, HttpSessionBindingListener, Application Scope interactoin Programming Web Development by sciwizeh I'm trying to list currently online users on a pet project I'm working on. I've found a few ways to do it, but I'm having difficutly getting the one I chose to work properly. The basic idea was to use an HttpSessionBindingListener on the users information to add it to a list in the application scope, and remove it when the session was terminated.… Tag archive page Programming Web Development by reco21 Hello, I'm making a tagging system for a script. The tagging system is much like the one here. be it's not normalized like this one. It's a single table in my database with three columns. uid | id | name The 'id' field is not auto increment. It is a field which holds the corresponding tables unique id. Everything works well. I … Re: Tag archive page Programming Web Development by pritaeas Problably something like: [code] $tag = $_GET['tag']; // tags.php?tag=php $query = "SELECT * FROM tags WHERE name='$tag'"; // slightly different, you know what should be here $result = mysql_query($query); if ($result) { while ($row = mysql_fetch_assoc($result)) { // output your data here. } } [/code] Re: Tag archive page Programming Web Development by pritaeas I think you answered your own question already. A tags.php file should work just fine. You can get the tag through the URL. So, just make your tags clickable with an A tag, and point it to the tags.php?tag=bookreview tag that shows hand on mouseover Programming Web Development by hinde I need a tag that doesn't go anywhere when I click on it but will show the little hand with index finger outstretched like I am hovering over the text teh tag applies to. I googled for a while, but could not find anything related to what I am looking for. I need this because I am writing a file that will execute a javascript function when I click… Tag Remover Digital Media UI / UX Design by ChandY5 I'm looking for a tag remover. What I mean by tag is all kind of stuffs u might find on a pic (written stuffs, signatures ...). I need it to view some pictures that contains tags (as I can't view them very well). It's for personnal use ^^ Thx for ur attention. Tag Cloud - requirements Programming Web Development by assaf Hi I want to have a tag cloud on my site, and would like to know if there are free scripts for tag cloud and how much customization is involved (I'm a bit tech-challenged). Thanks, Assaf Tag names for heading Programming Software Development by techie929 How Can I fetch the tag name of the below xml file only once,without use of getElementByTagName. Like I have to display the XML as an HTML table.So the headings of the table would be COMMON BOTANICAL ZONE LIGHT PRICE AVAILABILITY I am getting tag name for all child nodes. How can I get it only once? COMMON BOTANICAL ZONE LIGHT … tag printing Community Center by jlego not sure where this should be posted. its a software / hardware suggestion question the company i work for has had nothing but problems with tag printers for as long as i remember (they print small tags that fit on jewelry, rings etc.). after hearing of the problems going and going, i wanted to do some research does anyone recommend … Tag Cloud Generators? Digital Media Digital Marketing Search Engine Strategies by HoverportMedia Hello everyone, I may not be no SEO expert (yet), but during my studies of SEO, I was wondering about tag cloud generators. The reason I question these tag cloud generators is one, are they reliable in any sense and if they are, what is the one you would recommend? The reason I'm asking this is for the input of tags in our Wordpress blog and/or … tag error with the cloneNode in xml file Programming Software Development by sing1006 I having a problem with the cloneNode tag problem. NodeList movielist = doc.getElementsByTagName("movie"); Element child = (Element)movielist.item(6); Element newNode = (Element)child.cloneNode(true); child.appendChild(newNode); newNode.setAttribute("id", "this is newnode"); code above … Re: tag that shows hand on mouseover Programming Web Development by tgreer The last suggestion is the best. An anchor tag with the href set to "#" will navigate to the TOP of the page when clicked, which isn't quite the same thing as "go nowhere". Similarly, using an empty JavaScript is... well, silly, in my opinion. So I second IAMMATT's suggestion: just style a normal element, such as span, to …