Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Reverend Jim Based on the proliferation of AI generated content, and the age-old rule of garbage in, garbage out, what will be the result of AI models being trained on ever increasing amounts of content generated by other AI platforms? Will we get into a negative feedback loop where the output will become so polluted with bad input that it will be effectively … Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by jwenting Even worse: the junk being deliberately fed to AIs is already at the stage where the results are useless BUT those results are blindly believed by many people BECAUSE they're generated by AI and therefore supposedly automatically correct! Think Google's disastrous launch of their image generator which would under no condition generate Caucasian … Text to Speech Conversion Using Hugging Face Transformers Programming Computer Science by usmanmalik57 … `unidic download` command downloads the language dictionary required for text processing. ## A Basic Example Let's create a basic example of… ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Johannes C. … it is instead a (natural?) outcome of very complex information processing, one that could theoretically be reproduced in a machine via… 7 NLP Tasks to Perform for Free in Python with Mistral 7b LLM Programming Computer Science by usmanmalik57 In the rapidly evolving field of Natural Language Processing (NLP), open-source large language models (LLMs) are becoming increasingly … to achieve general-purpose language generation and other natural language processing tasks such as classification. LLMs acquire these abilities by learning… "Enhanced Imaging: USB 3.0 Camera Technology" Hardware and Software by diana_17 …-resolution photos and video recordings. This enables real-time image processing and lowers latency, making USB 3.0 cameras suitable for… and efficiency of applications that require rapid image gathering and processing. Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …;success) { // ReCaptcha validation successful, process the form submission // Your form processing code goes here $subject = "Showing Scheduling"; $message = "… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun … 1, in <module> import cv2 # OpenCV for image processing ModuleNotFoundError: No module named 'cv2' >>> I double… A module that comes with Python, doesn´t register? Programming Web Development by Audun … 1, in <module> import cv2 # OpenCV for image processing ModuleNotFoundError: No module named 'cv2' I double-checked to see… Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by mx_983 …: 7339908) 2024-04-03 5:05:10 2 [Note] WSREP: ####### processing CC 7339908, local, ordered 2024-04-03 5:05:10… Question Answering with YouTube Videos Using RAG in LangChain Programming Computer Science by usmanmalik57 … smaller chunks using the LangChain `RecursiveCharacterTextSplitter`. This facilitates more efficient processing and embedding. The embeddings are generated using `OpenAIEmbeddings,` which transform… '30% of Activities Performed by Humans Could Be Automated with AI' Community Center by Johannes C. … insight into complex psychological dynamics. No amount of data or processing power can yet replicate life experiences and the layered understandings… 'AI Is Expected to Transform the Role of Controllers & Analysts ' Community Center by Johannes C. … data, audit processes, and strategic financial planning and forecasting by processing and analyzing data at a scale and speed unattainable by… Re: Improve HAVING BY performance Programming Databases by Biiim … the benefit of allowing you do do some simple post-processing on the result set. (This is for MariaDB at least… Re: DaniWeb Auto Answer A.I. feature Community Center Meta DaniWeb by toneewa … users with an RTX card can use the feature, and processing their own requests. Require a LLM download from DaniWeb. Remoting… Re: The Application of Greedy Algorithm in Computer Monitoring Software Hardware and Software by Dani > Maybe the tag system changed but in the past I could create a new tag if there wasn't one. Only non-newbie members can do that. Please visit our [tagging guidelines](https://www.daniweb.com/welcome/tagging). Re: "Enhanced Imaging: USB 3.0 Camera Technology" Hardware and Software by rproffitt Weird. I thought the move to USB-C was the next big thing. Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun Sorry for the weird formatting.. Re: A module that comes with Python, doesn´t register? Programming Web Development by Reverend Jim I tried installing python 3.12 and had the same problem. I typically wait a bit before installing the latest and greatest because I have found it can take a while before packages are upgraded to be compatible (usually wxpython). I was able to install the individual packages under python 3.10. I know that the "next to latest and greatest" … Re: i don´t understand this syntax error when using OpenCV Programming Databases by Reverend Jim What happens if you open a python shell and just type "import cv2"? As I said in your other thread, the problem might be with python 3.12. It imports ok under 3.10. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani The first thing I will say is never output `$_POST[]` content directly into the HTML without escaping it first. You are leaving yourself wide open to an HTML injection attack. Not only that, but you're also leaving yourself open to invalid HTML. All it takes is to wrap your user-sent variables with htmlspecialchars to make sure they're HTML-escaped… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I do not have access to the PHP error log nor do I know how to check to see if mail() is returning false. The coding I'm using has worked (e.g. sent email with submitted info) for 13 years and now stopped working. My URL/PHP provider, Ionos, claims it won't send because all recipient email addresses need to be authenticated and a new STMP PHPmailer… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun I tried that using Thonny, and I´m getting the same result. I tried the same in the "CMD" that opens when I press Python 3.12, and what happened was, it just said nothing and went back to an empty "line", or whatever. I suppose that´s a good sign? It says syntax error a lot on there too. What sort of programs do you use … Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Ran into some new issues. Here goes. In order to download PHPMailer, must download Composer. In order to install Composer, need a Command Line PHP.exe file. I do not have one of these. I have been using PHP services from URL provider, 1 & 1/Ionos since 2011. They said in order to get a Command Line PHP.exe file, requires SSH to 'Connect to … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim You don't need composer or access to the php.exe. just locate the PHPmailer Directory into your web root, to keep it simple and the require links should point to where it is located. mine is `require 'includes/PHPMailer/src/PHPMailer.php';` cause I put it in a folder called includes, this should be relative to the file that is using it.… Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt From https://stackoverflow.com/questions/78269177/mariadb10-11-6-galera-single-failed-node-startup-stuck-failure where they call it out as a bug waiting for a fix. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt The problem is still unresolved. Until the bug is fixed. Be sure to tell all that you don't accept this as a bug and want a fix now.