462 Recommended Topics

Remove Filter
Member Avatar for TSC_Chazz

I have posted this question elsewhere and gotten zero helpful responses. Specifically on an Apple, with Python 3.9.10, I am using the socket sendall method to send a data buffer on a network connection that has successfully opened to a server. The data that I am sending does not reach …

Member Avatar for rproffitt
1
24
Member Avatar for cambalinho

heres my timer class with a module(on a group project for create a DLL): 'Module: Option Explicit Private Declare Function SetTimer Lib "user32" (ByVal hWnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Long) As Long Private Declare Function KillTimer Lib "user32" (ByVal hWnd As …

Member Avatar for rproffitt
0
39
Member Avatar for maaz_5
Member Avatar for usmanmalik57

## Introduction ## In a previous article, I explained [how to fine-tune the vision transformer model for image classification in PyTorch](https://www.daniweb.com/programming/computer-science/tutorials/540749/fine-tuning-vision-transformer-for-image-classification-in-pytorch). In this article, I will explain how to fine-tune the pre-trained OpenAI Whisper model for audio classification in PyTorch. Audio classification is an important task that can be applied …

Member Avatar for meyerrluanna
3
1K
Member Avatar for usmanmalik57

The AI wave has introduced a myriad of exciting applications. While text generation and natural language processing are leading the AI revolution, image, and vision-based technologies are quickly catching up. The intersection of text and vision applications has seen a rapid surge recently. In this article, you'll learn how to …

2
203
Member Avatar for usmanmalik57

Large language models (LLMS) are trained to predict the next token (set of characters) following an input sequence of tokens. This makes LLMs suitable for unstructured textual responses. However, we often need to extract structured information from unstructured text. With the Python [LangChain](https://www.langchain.com/) module, you can extract structured information in …

1
98
Member Avatar for Johannes C.

**The creators of an automated software engineer tout their AI's capability to independently tackle complete coding projects, including actual tasks from Upwork. While skepticism is warranted regarding Devin's authenticity, the risk of AI displacing professionals across numerous fields is undeniable.** ![will-code-for-food.jpg](https://static.daniweb.com/attachments/4/99bd97fef16cdf10bb6f279c6facacc2.jpg) On Tuesday, Cognition Labs, based in San Francisco, unveiled …

Member Avatar for meyerrluanna
2
600
Member Avatar for SolidSolutions

I had a difficult time figuring out how to get or test the last character of a string with javascript, so figured I would post it once I found out in case it helps someone else. I found plenty of removing the last character, but not for just checking what …

Member Avatar for Biiim
0
5K
Member Avatar for brother_1

I have 3 okta apps setup. Okta app for backend Okta spa app Okta web app The Okta spa app is able to use the access token it got and pass to Okta app for backend and the token is validated. However, the Okta web app access token when passed …

Member Avatar for Dani
0
24
Member Avatar for Masika

Does Anyone know how a beginner like me in tech can start learning cyber security or starting a career in cyber engineering?

Member Avatar for trueframe
1
94
Member Avatar for John_165
Member Avatar for HannaHuynh
3
186
Member Avatar for jkon

One thing that I have learned , is to acknowledge my fears in order to see if I can do anything about them. I would love to read yours fears about this A.I. revolution. I have chosen to participate in this weave with what ever resources my small company has …

Member Avatar for rproffitt
0
137
Member Avatar for Johannes C.

**Find out how the recent leak of Google’s internal documents affects SEO strategies: All key takeaways and the most important implications for optimizing your content in light of the leak.** ![google-leak-seo-takeaways.jpg](https://static.daniweb.com/attachments/4/33bc1ca16f29c159257318bde2d7ef39.jpg) It’s been one week since news about leaked API documents providing insights into Google’s search algorithm surfaced, and the …

Member Avatar for emiilyyjohnson2
3
165
Member Avatar for momentum2024

have an annoyance that I i'd like to know a workaround for please: -often/frequently/ nearly everytime i use MS 365 sign in or gmail sign in it takes me to a password reset. i have no wish to change my password { also previously did but it still kept wanting …

Member Avatar for Salem
1
42
Member Avatar for ASubhan

Reflect on your experience with object-oriented programming (OOP) in Java. Discuss how concepts like inheritance, polymorphism, and abstraction have helped you in your projects. Share examples and personal insights.

Member Avatar for DEEPAK_84
1
56
Member Avatar for Johannes C.

**Are humanoid robots just around the corner or still mostly science fiction? Here’s my take on when you’ll finally get your robot servant.** ![awesome-o.jpg](https://static.daniweb.com/attachments/4/a9a64be9a710864787a02ed5c434d446.jpg) Since the [World Robot Conference](https://www.worldrobotconference.com/en) in Beijing (August 21-25), videos of robots [mimicking human expressions](https://www.youtube.com/watch?v=kX27lozxLJM&t=4s), alongside prototypes with [astonishingly agile movements](https://www.youtube.com/watch?v=kX27lozxLJM&t=4s), have grabbed a lot of …

Member Avatar for Reverend Jim
0
53
Member Avatar for Johannes C.

**Almost two years into the AI hype, a looming market correction may soon separate true innovators from those who are trying to capitalize on the hype. The burst of the bubble could pave the way for a more mature phase of AI development.** ![ai-bubble.jpg](https://static.daniweb.com/attachments/4/03423bc2c2c9c9522a397e8fc70b26d9.jpg) Amidst recent turmoil on the stock …

Member Avatar for meyerrluanna
0
95
Member Avatar for massivefermion

I'm learning nodejs(and I like it!). I tried to figure out how to have shorter alias for `console.log` and I found out that I can use `var cout=console.log` and use `cout('[string]')` from then on. Then when I wanted to use `process.stdout.write` and I tried to make a short alias for …

Member Avatar for Bhavika_1
0
309
Member Avatar for Paulmescal

"Hello everyone, I'm currently working on developing a shopping app, and I'd like to gather some insights from the community. What do you believe are the essential key features that should be considered when developing a shopping app? Your expertise and suggestions would be greatly appreciated. Thank you!"

Member Avatar for khushnuma_1
2
281
Member Avatar for Smbom

I'm also doing SEO for our company's website, but I'm kind of newbie in this industry, so is there anything special I should pay attention to doing SEO?

Member Avatar for synkli
2
239
Member Avatar for fowokov687l

I wanted to set up a nextcloud server so that I can remotely access my cloud without relying on outside servers. I am using ubuntu linux.

Member Avatar for Dani
1
128
Member Avatar for dot LI

Hi All, I have a dedicated server with a company with poor technical support. Can anyone suggest a server company? Thanks, Jim

Member Avatar for Dani
1
43
Member Avatar for usmanmalik57

Retrieval augmented generation (RAG) allows large language models (LLMs) to answer queries related to the data the models have not seen during training. In my previous article, I explained [how to develop RAG systems using the Claude 3.5 Sonnet model](https://www.daniweb.com/programming/computer-science/tutorials/542136/retrieval-augmented-generation-with-claude-3-5-sonnet). However, RAG systems only answer queries about the data stored …

1
107
Member Avatar for maaz_5
Member Avatar for Ryan Morgan

Hello, I have encountered an unpleasant event. My external hard drive has stopped working. The disc is no longer readable . When I connect the disc to my computer, the system asks me to format it. There are very important files on the disc. Does anyone know how to help …

Member Avatar for astroraamaji
3
397
Member Avatar for Harvey_6

Anyone who can help me out with this? I've working on my website since this year and I don't have that much knowledge.

Member Avatar for QuintinFields
0
112
Member Avatar for andrewecook

How can I be benefited from social listening tools and software? What strategies and techniques should I follow my ecommerce business?

Member Avatar for Pelorus_1
1
169
Member Avatar for Arther_1

Hey everyone, I'm curious if anyone here has experience with HARO link building service? I've heard it’s a great way to get high-quality backlinks from top-tier publications like Forbes and The New York Times. Does it really help with SEO and brand visibility? Any tips on making the most out …

Member Avatar for Dani
0
77
Member Avatar for Chris Hüneke

Never published this before, so this is a DaniWeb.com Exclusive :) If your WP-Site has a lot of K-Links, you should consider using this script. It definetly works. For now... ## **Negative SEO** through spamming Backlinks can be a huge problem for the visibility of a webpage. ## You can …

Member Avatar for amastyteam
2
358
Member Avatar for usmanmalik57

On August 20, 2024, [OpenAI enabled GPT-4o fine-tuning](https://openai.com/index/gpt-4o-fine-tuning/) in the OpenAI playground and the OpenAI API. The much-awaited feature is free for fine-tuning 1 million daily tokens until September 23, 2024. In this article, I will show you how to fine-tune the OpenAI GPT-4o model for text classification and summarization …

2
394

The End.