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 … Comparing Fine-tuned and Default GPT-3.5 Turbo for Text Classification Programming Computer Science by usmanmalik57 …['airline_sentiment'].str.strip() != '') & (dataset['text'].str.strip() != '')] # Filter the DataFrame for each sentiment neutral_df = dataset[dataset['airline_sentiment'] == 'neutral… ) return sentiment.choices[0].message.content ``` Next, we will filter 100 test tweets from the dataset. These tweets will be… DropDown data shuffling issue Programming Web Development by akkbkht …: Label6.Text, ShiftTiming: Text(Dd6.Selected.Value) } ); ClearCollect( DateRange, AddColumns( Filter( AddColumns( Sequence( DateDiff(startDate, endDate) + 1 ), Date, DateAdd(startDate - 1… OpenAI GPT-4o vs Meta Llama 3 for Zero Shot Text Classifiation Programming Computer Science by usmanmalik57 … = dataset[(dataset['airline_sentiment'].str.strip() != '') & (dataset['text'].str.strip() != '')] # Filter the DataFrame for each sentiment neutral_df = dataset[dataset['airline_sentiment'] == 'neutral… ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Johannes C. … personal opinion, the emergence of AGI resolves the mystifying Great Filter and is probably the second most likely explanation to the… Re: Why some people copy / paste LLM answers to a question as their own ? Community Center Geeks' Lounge by Dani … now-deleted posts, and posts caught up by the spam filter, have a link either within the content, within a forum… Re: DropDown data shuffling issue Programming Web Development by akkbkht Sorry. Forgot to attach the image in the main description. ![ITSDRosterError.jpg](https://static.daniweb.com/attachments/3/977be3ec0324088eab80fc13dd3b96fa.jpg) Display product filter on all products category Programming Web Development by ianhaneybs … all ok but I would like to have the product filter displayed in the left column so it's the same….php?route=product/category&path=271 has the product filter in the left column. On the all products category page…&path=-1 I would like to have the product filter displayed. The extension I downloaded is https://www.opencart.com… How do I swap out the mesh on a humanoid armature in Unity 3D? Programming Game Development by Michael_80 … unpacked a prefab so that I could utilize the mesh filter of the new prefab that I imported. I realized that… the game object? I have attempted to add a mesh filter (Man_BodyMesh) and used the root which was different on the… Claude 3 Opus Vs. Google Gemini Vs. GPT-4 for Zero-Shot Text Classification Programming Computer Science by usmanmalik57 … = dataset[(dataset['airline_sentiment'].str.strip() != '') & (dataset['text'].str.strip() != '')] # Filter the DataFrame for each sentiment neutral_df = dataset[dataset['airline_sentiment'] == 'neutral… Lots of new members but no one posts Community Center Meta DaniWeb by Dani As [you can see here](https://www.daniweb.com/stats/members?country=&filter=&sort=timestamp), we get lots of new members signing up every day, but nearly no one posts. This has been true for decades and decades now. Anyone care to hypothesize why all these people sign up if not to contribute? #Lurker Summarizing YouTube Video Transcriptions Using Distil Whisper and LLM Programming Computer Science by usmanmalik57 … are only interested in the audio streams here. We will filter the `audio/mp4` with `128kbps` ABR (adaptive bitrate stream). You… Re: Improve HAVING BY performance Programming Databases by Biiim … on tbl2 for columns idx, abc so it can quickly filter those rows out and return it in 0.0001s Re: Lots of new members but no one posts Community Center Meta DaniWeb by pritaeas Spammers? Perhaps auto-deleted? Re: Lots of new members but no one posts Community Center Meta DaniWeb by Dani I can confirm that's not happening. I can confirm they're just signing up and then leaving, and can also confirm they're not bots. There can't be *that* many people creating sleeper accounts for future spam attacks, so I'm ruling that out too. Plus, it's always been this way. Re: Filter Programming Web Development by diafol …,0,1)); if(ctype_alpha($input)) $filter = " WHERE `name` LIKE '$filter%'"; } $query = "SELECT ..." . $filter; now run the query and do… filter cars according to their brands Programming Web Development by IbtiSsam ….com/attachments/4/999b4e6902a96108f372a91436f490d7.png) > hiplease help me to *filter the cars* that's the code of > index.php… filter combobox in a datgrid based on another combobox vb.net Programming Software Development by spider2vb filter combobox in a datgrid based on another combobox vb.net … Re: Filter Programming Web Development by tqmd1 …require_once("connect.php"); $filter = ''; if(isset($_GET['filter']) && trim($_GET['filter'])) { $input = trim($_GET['filter']); $input = strtoupper(substr($input…not work. I enter some value into textbox and press Filter Result button then it says: Warning: mysqli_fetch_array() expects parameter… Re: Filter Programming Web Development by tqmd1 …;/style> </head> <body onload="form1.filter.focus()"> <div id="box2">… require_once("connect.php"); $filter = ''; if(isset($_GET['filter']) && trim($_GET['filter'])) { $input = trim($_GET['filter']); $input = (substr($input,0,1… Re: Filter Programming Web Development by tqmd1 … body tag is like this <body onload="form1.filter.focus()"> <div id="box2">…("connect.php"); $filter = ""; if(isset($_GET['filter']) && trim($_GET['filter'])) { $input = trim($_GET['filter']); $input = (substr($input,0… Filter Programming Web Development by tqmd1 …="search"> <label for="filter">Filter</label> <input type="text&…quot; name="filter" value="" id="filter" /> </div> &…jpg[/IMG] Now I want to apply incremental search with Filter box. For example: If I type "B"… Re: Filter Programming Web Development by tqmd1 …query in this way $sql = "SELECT * from contacts $filter order by name"; echo $sql; it shows: SELECT * from… contacts WHERE `name` LIKE '%' order by name It means $filter is not getting any value from form. Should we fill… <input type="text" name="filter" value="" /> Re: Filter Programming Web Development by tqmd1 where should i put my query? I want to populate it with <input type="text" name="filter" value="" id="filter" /> Re: Filter Programming Web Development by diafol That error message suggests that there is a typo or wrong fieldname/ tablename etc in the query. $sql = "SELECT * from contacts .$filter order by name"; You've included the concatenator (.) within the string - no need: $sql = "SELECT * from contacts $filter order by name"; Try that. Re: Filter Programming Web Development by diafol …'t taken out the concatenator: $sql = "SELECT * from contacts .$filter order by name"; SHOULD BE $sql = "SELECT * from… contacts $filter order by name"; Then... $table = ''; $select = mysqli_query($con, $sql… filter Programming Web Development by randhymuthola …sesadmin.php"; include_once "library/inc.library.php"; # Filter Terpilih $dataTahun = isset($_POST['cmbTahun']) ? $_POST['cmbTahun'] : …; bgcolor="#CCCCCC"><strong>FILTER DATA </strong></td> &…and the question is.... I try to make filter for Dokter, and when i choose the dokter … Re: Filter Programming Web Development by diafol "SELECT ... WHERE `name` LIKE 'B%'" So.. "SELECT ... WHERE `name` LIKE '$filter%'" Re: Filter Programming Web Development by diafol My bad, the line should be... if(ctype_alpha($input)) $filter = " WHERE `name` LIKE '$input%'";