<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The AI Sckool, Author at AI SCKOOL</title>
	<atom:link href="https://aisckool.com/author/calvin/feed/" rel="self" type="application/rss+xml" />
	<link>https://aisckool.com/author/calvin/</link>
	<description>All About Artificial Intelligence</description>
	<lastBuildDate>Sun, 07 Jun 2026 06:49:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://aisckool.com/wp-content/uploads/2024/05/cropped-8FDB48F0-2148-449F-B10B-86E84E56DAD5-removebg-preview-1-e1716890217940-32x32.png</url>
	<title>The AI Sckool, Author at AI SCKOOL</title>
	<link>https://aisckool.com/author/calvin/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to write to files in Python: a beginner&#8217;s guide</title>
		<link>https://aisckool.com/how-to-write-to-files-in-python-a-beginners-guide/</link>
					<comments>https://aisckool.com/how-to-write-to-files-in-python-a-beginners-guide/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 06:49:25 +0000</pubDate>
				<category><![CDATA[Data Science]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27385</guid>

					<description><![CDATA[<p># Entry Writing to files is an indispensable Python skill. It allows you to save data permanently instead of losing it when you stop the program. You can utilize file saving to store results, logs, reports, user input, settings, and structured data. In this guide, you&#8217;ll learn how to create text files, write multiple lines, [&#8230;]</p>
<p>The post <a href="https://aisckool.com/how-to-write-to-files-in-python-a-beginners-guide/">How to write to files in Python: a beginner&#8217;s guide</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="post-">
<p> </p>
<h2><span># </span>Entry</h2>
<p>Writing to files is an indispensable Python skill. It allows you to save data permanently instead of losing it when you stop the program. You can utilize file saving to store results, logs, reports, user input, settings, and structured data.</p>
<p>In this guide, you&#8217;ll learn how to create text files, write multiple lines, attach content, work with folders, and save data in CSV and JSON formats. You&#8217;ll also learn about the most popular file modes, including <code style="background: #F5F5F5;">w</code>, <code style="background: #F5F5F5;">a</code>, <code style="background: #F5F5F5;">x</code>AND <code style="background: #F5F5F5;">r</code>and when to utilize each one.</p>
<p>By the end, you will be able to write Python programs that write results, reports, logs, and structured data to files.</p>
</p>
<h2><span># </span>Saving the first text file</h2>
<p>The easiest way to write to a file is to utilize the built-in Python language <code style="background: #F5F5F5;">open()</code> function.</p>
<p>The <code style="background: #F5F5F5;">w</code> mode means recording mode. If the file does not exist, Python creates it. If the file already exists, Python replaces its existing contents.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>file = open("message.txt", "w")
file.write("Hello, this is my first file written with Python.")
file.close()</code></pre>
</div>
<p>When you run this code, Python creates a file called <code style="background: #F5F5F5;">message.txt</code> in the same folder where the notebook or script is located.</p>
<p>You can re-read the file to see what was written.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>file = open("message.txt", "r")
content = file.read()
file.close()

print(content)</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>Hello, this is my first file written with Python.</code></pre>
</div>
<h2><span># </span>Using <code>with open()</code>: A better way</h2>
<p>Although you can manually open and close files, the recommended approach is to utilize <code style="background: #F5F5F5;">with open()</code>.</p>
<p>This will automatically close the file when the code block ends. It is cleaner, safer, and widely used in real Python projects.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("message.txt", "w") as file:
    file.write("This file was written using with open().")

with open("message.txt", "r") as file:
    content = file.read()

print(content)</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>This file was written using with open().</code></pre>
</div>
<p>Using <code style="background: #F5F5F5;">with open()</code> this is best practice because you don&#8217;t have to remember to close the file manually.</p>
</p>
<h2><span># </span>Understanding file modes</h2>
<p>When you open a file, mode tells Python what you want to do with it.</p>
</p>
<table style="width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; color: #333;">
<thead>
<tr style="background-color: #ffd29a;">
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">Mode</th>
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">Meaning</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;"><code style="background: #F5F5F5;">w</code></td>
<td style="padding: 12px; border: 1px solid #ddd;">Save to file. Creates a recent file or replaces an existing file.</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;"><code style="background: #F5F5F5;">a</code></td>
<td style="padding: 12px; border: 1px solid #ddd;">Attach to file. Adds content at the end without removing existing content.</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;"><code style="background: #F5F5F5;">x</code></td>
<td style="padding: 12px; border: 1px solid #ddd;">Create a recent file. It will fail if the file already exists.</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;"><code style="background: #F5F5F5;">r</code></td>
<td style="padding: 12px; border: 1px solid #ddd;">Read the file. Failure if file does not exist.</td>
</tr>
</tbody>
</table>
<p>For saving files, the most common modes are <code style="background: #F5F5F5;">w</code> AND <code style="background: #F5F5F5;">a</code>. Employ <code style="background: #F5F5F5;">w</code> when you want to create a recent file or replace existing content. Employ <code style="background: #F5F5F5;">a</code> when you want to add recent content at the end of the file.</p>
</p>
<h2><span># </span>Writing multiple lines</h2>
<p>You can write multiple lines by adding a newline character <code style="background: #F5F5F5;">n</code>.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("notes.txt", "w") as file:
    file.write("Line 1: Learn Pythonn")
    file.write("Line 2: Practice file handlingn")
    file.write("Line 3: Build small projectsn")</code></pre>
</div>
<p>Read file:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("notes.txt", "r") as file:
    print(file.read())</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>Line 1: Learn Python
Line 2: Practice file handling
Line 3: Build compact projects</code></pre>
</div>
<p>You can also utilize <code style="background: #F5F5F5;">writelines()</code> save a list of strings to a file.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>tasks = [
    "Write Python coden",
    "Run the notebookn",
    "Check the output filen"
]

with open("tasks.txt", "w") as file:
    file.writelines(tasks)</code></pre>
</div>
<p>Read file:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("tasks.txt", "r") as file:
    print(file.read())</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>Write Python code
Run the notebook
Check the output file</code></pre>
</div>
<p>There is one essential thing to remember <code style="background: #F5F5F5;">writelines()</code> does not automatically add line breaks. You must include <code style="background: #F5F5F5;">n</code> myself.</p>
</p>
<h2><span># </span>Appending to a file</h2>
<p>Sometimes you don&#8217;t want to overwrite the existing content of a file. Instead, you can add recent content at the end.</p>
<p>To do this, utilize append mode: <code style="background: #F5F5F5;">a</code>.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("journal.txt", "w") as file:
    file.write("Day 1: I started learning Python file handling.n")

with open("journal.txt", "a") as file:
    file.write("Day 2: I learned how to append text to a file.n")</code></pre>
</div>
<p>Read file:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("journal.txt", "r") as file:
    print(file.read())</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>Day 1: I started learning Python file handling.
Day 2: I learned how to append text to a file.</code></pre>
</div>
<p>Append mode is useful when working with logs, logs, reports, or any file to which you want to add recent information.</p>
</p>
<h2><span># </span>Secure file creation</h2>
<p>If you want to create a recent file but avoid overwriting the existing one, utilize <code style="background: #F5F5F5;">x</code> mode.</p>
<p>This mode only creates a file if it does not already exist. If the file already exists, Python calls a <code style="background: #F5F5F5;">FileExistsError</code>.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>try:
    with open("new_file.txt", "x") as file:
        file.write("This file was created using x mode.")
    print("File created successfully.")
except FileExistsError:
    print("The file already exists, so Python did not overwrite it.")</code></pre>
</div>
<p>If the file does not exist, you may see:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>File created successfully.</code></pre>
</div>
<p>If the file already exists, you can see:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>The file already exists, so Python did not overwrite it.</code></pre>
</div>
<p>This is useful when you want to protect existing files from being accidentally overwritten.</p>
</p>
<h2><span># </span>Working with file paths</h2>
<p>By default, Python saves files to the same folder where your notebook or script runs.</p>
<p>If you want to save files to a specific folder, you can utilize <strong><a href="https://docs.python.org/3/library/pathlib.html" target="_blank" rel="noopener">library_path</a></strong>.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>from pathlib import Path

output_folder = Path("output")
output_folder.mkdir(exist_ok=True)

file_path = output_folder / "summary.txt"

with open(file_path, "w") as file:
    file.write("This file was saved inside the output folder.")

print(f"File saved to: {file_path}")</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>File saved to: output/summary.txt</code></pre>
</div>
<p>Now read the file:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("output/summary.txt", "r") as file:
    print(file.read())</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>This file was saved inside the output folder.</code></pre>
</div>
<p>The <code style="background: #F5F5F5;">mkdir(exist_ok=True)</code> call creates a folder if it doesn&#8217;t already exist. If the folder already exists, Python does not report an error.</p>
</p>
<h2><span># </span>Saving CSV files</h2>
<p>CSV files are useful for saving tabular data such as rows and columns. They are commonly opened in spreadsheet tools such as Excel or Google Sheets.</p>
<p>To write a CSV file in Python, utilize the method <strong><a href="https://docs.python.org/3/library/csv.html" target="_blank" rel="noopener">csv</a></strong>    module.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>import csv

students = [
    ["Name", "Score"],
    ["Ayesha", 92],
    ["Bilal", 85],
    ["Sara", 88]
]

with open("students.csv", "w", newline="") as file:
    writer = csv.writer(file)
    writer.writerows(students)</code></pre>
</div>
<p>Read the CSV file:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("students.csv", "r") as file:
    print(file.read())</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>Name,Score
Ayesha,92
Bilal,85
Sara,88</code></pre>
</div>
<p>The <code style="background: #F5F5F5;">newline=""</code> The argument helps avoid extra blank lines when saving CSV files, especially on Windows.</p>
</p>
<h2><span># </span>Saving JSON files</h2>
<p>JSON is another common format for storing structured data. It is often used for dictionaries, API responses, configuration files, and nested data.</p>
<p>To write JSON files in Python, utilize the <strong><a href="https://docs.python.org/3/library/json.html" target="_blank" rel="noopener">json</a></strong>    module.</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>import json

profile = {
    "name": "Ayesha",
    "role": "Data Analyst",
    "skills": ["Python", "SQL", "Excel"],
    "active": True
}

with open("profile.json", "w") as file:
    json.dump(profile, file, indent=4)</code></pre>
</div>
<p>Read the JSON file:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>with open("profile.json", "r") as file:
    print(file.read())</code></pre>
</div>
<p>Exit:</p>
<div style="width: 98%; overflow: auto; padding-left: 10px; padding-bottom: 10px; padding-top: 10px; background: #F5F5F5;">
<pre><code>{
    "name": "Ayesha",
    "role": "Data Analyst",
    "skills": [
        "Python",
        "SQL",
        "Excel"
    ],
    "active": true
}</code></pre>
</div>
<p>The <code style="background: #F5F5F5;">indent=4</code> argument makes the JSON file easier to read.</p>
</p>
<h2><span># </span>Common beginner mistakes</h2>
<p>Here are some common mistakes beginners make when writing files in Python.</p>
</p>
<table style="width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; color: #333;">
<thead>
<tr style="background-color: #ffd29a;">
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">Mistake</th>
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">What&#8217;s going on</th>
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">How to fix it</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Forgetting to close a file</td>
<td style="padding: 12px; border: 1px solid #ddd;">Changes may not be saved correctly</td>
<td style="padding: 12px; border: 1px solid #ddd;">Employ <code style="background: #F5F5F5;">with open()</code></td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Using <code style="background: #F5F5F5;">w</code> instead <code style="background: #F5F5F5;">a</code></td>
<td style="padding: 12px; border: 1px solid #ddd;">Existing content will be removed</td>
<td style="padding: 12px; border: 1px solid #ddd;">Employ <code style="background: #F5F5F5;">a</code> when joining</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Forgetfulness <code style="background: #F5F5F5;">n</code></td>
<td style="padding: 12px; border: 1px solid #ddd;">The text appears on one line</td>
<td style="padding: 12px; border: 1px solid #ddd;">Add newlines</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Writing to the missing folder</td>
<td style="padding: 12px; border: 1px solid #ddd;">Python reports an error</td>
<td style="padding: 12px; border: 1px solid #ddd;">First create a folder</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Directly writing non-string data</td>
<td style="padding: 12px; border: 1px solid #ddd;">Python can raise a <code style="background: #F5F5F5;">TypeError</code></td>
<td style="padding: 12px; border: 1px solid #ddd;">Convert values ​​to strings or utilize CSV/JSON</td>
</tr>
</tbody>
</table>
<h2><span># </span>Summary</h2>
<p>Writing to files is one of the most useful Python skills for beginners. I still remember entering a programming competition in my second semester of engineering and wasting almost an hour trying to figure out how to save the file. If I had known it was that plain, I could have won.</p>
<p>File saving helps you store logs, save program output, create reports, store user data, and even read and write plain databases using formats like JSON. The best part is that Python file handling is native, speedy, and works out of the box.</p>
<p>For most tasks, utilize <code style="background: #F5F5F5;">with open()</code> because it automatically closes the file. Employ <code style="background: #F5F5F5;">w</code> save or overwrite the file, <code style="background: #F5F5F5;">a</code> to add recent content and <code style="background: #F5F5F5;">x</code> to safely create a recent file without overwriting the existing one.</p>
<p><a href="https://abid.work" rel="noopener" target="_blank"><b><strong><a href="https://abid.work" target="_blank" rel="noopener noreferrer">Abid Ali Awan</a></strong></b></a>    (<a href="https://www.linkedin.com/in/1abidaliawan" rel="noopener" target="_blank">@1abidaliawan</a>) is a certified data science professional who loves building machine learning models. Currently, he focuses on creating content and writing technical blogs about machine learning and data science technologies. Abid holds a Master&#8217;s degree in Technology Management and a Bachelor&#8217;s degree in Telecommunications Engineering. His vision is to build an AI product using a graph neural network for students struggling with mental illness.</p>
</p></div>
<p>The post <a href="https://aisckool.com/how-to-write-to-files-in-python-a-beginners-guide/">How to write to files in Python: a beginner&#8217;s guide</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/how-to-write-to-files-in-python-a-beginners-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i0.wp.com/www.kdnuggets.com/wp-content/uploads/kdn_awan_write_files_python_beginners_guide_feature.png?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>Uranus&#8217;s moons may be the key to finding lost planets</title>
		<link>https://aisckool.com/uranuss-moons-may-be-the-key-to-finding-lost-planets/</link>
					<comments>https://aisckool.com/uranuss-moons-may-be-the-key-to-finding-lost-planets/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Sat, 06 Jun 2026 21:48:40 +0000</pubDate>
				<category><![CDATA[Data Science]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27381</guid>

					<description><![CDATA[<p>We have idea of ​​the solar system&#8217;s past: it was full of violence and chaos. However, we are still investigating how brutal this event was. Current models suggest that at some point after the formation of the giant planets, they underwent a phase of such extreme instability that one or even two bodies the size [&#8230;]</p>
<p>The post <a href="https://aisckool.com/uranuss-moons-may-be-the-key-to-finding-lost-planets/">Uranus&#8217;s moons may be the key to finding lost planets</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><span class="lead-in-text-callout">We have</span> idea of ​​the solar system&#8217;s past: it was full of violence and chaos. However, we are still investigating how brutal this event was. Current models suggest that at some point after the formation of the giant planets, they underwent a phase of such extreme instability that one or even two bodies the size of Uranus or Neptune were ejected into interstellar space. If such a scenario comes true, we could find clues in the most unexpected places in the solar system, such as the moons of Jupiter and especially Uranus.</p>
<p class="paywall">A recent article published in <a href="https://www.sciencedirect.com/science/article/abs/pii/S0019103526001223?via%3Dihub" class="text link" target="_blank" rel="noopener"><em>Icarus</em></a>    analyzed 122 possible scenarios for such instability to assess how the satellite systems of &#8220;left behind&#8221; planets would respond. The scientists concluded that it would be extremely arduous to explain the current characteristics of Uranus&#8217;s moons without some episode of violent instability. This type of instability only appears in models where there were more giant planets than we see today.</p>
<p class="paywall">The authors indicate that Uranus&#8217;s moons were most likely destabilized at least twice in the past: first by an impact that tilted the planet, and then by a close encounter between the giant planets during a time of instability. This chaos, fueled by the presence of one or more planets that were later ejected, would destroy and rebuild the moon system to the state we see today.</p>
<figure class="AssetEmbedWrapper-iJvQnD cOWUYC asset-embed">
<div class="AssetEmbedAssetContainer-fnduJP iaVSwI asset-embed__asset-container"><span class="SpanWrapper-kFnjvc eKnjjD responsive-asset AssetEmbedResponsiveAsset-gaAbQ hXaxHA asset-embed__responsive-asset"><picture class="ResponsiveImagePicture-jKunQM gjCCFj AssetEmbedResponsiveAsset-gaAbQ hXaxHA asset-embed__responsive-asset responsive-image"></picture></span></div>
<div class="CaptionWrapper-bpPcvW iDPSlt caption AssetEmbedCaption-eZIMNW gMgneI asset-embed__caption" data-testid="caption-wrapper"><span class="BaseText-fEwdHD CaptionText-cQpRdU kRTNAB hbiMYj caption__text"></p>
<p>Miranda, a moon of Uranus considered the most unusual in the solar system.</p>
<p></span><span class="BaseText-fEwdHD CaptionCredit-cUgOGk iQbGEh hRFzlA caption__credit">NASA</span></div>
</figure>
<h2 class="paywall">The solar system and chaos</h2>
<p class="paywall">Jupiter, Saturn, Uranus and Neptune have not always had their current positions in the solar system. According to the planetary instability model, they were born slightly closer to the Sun and closer to each other. After millions of years, they migrated towards their current orbits.</p>
<p class="paywall">However, there are details of this model that do not agree with observations. First, the current orbits of Jupiter and Saturn are eccentric, while there are specific structures, such as the Kuiper Belt, that apparently should have prevented Neptune from moving to its current position. In the simulations, the planets did not get to where they are today.</p>
<p class="paywall">It is therefore possible that the Solar System at one point had more planets and they &#8220;pushed out the others.&#8221; According to this hypothesis, the puzzle of the solar system fits better. The problem is that these bodies, if they existed, are gone &#8211; they were thrown away and left no physical traces or fragments. This leaves the concept of lost planets as a hypothesis awaiting sufficient evidence to be confirmed.</p>
<h2 class="paywall">Extraordinary Moon</h2>
<p class="paywall">Modern <em>Icarus</em> the study tested the missing planets hypothesis using Uranus&#8217;s moons as direct evidence. A total of 122 simulations of the evolution of the Solar System were used. In 85 percent of scenarios, the Uranus lunar system collapses. In only a few scenarios did its moons survive, and in all of them the lost and ejected planets hypothesis fit very well.</p>
<p class="paywall">The report points to Miranda, the smallest moon in the main Uranus system. Astronomers believe it is the most unusual object in the solar system. It&#8217;s patchy, as if sewn together from scraps, too icy for its size, and quite miniature compared to Uranus&#8217; other moons. It is also geologically vigorous.</p>
<p class="paywall">Astronomers believe Miranda is the remnant of a larger body. The study confirms this thesis and suggests that this is the clearest example of traces of planetary instability.</p>
</div>
<p>The post <a href="https://aisckool.com/uranuss-moons-may-be-the-key-to-finding-lost-planets/">Uranus&#8217;s moons may be the key to finding lost planets</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/uranuss-moons-may-be-the-key-to-finding-lost-planets/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i0.wp.com/media.wired.com/photos/6a1f57f22dd56ccdeabd077c/191:100/w_1280,c_limit/GettyImages-1088373686.jpg?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>Deep dive into language model calibration: Platt scaling, isotonic regression, temperature scaling</title>
		<link>https://aisckool.com/deep-dive-into-language-model-calibration-platt-scaling-isotonic-regression-temperature-scaling/</link>
					<comments>https://aisckool.com/deep-dive-into-language-model-calibration-platt-scaling-isotonic-regression-temperature-scaling/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Sat, 06 Jun 2026 12:42:24 +0000</pubDate>
				<category><![CDATA[Data Science]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27377</guid>

					<description><![CDATA[<p># Entry A model that claims to be 90% confident should be right 90% of the time. When this relationship falls apart, you will receive incorrect calibration problem. The model results no longer say anything useful about reliability. For enormous language models (LLM) miscalibration is common. AND NAACL 2024 Study found that confidence scores deviated [&#8230;]</p>
<p>The post <a href="https://aisckool.com/deep-dive-into-language-model-calibration-platt-scaling-isotonic-regression-temperature-scaling/">Deep dive into language model calibration: Platt scaling, isotonic regression, temperature scaling</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="post-">
<p> </p>
<h2><span># </span>Entry</h2>
<p>A model that claims to be 90% confident should be right 90% of the time. When this relationship falls apart, you will receive <strong>incorrect calibration</strong> problem. The model results no longer say anything useful about reliability.</p>
<p>For <strong>enormous language models</strong> (LLM) miscalibration is common. AND <a href="https://aclanthology.org/2024.naacl-long.366/" target="_blank" rel="noopener">NAACL 2024 Study</a> found that confidence scores deviated from actual correctness rates in QA, code generation, and inference tasks.</p>
<p>Other <a href="https://www.biorxiv.org/content/10.1101/2025.02.11.637373v1.full" target="_blank" rel="noopener">test</a> biomedical models found average calibration scores ranging from just 23.9% to 46.6% across all models tested. The difference is constant.</p>
<p>Standard solution in <strong>classic machine learning</strong> is post-hoc recalibration: fit a uncomplicated function to the set aside validation set to map the raw confidence scores to better calibrated probabilities.</p>
<p><strong>Three</strong> dominant methods: <a href="https://github.com/gpleiss/temperature_scaling" target="_blank" rel="noopener"><strong>temperature scaling</strong></a>, <a href="https://www.blog.trainindata.com/complete-guide-to-platt-scaling/" target="_blank" rel="noopener"><strong>Platt scaling</strong></a>AND <a href="https://en.wikipedia.org/wiki/Isotonic_regression#:~:text=Isotonic%20regression%20is%20used%20iteratively,of%20supervised%20machine%20learning%20models." target="_blank" rel="noopener"><strong>isotonic regression</strong></a>. All three were designed for <a href="https://medium.com/@akankshamalhotra24/generative-classifiers-v-s-discriminative-classifiers-1045f499d8cc" target="_blank" rel="noopener">discriminative classifiers</a>and applying them to LLM requires caution.</p>
<p><img decoding="async" alt="LLM calibration" width="100%" class="perfmatters-lazy" src="https://www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-3.png"></p>
</p>
<h2><span># </span>Measurement calibration</h2>
<p>The dominant metric is <a href="https://towardsdatascience.com/expected-calibration-error-ece-a-step-by-step-visual-explanation-with-python-code-c3e9aa12937d/" target="_blank" rel="noopener"><strong>Expected calibration error</strong></a>    (ECG). Groups predictions into confidence intervals, calculates the difference between mean confidence and observed accuracy within each interval, and averages across intervals weighted by size. ECE = 0 is the perfect calibration.</p>
<p>A reliability diagram shows the relationship between confidence and accuracy. A perfectly calibrated model sits on a diagonal. Below is the overconfidence model: The curve shows high confidence, but accuracy cannot keep up.</p>
<p><img decoding="async" alt="LLM calibration" width="100%" class="perfmatters-lazy" src="https://www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-4.png"> </p>
<p>AND <a href="https://aejaspan.github.io/posts/2025-09-01-LLM-Clasifier-Confidence-Scores" target="_blank" rel="noopener">Rating 2025</a> GPT-4o-mini as a text classifier found that 66.7% of errors occurred at confidence levels above 80% &#8211; the canonical pattern of overconfidence.</p>
<p>ECE alone is increasingly seen as insufficient. AND <a href="https://arxiv.org/html/2512.16030" target="_blank" rel="noopener">research article</a> recommends pairing ECE with <a href="https://en.wikipedia.org/wiki/Brier_score" target="_blank" rel="noopener">Brier score</a>overconfidence factors and reliability diagrams combined. A single number obscures significant differences in where and how the model behaves incorrectly.</p>
</p>
<h2><span># </span>Why LLMs complicate the standard setup</h2>
<p>The three methods we discuss assume a constant output space. The classifier generates one <strong>probability</strong> per class, and calibration maps them to better estimates.</p>
<p><strong>LLM</strong> don&#8217;t act this way.</p>
<p>There are four complications that matter here.</p>
<p><img decoding="async" alt="LLM calibration" width="100%" class="perfmatters-lazy" src="https://www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-5.png"> </p>
<p>The output space is exponentially enormous: confidence cannot be computed at the sequence level. Semantically equivalent outcomes may have very different token-level probabilities. The trust disagrees with the details; AND <a href="https://aclanthology.org/2024.naacl-long.366/" target="_blank" rel="noopener">research article</a> atomic calibration showed that generative models show the lowest average confidence in the middle of the generation, rather than at the beginning or end.</p>
<p>Many LLMs only reveal the probabilities of the highest-k tokens through their <strong>API</strong>therefore, classic calibration approaches that rely on full logit access require modification.</p>
<p><img decoding="async" alt="LLM calibration" width="100%" class="perfmatters-lazy" src="https://www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-6.png"> </p>
<h2><span># </span>Applying temperature scaling</h2>
<p>Temperature scaling divides the logit vector by the T scalar before applying softmax. When T > 1, the distribution flattens and confidence decreases. When T  </p>
<p>T fits the validation set held out by minimizing the negative log-likelihood. The method adds one parameter, preserves prediction rankings, and is economical to compute.</p>
<p>The <a href="https://github.com/gpleiss/temperature_scaling" target="_blank" rel="noopener">original formula</a> targeted DenseNet image classifiers. In the case of LLM, temperature controls the probability distribution of the vocabulary at each decoding stage, so the same logic applies.</p>
<p>The problem is this <a href="https://huggingface.co/blog/rlhf" target="_blank" rel="noopener"><strong>Reinforcement learning from human feedback</strong></a>    (RLHF). Post-RLHF models develop input-dependent overconfidence: the degree of miscalibration varies with input, and a single T cannot explain this variation.</p>
<p>Average ECE scores above 0.377 have been documented for models such as GPT-3 on verbalized self-confidence tasks and <a href="https://arxiv.org/html/2505.18658v2" target="_blank" rel="noopener">2025 study</a> confirms that RLHF-tuned models consistently overestimate confidence in all cases.</p>
<p><a href="https://arxiv.org/abs/2409.19817" target="_blank" rel="noopener"><strong>Adaptive temperature scaling</strong></a>    (ATS) deals with this directly. ATS predicts the temperature for each token based on hidden features at the token level, adapting to a supervised tuning dataset rather than using a single fixed T. Researchers confirmed that ATS improved calibration by 10-50% without compromising task performance. For any RLHF-tuned model, ATS provides a stronger baseline than standard temperature scaling.</p>
<p>Standard temperature scaling still works well for pre-RLHF base models. When miscalibration is approximately uniform across all inputs, a single T is often sufficient to correct for systematic over- or under-confidence.</p>
<p>The problem is specific to post-RLHF models, where input-dependent overconfidence means that a single T cannot correct for all inputs.</p>
</p>
<h2><span># </span>Application of Platt scaling</h2>
<p>Platt scaling fits a logistic function based on uncalibrated results: p = σ(A·s + B), where A and B learn from the issued validation set with binary correctness labels.</p>
<p>The sigmoid shape provides a parametric mapping with two free parameters.</p>
<p>Platt scaling was originally developed for SVMs, but can be generalized to any system that produces a scalar confidence score.</p>
<p><img decoding="async" alt="LLM calibration" width="100%" class="perfmatters-lazy" src="https://www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-8.png"> </p>
<p>Two-parameter fitting also allows for productive operate of data compared to isotonic regression: it can generate useful estimates from a smaller calibration set, which is crucial in implementation contexts where labeled validity data is circumscribed.</p>
<p>In the context of LLM, Platt scaling works on sequence-level or token-level confidence scores.</p>
<p>AND <a href="https://www.software-lab.org/publications/icse2025_calibration.pdf" target="_blank" rel="noopener">paper</a> based on the code confidence generated by LLM, it was found that Platt scaling produced better calibrated results than uncalibrated results. Another study on LLM for Text to SQL Conversion has been introduced <a href="https://arxiv.org/html/2409.10855v1" target="_blank" rel="noopener"><strong>Platt&#8217;s multidimensional scaling</strong></a>    (MPS), extending single-variable Platt scaling to combine sub-score frequency scores across multiple generated samples – consistently outperforming single-score baselines.</p>
<p>Two <strong>limitations</strong> are documented. First, global Platt scaling at the sequence level is too abrasive for tasks where correctness depends on local editing decisions: a single sigmoid mapping is unable to capture sample-dependent miscalibration patterns.</p>
<p>Additionally, Platt scaling may degrade correct scoring performance for robust models.</p>
</p>
<h2><span># </span>Using isotonic regression</h2>
<p>Isotonic regression is performed using a non-parametric method.</p>
<p>It learns a piecewise constant, monotone, non-decreasing mapping from uncalibrated outcomes to calibrated probabilities using <a href="https://medium.com/@jhimli.c1/unveiling-the-magic-of-pava-a-simple-path-to-monotonic-regression-37f19ffa60df" target="_blank" rel="noopener"><strong>Neighboring pool violators algorithm</strong></a>    (PAWA). There is no assumed shape for the calibration function, which makes it more malleable than Platt scaling when the confidence-accuracy relationship is not sigmoidal.</p>
<p>The piecewise constant output adapts to any monotonous shape: linear, stepped or concave. This adaptability is the main reason why isotonic regression tends to outperform Platt scaling in empirical comparisons.</p>
<p>The cost is the risk of overfitting for miniature calibration sets. Mapping generalizes well only when there is enough data to constrain it.</p>
<p>Empirically, isotonic regression outperforms Platt scaling.</p>
<p>Exacting <a href="https://arxiv.org/html/2509.23665v1" target="_blank" rel="noopener">comparison</a> across multiple datasets and architectures showed that isotonic regression outperforms Platt scaling on ECE and Brier scores with statistical significance, using paired tests with a Bonferroni correction at α = 0.003.</p>
<p><img decoding="async" alt="LLM calibration" width="100%" class="perfmatters-lazy" src="https://www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-9.png"> </p>
<p>In this study, the Random Forest baseline improved from a reliability score of 0.8268 in the uncalibrated condition, to 0.9551 in the Platt scale, and to 0.9660 in the isotonic regression condition. Both methods can degrade actual scoring performance for robust models, but the isotonic advantage persists consistently.</p>
<p>For multiclass LLM settings, it has been shown that standard isotonic regression can be further improved with extensions supporting normalization, consistently outperforming both OvR isotonic regression and standard parametric methods on NLL and ECE.</p>
<p>The data requirement is a binding restriction. The advantage of isotonic regression is real, but it does not translate to low-data deployment scenarios.</p>
</p>
<h2><span># </span>What literature leaves open</h2>
<p>Three <strong>gaps</strong> it is worth marking them before implementing any of these methods.</p>
<p>The <strong>RLHF</strong> the interaction was only examined in terms of temperature scaling. How <strong>Platt scaling</strong> and isotonic regression in post-RLHF models has not been systematically tested. <strong>ATS</strong> exists because standard temperature scaling required an explicit solution in this case. It is an open question whether the other two methods require similar extensions.</p>
<p><img decoding="async" alt="LLM Calibration" width="100%" class="perfmatters-lazy" src="https://www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-10.png"> </p>
<p>The most direct <strong>comparisons</strong> all three methods are taken from the general machine learning calibration literature. LLM-specific benchmarks that test all three directly are uncommon. ICSE Code Calibration 2025 <a href="https://www.software-lab.org/publications/icse2025_calibration.pdf" target="_blank" rel="noopener">paper</a> is one of the few and its scope is circumscribed to code generation.</p>
<p>The size of the calibration set is a real implementation limitation. The isotonic regression results from the articles assume that the datasets are enormous enough to limit mapping. In production with a circumscribed number of labeled examples, the gap between isotonic regression and Platt&#8217;s scale may close or reverse.</p>
</p>
<h2><span># </span>Application</h2>
<p><strong>Temperature scaling</strong> is the right starting point for most teams. For entry-level models without RLHF, a single T is often sufficient.</p>
<p>For <strong>RLHF</strong>-tuned models, switch to ATS: per-token temperature supports input-dependent overconfidence that the global scalar lacks.</p>
<p><strong>Platt scaling</strong> is a practical choice when the calibration set is miniature or when calibration requires inclusion in a larger pipeline. It is productive in data processing and uncomplicated to implement. The limitation is scope: it cannot capture miscalibration, which varies from sample to sample and tends to degrade performance for robust models.</p>
<p><strong>Isotonic regression</strong> has the strongest empirical track record of the three. Utilize it when the calibration set is enormous enough to constrain the mapping without overfitting, and combine it with extensions that support normalization in multiclass settings.</p>
<p>The decision that comes before all this is what &#8220;<strong>trust</strong>&#8221; means for the task. Symbolic probability, sequence probability, verbalized confidence, and consistency across samples can all produce different values ​​for the same result. A calibration method applied to the wrong signal does not improve reliability. The correct definition is a prerequisite for any of the above methods to work.</p>
<p><a href="https://twitter.com/StrataScratch" rel="noopener" target="_blank"><b><strong><a href="https://twitter.com/StrataScratch" target="_blank" rel="noopener noreferrer">Nate Rosidi</a></strong></b></a>    is a data scientist and product strategist. He is also an adjunct professor of analytics and the founder of StrataScratch, a platform that helps data scientists prepare for job interviews using real interview questions from top companies. Nate writes about the latest career trends, gives interview advice, shares data science projects, and discusses all things SQL.</p>
</p></div>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p>The post <a href="https://aisckool.com/deep-dive-into-language-model-calibration-platt-scaling-isotonic-regression-temperature-scaling/">Deep dive into language model calibration: Platt scaling, isotonic regression, temperature scaling</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/deep-dive-into-language-model-calibration-platt-scaling-isotonic-regression-temperature-scaling/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i1.wp.com/www.kdnuggets.com/wp-content/uploads/Rosidi_LLM-Calibration-1.png?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>The US has a plan to combat snails. It covers many more flies</title>
		<link>https://aisckool.com/the-us-has-a-plan-to-combat-snails-it-covers-many-more-flies/</link>
					<comments>https://aisckool.com/the-us-has-a-plan-to-combat-snails-it-covers-many-more-flies/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Sat, 06 Jun 2026 03:40:48 +0000</pubDate>
				<category><![CDATA[Data Science]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27373</guid>

					<description><![CDATA[<p>Carnivorous parasite A fly that poses a solemn threat to livestock has returned to the United States after 60 years. This week, the US Department of Agriculture confirmed presence of the Fresh World snail in a calf in south Texas. Eliminated in the US in 1966 and as far south as possible Panama by 2006, [&#8230;]</p>
<p>The post <a href="https://aisckool.com/the-us-has-a-plan-to-combat-snails-it-covers-many-more-flies/">The US has a plan to combat snails. It covers many more flies</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><span class="lead-in-text-callout">Carnivorous parasite</span> A fly that poses a solemn threat to livestock has returned to the United States after 60 years. This week, the US Department of Agriculture <a href="https://www.aphis.usda.gov/news/agency-announcements/usda-confirms-presence-new-world-screwworm-united-states" class="text link" target="_blank" rel="noopener">confirmed</a> presence of the Fresh World snail in a calf in south Texas.</p>
<p class="paywall">Eliminated in the US in 1966 and as far south as possible <a data-offer-url="https://asm.org/articles/2025/september/new-word-screwworm-rise-fall-resurgence" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://asm.org/articles/2025/september/new-word-screwworm-rise-fall-resurgence&quot;}" href="https://asm.org/articles/2025/september/new-word-screwworm-rise-fall-resurgence" rel="nofollow noopener" target="_blank">Panama</a> by 2006, its recent re-emergence in Mexico increased the likelihood that the snail would eventually re-enter the country, and modeling showed it could arrive as early as summer 2025. It took a little longer, but the snail arrived. To prevent an outbreak, officials are using a proven technique: releasing masses of adult snail flies.</p>
<p class="paywall">A worm infection occurs when a female fly lays eggs in open wounds or other body parts of warm-blooded animals. Once the eggs hatch, worms emerge and feed on living tissue before turning into flies. As adults, snail flies do not bite or feed on flesh. Scientists in the 1930s and 1940s thought that if they could prevent female flies from breeding, they could break the cycle. At the time, Fresh World snails were killing hundreds of thousands of cattle each year, mostly in the American South and Southwest.</p>
<p class="paywall">In the 1950s, USDA researchers made a breakthrough by administering radiation to male snails and rendering them sterile. Once released into an infected area, sterile males mate with wild female insects and lay nonviable eggs. No offspring are born and the population collapses. Known as the sterile insect technique, it was first successfully used on the island of Curaçao off the coast of Venezuela. It took just seven weeks to eradicate the pest, and the effort saved the island&#8217;s goat herds, which were a vital food source.</p>
<p class="paywall">This technique takes advantage of the fact that female Fresh World snails mate only once in their lives. “The sterile insect technique is perhaps the most telling example of a completely effective biological control mechanism,” says Sally DeNotta, associate professor of veterinary medicine at the University of Florida. &#8220;The life cycle stops. No offspring are produced. It was very successful.&#8221;</p>
<p class="paywall">For years, a dense stretch of rainforest between Panama and Colombia known as the Darién Pass served as a biological barrier through which sterile flies were released to prevent the snails from spreading north. However, insects began to break through this barrier in 2022.</p>
<p class="paywall">To prevent an outbreak in south Texas, the USDA has sealed off an approximately 12-mile area around the infected calf and is conducting targeted releases of sterile snail flies from trucks. This is in addition to the 4 million sterile flies a week already dropped in the area. The agency predicts the snail will move north in February <a href="https://www.aphis.usda.gov/news/agency-announcements/usda-shifts-sterile-fly-dispersal-efforts-defend-us-border" class="text link" target="_blank" rel="noopener">moved</a> its efforts to disperse 100 million sterile flies per week to focus on an area along the U.S.-Mexico border.</p>
<p class="paywall">“While this development poses a serious threat to our livestock and wildlife, it does not surprise us,” USDA Secretary Brooke Rollins said during a hearing of the House Agriculture Committee <a href="https://www.c-span.org/program/house-committee/agriculture-secretary-brooke-rollins-testifies-on-usda-policy/680468" class="text link" target="_blank" rel="noopener">meeting</a> on Thursday.</p>
<p class="paywall">She said it takes about 400 million flies a week to repel the bugs. Currently, only about 100 million flies can be produced per week in the United States <a href="https://www.aphis.usda.gov/livestock-poultry-disease/stop-screwworm/sterile-fly-production-dispersal-facilities" class="text link" target="_blank" rel="noopener">facility located in Panama</a>.</p>
<p class="paywall">A sterile insect facility in Mexico closed in 2012, but the USDA did <a href="https://www.aphis.usda.gov/livestock-poultry-disease/stop-screwworm/sterile-fly-production-dispersal-facilities" class="text link" target="_blank" rel="noopener">investing $21 million</a> Assisting in the renovation and conversion of an existing fruit fly facility in Metapa, Mexico to produce an additional 60-100 million sterile flies per week. According to the USDA, the facility is expected to be operational this summer.</p>
</div>
<p>The post <a href="https://aisckool.com/the-us-has-a-plan-to-combat-snails-it-covers-many-more-flies/">The US has a plan to combat snails. It covers many more flies</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/the-us-has-a-plan-to-combat-snails-it-covers-many-more-flies/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i1.wp.com/media.wired.com/photos/6a230980315a6d7e7d3fe38d/191:100/w_1280,c_limit/How-US-Plans-to-Stop-Screwworm-Outbreak-Science-2195014611.jpg?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>Has Microsoft Lost Its Mojo (Again)?</title>
		<link>https://aisckool.com/has-microsoft-lost-its-mojo-again/</link>
					<comments>https://aisckool.com/has-microsoft-lost-its-mojo-again/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 19:05:32 +0000</pubDate>
				<category><![CDATA[AI in Business]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27369</guid>

					<description><![CDATA[<p>Last November, you and everyone else fell down the coding agent rabbit hole? It was an intense time for nerds. During this vacation, I spent a lot of time talking to programming agents. And since then it has been an absolute rocket ship. Claude Code seems to have gotten the thunder there, defeating Codex and, [&#8230;]</p>
<p>The post <a href="https://aisckool.com/has-microsoft-lost-its-mojo-again/">Has Microsoft Lost Its Mojo (Again)?</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p class="paywall"><strong>Last November, you and everyone else fell down the coding agent rabbit hole?</strong></p>
<p class="paywall">It was an intense time for nerds. During this vacation, I spent a lot of time talking to programming agents. And since then it has been an absolute rocket ship.</p>
<p class="paywall"><strong>Claude Code seems to have gotten the thunder there, defeating Codex and, frankly, the co-pilot. A few years ago, Microsoft&#8217;s Copilot coding tool seemed to be leading the pack. Now it&#8217;s Claude Code.</strong></p>
<p class="paywall">I would respectfully disagree. Coding models are part of it, but Microsoft is a great place for developers. Windows is an open platform on open hardware that people can build anything on.</p>
<p class="paywall"><strong>Microsoft wants Scout to be adopted by production workers and even consumers. AI agents make mistakes and hallucinate. How many mistakes will people tolerate?</strong></p>
<p class="paywall">That&#8217;s a good question. I don&#8217;t know. Trust, but verify. Give him a compact task and then try it out and see if it works. And then: &#8220;Oh, he didn&#8217;t do anything wrong. I&#8217;ll give him read-only access to something.&#8221; For example, when I tell someone that I gave OpenClaw access to my blood sugar levels because I have type 1 diabetes, the knee-jerk reaction is, &#8220;How dare you share your health data with an agent?&#8221; Receiving vigorous blood sugar notifications is very useful for me. I don&#8217;t think this is controversial.</p>
<p class="paywall"><strong>I understand that, but many people are skeptical or hostile towards artificial intelligence these days.</strong></p>
<p class="paywall">When a recent tool is introduced to the market, whether it&#8217;s a chainsaw, a power tool, or an internal combustion engine, chaos ensues as people wonder how to make the tool good for people. Personally, I am not a supporter of artificial intelligence because I vote with my feet. I don&#8217;t employ AI image generation or AI video generation because I don&#8217;t believe in such things. I employ artificial intelligence to code and I enjoy it.</p>
<p class="paywall"><strong>Yes, developers absolutely love agents, but there is resistance outside of this community. Microsoft noticed this after the impoverished performance of its AI productivity tools. Do you foresee similar difficulties with agent-based AI?</strong></p>
<p class="paywall">Either they like it or they don&#8217;t. I remember when the Walkman came out and people said, &#8220;No one will wear these things on their heads. These headphones look ridiculous.&#8221; Now we all walk around with these white Q-tips hanging from our ears.</p>
<p class="paywall"><strong>Don&#8217;t you feel like Microsoft is playing catch-up?</strong></p>
<p class="paywall">I would respectfully step back and point out that everyone is in catch-up mode because you&#8217;re pulling forward and then going back and forth. It&#8217;s a war of thumbs. I remind people that the term &#8220;Copilot&#8221; was something Microsoft did first and became a term similar to Kleenex.</p>
<p class="paywall"><strong>Do you think this year&#8217;s developer conference has put Microsoft back in the race?</strong></p>
<p class="paywall">Several Mac users hung out with me behind the scenes and watched <a data-offer-url="https://www.microsoft.com/en-us/surface/devices/surface-laptop-ultra" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.microsoft.com/en-us/surface/devices/surface-laptop-ultra&quot;}" href="https://www.microsoft.com/en-us/surface/devices/surface-laptop-ultra" rel="nofollow noopener" target="_blank">Surface Ultra laptop</a> announced. They saw all the recent developer tools, looked at us reluctantly, and said, &#8220;Hell, you&#8217;re making me buy a Surface, aren&#8217;t you?&#8221;</p>
<p class="paywall"><strong>Fort Mason&#8217;s garbage cans are now full of MacBook Airs?</strong></p>
<p class="paywall">This would be an amazing result, although I would not like to produce more ecological waste.</p>
<hr class="paywall">
<p class="paywall"><em>This is the release</em> <em><strong>Steven Levy</strong></em> <em><strong>Backchannel newsletter</strong>. Read previous newsletters</em> <em><strong>Here.</strong></em></p>
</div>
<p>The post <a href="https://aisckool.com/has-microsoft-lost-its-mojo-again/">Has Microsoft Lost Its Mojo (Again)?</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/has-microsoft-lost-its-mojo-again/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i1.wp.com/media.wired.com/photos/6a21bf0470a986f0e78c96a3/191:100/w_1280,c_limit/Backchannel-Q-A-Scott-Hanselma-Business-681613422.jpg?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>7 steps to master time series analysis in Python</title>
		<link>https://aisckool.com/7-steps-to-master-time-series-analysis-in-python/</link>
					<comments>https://aisckool.com/7-steps-to-master-time-series-analysis-in-python/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 18:39:38 +0000</pubDate>
				<category><![CDATA[Data Science]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27365</guid>

					<description><![CDATA[<p># Entry # Step 1: Understand what makes time series data special The three most critical structural properties are summarized below: Property What does it mean Why it matters Time dependency The observations are not independent; what happened yesterday has relevance to today Standard machine learning problems assume independence of rows, so a naive application [&#8230;]</p>
<p>The post <a href="https://aisckool.com/7-steps-to-master-time-series-analysis-in-python/">7 steps to master time series analysis in Python</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="post-">
<p> </p>
<h2><span># </span>Entry</h2>
</p>
<h2><span># </span>Step 1: Understand what makes time series data special</h2>
<p>The three most critical structural properties are summarized below:</p>
</p>
<table style="width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; color: #333;">
<thead>
<tr style="background-color: #ffd29a;">
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">Property</th>
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">What does it mean</th>
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">Why it matters</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Time dependency</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>The observations are not independent; what happened yesterday has relevance to today
</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Standard machine learning problems assume independence of rows, so a naive application produces misleading results
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Stationary</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Statistical properties remain constant over time
</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Most classical models require stationarity; most real world series lack this and require differentiation or transformation
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Seasonality and trend</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Regularly repeating patterns or <strong>seasonality</strong> combined with long distance directional traffic or <strong>tendency</strong>
</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Separating them from the irregular remainder is often a major analytical challenge
</td>
</tr>
</tbody>
</table>
</p>
<h2><span># </span>Step 2: Master time series data structures in Python</h2>
<p>The distinction between <strong><a href="https://pandas.pydata.org/docs/user_guide/timeseries.html#dateoffset-objects" target="_blank" rel="noopener">DatetimeIndex and PeriodIndex</a></strong>    is more critical than it initially seems.</p>
<ul>
<li><code>DatetimeIndex</code>    represents specific moments in time.
</li>
<li><code>PeriodIndex</code>    represents time intervals.
</li>
</ul>
<p>Knowing when to employ each of them, how to convert between them, and how to parse, cut, and resample time-indexed data can save you a lot of trouble later, as most modeling libraries have their own specific format requirements.</p>
<p>Resampling and aggregation are where many analysts make mute, significant errors. Downsampling from minute to hourly data requires selecting the correct aggregation function, and incorrectly specifying it disrupts the analysis. Practicing resampling with multiple aggregation strategies on the same dataset until the logic becomes intuitive is time well spent.</p>
<p><strong><a href="https://pandas.pydata.org/docs/user_guide/window.html" target="_blank" rel="noopener">Roll-up and roll-out windows</a></strong>    — <code>.rolling()</code> AND <code>.expanding()</code> — are pandas primitives for latency features and cumulative statistics. Manually building moving averages, standard deviations, and lag offsets before relying on library abstractions is critical: understanding what these operations do at the index level prevents a whole class of subtle data leak errors that are extremely challenging to diagnose after the fact.</p>
<p><strong>Rescue</strong>: Work through <strong><a href="https://pandas.pydata.org/docs/user_guide/timeseries.html" target="_blank" rel="noopener">pandas Guide to time series and date functionality</a></strong>    with the actual data set before continuing.</p>
</p>
<h2><span># </span>Step 3: Learning how to pristine and prepare time series data</h2>
<ul>
<li>Global statistical thresholds may ignore anomalies in non-stationary series.
</li>
<li>Rolling Z-scores and IQR boundaries in sliding windows support detect anomalous values ​​in their local neighborhood.
</li>
<li>For multi-dimensional sensor data <strong><a href="https://scikit-learn.org/stable/modules/outlier_detection.html#isolation-forest" target="_blank" rel="noopener">Insulating forest</a></strong>    detects anomalies that may not appear in individual channels but appear in connected functions.
</li>
</ul>
<p><strong>Rescue</strong>: : <strong><a href="https://www.sktime.net/en/stable/api_reference/transformations.html" target="_blank" rel="noopener">sktime transformation documentation</a></strong>    covers the most common preprocessing transformations with helpful examples.</p>
</p>
<h2><span># </span>Step 4: Developing intuition through exploratory analysis</h2>
<ul>
<li>Is the trend linear or non-linear?
</li>
<li>Is the seasonal amplitude stable or does it change over time?
</li>
<li>Is the residue approximately white noise, or does it contain structure that the decomposition missed?
</li>
</ul>
<p>Another critical diagnostic is autocorrelation analysis. Autocorrelation function (ACF) and partial autocorrelation function (PACF) plots are imperative tools for understanding time relationships:</p>
<ul>
<li>A slowly decaying ACF signals non-stationarity.
</li>
<li>Significant spikes in hourly data with a 24-hour delay signal daily seasonality.
</li>
<li>PACF cutoff values ​​suggest an autoregressive (AR) order.
</li>
</ul>
<p>Fluent reading of these charts is imperative in any classic modeling work.</p>
<p>Stationarity testing complements the exploratory workflow. The <strong><a href="https://www.statsmodels.org/dev/examples/notebooks/generated/stationarity_detrending_adf_kpss.html" target="_blank" rel="noopener">Augmented Dickey-Fuller (ADF) test and Kwiatkowski–Phillips–Schmidt–Shin (KPSS) test</a></strong>    they provide statistical evidence for or against stationarity, and it is worthwhile to conduct both because they test complementary hypotheses. The results indicate whether differentiation or transformation is needed before modeling.</p>
</p>
<h2><span># </span>Step 5: Construction of classic statistical forecast models</h2>
<p><strong>Rescue</strong>: : <a href="https://otexts.com/fpp3/expsmoothing.html" target="_blank" rel="noopener">Forecasting: Principles and Practice, Chapters 7–9</a> for ETS and ARIMA and <strong><a href="https://www.statsmodels.org/stable/statespace.html" target="_blank" rel="noopener">statsmodels State space documentation</a></strong>    for details on the Python-specific implementation.</p>
</p>
<h2><span># </span>Step 6: Move to machine learning and deep learning models</h2>
<p>Tree-based models such as <strong><a href="https://lightgbm.readthedocs.io/en/stable/" target="_blank" rel="noopener">Lightweight GBM</a></strong>    AND <strong><a href="https://xgboost.readthedocs.io/en/stable/" target="_blank" rel="noopener">XGBoost</a></strong>    generate powerful forecasts by taking into account well-designed lag functions, rolling statistics and calendar variables. They automatically deal with non-linearity and interactions between functions, but the main risk is data leakage; delays must be constructed solely based on past values ​​relative to the prediction timestamp. sktime <code>make_reduction</code> safely wraps scikit-learn regressors as predictors and handles this accounting correctly.</p>
<p><strong><a href="https://otexts.com/fpp3/nnetar.html" target="_blank" rel="noopener">Deep learning architectures</a></strong>    have the best track record on benchmark datasets and perform better at multi-season, covariate and long-term forecasting than classical models. NeuralForecast implements all this with a consistent API and appropriate short-lived cross-validation support. The right time to turn to deep learning is after simpler models have stabilized, not before.</p>
<p><strong>Rescue</strong>: : <strong><a href="https://www.kaggle.com/competitions/m5-forecasting-accuracy/code" target="_blank" rel="noopener">Kaggle M5 Forecasting competition notebooks</a></strong>    are a good starting point, and <a href="https://www.kaggle.com/competitions/m5-forecasting-accuracy/code?competitionId=18599&#038;sortBy=voteCount&#038;excludeNonAccessedDatasources=true" target="_blank" rel="noopener">the best solutions</a> they cover the entire process from feature engineering to assembly based on a real-world retail forecasting problem and are publicly available.</p>
</p>
<h2><span># </span>Step 7: Implementation and monitoring of forecasting systems</h2>
<p>Forecast storage and versioning require thoughtful design. Manufacturing forecasting systems generate forecasts continuously, and storing forecasts along with predicted facts – not just the final model results – allows you to calculate retrospective accuracy over each time horizon and understand exactly where the model is deteriorating over time.</p>
<p>Backtesting as a gateway to implementation is the discipline that separates experiments from production-ready systems. Before any model is implemented, exacting backtesting should simulate the entire implementation window using only data that would be available at each stage. A model that looks good on the exposed test set but doesn&#8217;t backtest properly is not ready.</p>
<p><strong>Rescue</strong>: : <strong><a href="https://www.evidentlyai.com/ml-in-production/model-monitoring" target="_blank" rel="noopener">Apparently an AI model monitoring guide</a></strong>    for machine learning monitoring, including data drift detection and predictions.</p>
</p>
<h2><span># </span>Summary</h2>
</p>
<table style="width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; color: #333;">
<thead>
<tr style="background-color: #ffd29a;">
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">Step</th>
<th style="padding: 12px; border: 1px solid #ddd; text-align: left;">Why it matters</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Basic properties of time series data</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Without understanding time dependencies, stationarity and seasonality, each subsequent decision is based on shaky ground
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Pandas time-aware data structures</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Correct indexing, resampling, and windowing operations are prerequisites for any analysis and modeling task
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Cleaning and preparation</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Errors introduced here propagate silently throughout the pipeline; the temporal ordering makes them harder to catch than tabular cleaning
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Exploratory analysis</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Distribution, autocorrelation plots, and stationarity tests reveal structure that determines which models are appropriate
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Classic statistical models</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>Enforces structured engagement with data; often competitive with elaborate approaches and always useful as a reference
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Machine learning and deep learning models</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>It expands the possibilities with non-linear patterns, prosperous feature sets and immense sets of series after understanding the classic baselines
</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">Implementation and monitoring</td>
<td style="padding: 12px; border: 1px solid #ddd;">
<p>A model that cannot be kept in production is not a finished product; time series systems require domain-specific operational discipline
</td>
</tr>
</tbody>
</table>
<p><b><a href="https://twitter.com/balawc27" rel="noopener" target="_blank"><strong><a href="https://www.kdnuggets.com/wp-content/uploads/bala-priya-author-image-update-230821.jpg" target="_blank" rel="noopener noreferrer">Priya C&#8217;s girlfriend</a></strong></a></b>    is a software developer and technical writer from India. He likes working at the intersection of mathematics, programming, data analytics and content creation. Her areas of interest and specialization include DevOps, data analytics and natural language processing. She likes reading, writing, coding and coffee! He is currently working on learning and sharing his knowledge with the developer community by writing tutorials, guides, reviews, and more. Bala also creates fascinating resource overviews and coding tutorials.</p>
</p></div>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p>The post <a href="https://aisckool.com/7-steps-to-master-time-series-analysis-in-python/">7 steps to master time series analysis in Python</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/7-steps-to-master-time-series-analysis-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i1.wp.com/www.kdnuggets.com/wp-content/uploads/kdn-7-steps-time-series-analyis.png?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>How to Spot Greenwashing Claims When Traveling</title>
		<link>https://aisckool.com/how-to-spot-greenwashing-claims-when-traveling/</link>
					<comments>https://aisckool.com/how-to-spot-greenwashing-claims-when-traveling/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 17:04:40 +0000</pubDate>
				<category><![CDATA[AI in Business]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27361</guid>

					<description><![CDATA[<p>Finding a legally eco-friendly one being able to travel is complex, not to mention time-consuming. The gap between sustainability claims and practices can be quite huge, and &#8220;eco-crime&#8221; is not always straightforward to identify. But there are signs to look for. Scientists from Turkey recently Five key categories have been identified Describe the most common [&#8230;]</p>
<p>The post <a href="https://aisckool.com/how-to-spot-greenwashing-claims-when-traveling/">How to Spot Greenwashing Claims When Traveling</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><span class="lead-in-text-callout">Finding a legally eco-friendly one</span> being able to travel is complex, not to mention time-consuming. The gap between sustainability claims and practices can be quite huge, and &#8220;eco-crime&#8221; is not always straightforward to identify.</p>
<p class="paywall">But there are signs to look for. Scientists from Turkey recently <a data-offer-url="https://www.frontiersin.org/journals/sustainability/articles/10.3389/frsus.2026.1791197/full#sec19" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.frontiersin.org/journals/sustainability/articles/10.3389/frsus.2026.1791197/full#sec19&quot;}" href="https://www.frontiersin.org/journals/sustainability/articles/10.3389/frsus.2026.1791197/full#sec19" rel="nofollow noopener" target="_blank">Five key categories have been identified</a> Describe the most common forms of greenwashing in tourism: eco-certifications, penniless waste management, misleading carbon offset claims, over-consumption by destination, and the exploit of the &#8220;green development&#8221; label to mask social injustice and environmental damage.</p>
<p class="paywall">&#8220;Companies facing demands for environmental and social responsibility often make gestures that are largely for show&#8221; &#8211; authors <a data-offer-url="https://www.frontiersin.org/journals/sustainability/articles/10.3389/frsus.2026.1791197/full#sec19" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.frontiersin.org/journals/sustainability/articles/10.3389/frsus.2026.1791197/full#sec19&quot;}" href="https://www.frontiersin.org/journals/sustainability/articles/10.3389/frsus.2026.1791197/full#sec19" rel="nofollow noopener" target="_blank">he wrote in the newspaper</a> published in May in the journal Frontiers in Sustainability.</p>
<p class="paywall">As the newspaper explains, there are many reasons for concern, but there are also ways to cut through the noise. Independent and hearty certification systems play a huge role; local business is also significant, as corporate chains are often associated with problematic greenwashing, especially at the luxury level. “Sustainability cannot be seen as a communication strategy, but as a structural commitment that is measurable, inclusive and ethically embedded,” the authors wrote.</p>
<p class="paywall">The first thing to remember when planning a trip is that it will have a negative impact. Any company saying they are helping the environment, instead of explaining what they are doing to reduce their footprint, is a giant red flag. It takes a little more effort to see anything beyond that. Take this into account when booking your trip.</p>
<h2 class="paywall">Do those little notes asking you to reuse your towels do any good?</h2>
<p class="paywall">Linen reuse programs, where you forgo daily replacement of towels and hopefully sheets, have become the norm &#8211; and actually save huge amounts of water, as well as detergent and energy. If you&#8217;re traveling, you really should take part in this; many people still don&#8217;t do this.</p>
<p class="paywall">However, when it comes to assessing a hotel&#8217;s environmental performance, a towel program should be standard practice.</p>
<p class="paywall">PSA for any hotel operators: <a href="https://sparq.stanford.edu/solutions/simple-message-saves-water" class="text link" target="_blank" rel="noopener">According to</a> social psychology research, more people will participate if you exploit a &#8220;general norms&#8221; approach when presenting it. Posters should say &#8220;Join other guests in saving water&#8221; &#8211; rather than presenting it in a more altruistic way, such as &#8220;Help protect the environment by reusing towels.&#8221;</p>
<h2 class="paywall">Look for substantiated claims</h2>
<p class="paywall">The best way to evaluate a hotel is to seek credible third-party certifications from scientific standards-setting and mandatory auditing programs such as the Global Sustainable Tourism Council (GSTC) and EarthCheck. The more familiar LEED certification, particularly the platinum standard, is best-in-class for a hotel&#8217;s design, but says little about its day-to-day operations or its local environmental and economic impact. In nature-rich regions, the nonprofit Rainforest Alliance also certifies hotels that meet certain sustainability and biodiversity conservation standards.</p>
<p class="paywall">What to avoid: Self-created credentials or environmental awards. These signs on websites and at hotel check-in counters &#8211; &#8220;The best eco-friendly hotel!&#8221; or “Voted most sustainable hotel in town!” – they are often a marketing trick or the result of paid promotion.</p>
<p class="paywall">Many companies claim zero waste but often rely on single-use products that claim to be compostable or biodegradable but are not actually composted; They also exploit energy and novel natural resources for production, even if they are later composted. Others make pledges to reduce plastic, which are often narrow in scope and apply to individual items such as cups or cutlery, but ignore others; or switching to boxed water instead of bottled water, even though the boxes are made of plastic and are only slightly recyclable.</p>
<p class="paywall">Unfortunately, there is no straightforward tool to fact-check such claims because there are actually no laws governing what companies can say about how environmentally amiable they are.</p>
</div>
<p>The post <a href="https://aisckool.com/how-to-spot-greenwashing-claims-when-traveling/">How to Spot Greenwashing Claims When Traveling</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/how-to-spot-greenwashing-claims-when-traveling/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i3.wp.com/media.wired.com/photos/6a1db6a207caca13402b54cb/191:100/w_1280,c_limit/Wired%20Greenwashing%20FINAL.jpg?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>&#8216;Doo Doo Water and Some Needles&#8217;: The Mystery of Novel York&#8217;s Sump Prowlers</title>
		<link>https://aisckool.com/doo-doo-water-and-some-needles-the-mystery-of-novel-yorks-sump-prowlers/</link>
					<comments>https://aisckool.com/doo-doo-water-and-some-needles-the-mystery-of-novel-yorks-sump-prowlers/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 13:03:14 +0000</pubDate>
				<category><![CDATA[AI in Business]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27357</guid>

					<description><![CDATA[<p>In recent days fantastic question caught the attention of Novel Yorkers and local tabloids: Who goes in and out of the drains throughout the city and what are they doing in the sewer system? ON May 5Surveillance footage shows three people wearing waders entering a manhole in Queens. Then in the early morning hours at [&#8230;]</p>
<p>The post <a href="https://aisckool.com/doo-doo-water-and-some-needles-the-mystery-of-novel-yorks-sump-prowlers/">&#8216;Doo Doo Water and Some Needles&#8217;: The Mystery of Novel York&#8217;s Sump Prowlers</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><span class="lead-in-text-callout">In recent days</span> fantastic question caught the attention of Novel Yorkers and <a data-offer-url="https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/&quot;}" href="https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/" rel="nofollow noopener" target="_blank">local tabloids</a>: Who goes in and out of the drains throughout the city and what are they doing in the sewer system?</p>
<p class="paywall">ON <a href="https://apnews.com/article/nyc-sewer-explorers-manhole-investigation-a229be36b3daa74223ad0a43bfdcc488" class="text link" target="_blank" rel="noopener">May 5</a>Surveillance footage shows three people wearing waders entering a manhole in Queens. Then in the early morning hours at <a href="https://apnews.com/article/nyc-sewer-explorers-manhole-investigation-a229be36b3daa74223ad0a43bfdcc488" class="text link" target="_blank" rel="noopener">May 29</a>another camera captured a group of people emerging from a sewer manhole in Brooklyn. On the same day a <a data-offer-url="https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/&quot;}" href="https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/" rel="nofollow noopener" target="_blank">miscellaneous</a> the group was seen emerging from another manhole in Brooklyn, miles away from the first site. Some wore it <a href="https://apnews.com/article/nyc-sewer-explorers-manhole-investigation-a229be36b3daa74223ad0a43bfdcc488" class="text link" target="_blank" rel="noopener">headlights</a>and some carried what seemed to be <a href="https://apnews.com/article/nyc-sewer-explorers-manhole-investigation-a229be36b3daa74223ad0a43bfdcc488" class="text link" target="_blank" rel="noopener">shovels</a> AND <a data-offer-url="https://www.theguardian.com/us-news/2026/jun/02/new-york-police-investigate-people-emerging-manholes" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.theguardian.com/us-news/2026/jun/02/new-york-police-investigate-people-emerging-manholes&quot;}" href="https://www.theguardian.com/us-news/2026/jun/02/new-york-police-investigate-people-emerging-manholes" rel="nofollow noopener" target="_blank">flashlights</a>.</p>
<p class="paywall">The Novel York Police Department has already done this <a data-offer-url="https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/&quot;}" href="https://nypost.com/2026/06/01/us-news/nyc-manhole-mole-people-have-plundered-sewer-for-lost-treasures-for-decades/" rel="nofollow noopener" target="_blank">was speculated</a> that men are scavengers looking for jewelry, weapons or other valuables. But no one knows for sure, so WIRED consulted several urban exploration content creators based in Novel York. On platforms such as TikTok, YouTube and Instagram, &#8216;urbex&#8217; creators &#8211; typically teenage boys or juvenile men who film together in tiny groups &#8211; explore abandoned or hard-to-reach spaces such as disused factories, dilapidated mansions and underground tunnels.</p>
<p class="paywall">The creators who spoke to WIRED say they did not recognize anyone in the video. In fact, they did not consider the alleged sewage bandits as their own.</p>
<p class="paywall">There&#8217;s nothing of value there except &#8220;doo doo water and a few needles,&#8221; says one of the creators. “And sewers are quite risky because there is basically no cell phone reception there.” (Because this type of mining is illegal, the creators spoke on condition of anonymity.)</p>
<p class="paywall">“No one does sewerage,” says another creator when WIRED asked if manhole workers could be part of the urbex community. “It&#8217;s just a very old system and people don&#8217;t know much about it.” The men in the films &#8220;were too sophisticated about it,&#8221; says the creator, pointing out that some <a data-offer-url="https://nypost.com/2026/06/01/us-news/bizarre-nyc-sewer-spelunker-incidents-may-have-simple-explanation-sources/" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://nypost.com/2026/06/01/us-news/bizarre-nyc-sewer-spelunker-incidents-may-have-simple-explanation-sources/&quot;}" href="https://nypost.com/2026/06/01/us-news/bizarre-nyc-sewer-spelunker-incidents-may-have-simple-explanation-sources/" rel="nofollow noopener" target="_blank">change clothes</a> after they appear.</p>
<p class="paywall">Another creator said subway tunnels and abandoned stations in the city were better places to film, noting that it could capture close-up shots of trains and &#8220;prestige graffiti.&#8221;</p>
<p class="paywall">In 2010, the Novel York Times published an article entitled <a data-offer-url="https://www.nytimes.com/2011/01/02/nyregion/02underground.html" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.nytimes.com/2011/01/02/nyregion/02underground.html&quot;}" href="https://www.nytimes.com/2011/01/02/nyregion/02underground.html" rel="nofollow noopener" target="_blank">guided tour</a> underground Novel York City, including portions of the sewer system that have entrances to Van Cortlandt Park in the Bronx and Kissena Park in Queens. The article included descriptions of &#8220;condoms and sticky bits of toilet paper&#8221; floating in the &#8220;coffee-colored gloom,&#8221; but no miraculous graffiti.</p>
<p class="paywall">Another creator claims that the potential discovery could be the entrance to a sewer manhole <a href="https://www.columbia.edu/~brennan/abandoned/willb.html" class="text link" target="_blank" rel="noopener">abandoned</a> <a data-offer-url="https://forgotten-ny.com/2023/10/essex-street-trolley-terminal/" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://forgotten-ny.com/2023/10/essex-street-trolley-terminal/&quot;}" href="https://forgotten-ny.com/2023/10/essex-street-trolley-terminal/" rel="nofollow noopener" target="_blank">trolleybus tracks</a>. They claim to know &#8220;a few people who have entered manholes just for the thrill of exploration,&#8221; but add that this was &#8220;a long time ago&#8221; and that &#8220;no one in today&#8217;s urbex scene really knows which manholes need to be opened to access trolley lines.&#8221;</p>
<p class="paywall">“A lot of people going to different channels throughout New York seem suspicious to me,” the creator says. “It could be more than just exploration.”</p>
<p class="paywall">The NYPD and the Novel York City Department of Environmental Protection, which oversees the sewer system, tell WIRED that they have investigated the sewer locations shown in the surveillance video and determined that the situation does not pose a threat to public safety. (The DEP also emphasized that such activity is &#8220;both illegal and extremely dangerous.&#8221;)</p>
<p class="paywall">WIRED was unable to locate any recent urbex content featuring Novel York City&#8217;s sewer systems. The most popular content types are subway tunnels, abandoned subway stations, and non-public rooftops of Manhattan skyscrapers.</p>
</div>
<p>The post <a href="https://aisckool.com/doo-doo-water-and-some-needles-the-mystery-of-novel-yorks-sump-prowlers/">&#8216;Doo Doo Water and Some Needles&#8217;: The Mystery of Novel York&#8217;s Sump Prowlers</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/doo-doo-water-and-some-needles-the-mystery-of-novel-yorks-sump-prowlers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i3.wp.com/media.wired.com/photos/6a21d98b6a7879400ec43e4c/191:100/w_1280,c_limit/NYCs-Mysterious-Manhole-Creepers-Business.jpg?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>OpenAI and Anthropic may compete, but investors are not choosing sides</title>
		<link>https://aisckool.com/openai-and-anthropic-may-compete-but-investors-are-not-choosing-sides/</link>
					<comments>https://aisckool.com/openai-and-anthropic-may-compete-but-investors-are-not-choosing-sides/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 11:02:35 +0000</pubDate>
				<category><![CDATA[AI in Business]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27353</guid>

					<description><![CDATA[<p>OpenAI and Anthropic they fought for employees, customers and public attention. Rival AI labs have argued on opposing sides of policy proposals, and their CEOs were the only ones who didn&#8217;t shake hands with a dozen industry leaders at a business summit earlier this year. But they do have one massive area of ​​overlap: their [&#8230;]</p>
<p>The post <a href="https://aisckool.com/openai-and-anthropic-may-compete-but-investors-are-not-choosing-sides/">OpenAI and Anthropic may compete, but investors are not choosing sides</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><span class="lead-in-text-callout">OpenAI and Anthropic</span> they fought for employees, customers and public attention. Rival AI labs have argued on opposing sides of policy proposals, and their CEOs were the only ones who didn&#8217;t shake hands with a dozen industry leaders at a business summit earlier this year. But they do have one massive area of ​​overlap: their investors.</p>
<p class="paywall">Over the past few years, about 90 venture capital firms and other money managers have invested in both OpenAI and Anthropic, according to a WIRED analysis of data from PitchBook, a platform that tracks startup investments. Data shows that OpenAI shares approximately 42 percent of its total investors with Anthropic. Roughly a third of Anthropic&#8217;s investors are also OpenAI supporters, including immense companies such as Sequoia Capital, Greylock, Founders Fund, Redpoint Ventures, Emerson Collective and Sound Ventures.</p>
<p class="paywall">Last week, Anthropic created <a data-offer-url="https://www.anthropic.com/news/series-h" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.anthropic.com/news/series-h&quot;}" href="https://www.anthropic.com/news/series-h" rel="nofollow noopener" target="_blank">collection announcement</a> which listed 31 investors, at least 13 of whom have shares in OpenAI, according to PitchBook data and WIRED reporting. The number of common investors may be underestimated because collecting information on private investments is challenging. WIRED identified at least several investors in PitchBook data who are not on OpenAI&#8217;s roster, including: <a data-offer-url="https://www.aboutamazon.com/news/aws/amazon-open-ai-strategic-partnership-investment" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.aboutamazon.com/news/aws/amazon-open-ai-strategic-partnership-investment&quot;}" href="https://www.aboutamazon.com/news/aws/amazon-open-ai-strategic-partnership-investment" rel="nofollow noopener" target="_blank">Amazon</a>.</p>
<p class="paywall">The degree of overlap is astonishing for two fierce competitors who started fundraising several years apart. Three experts who study the venture capital industry called this prevalence unusual, even unprecedented. This phenomenon reflects the recent evolution of the venture capital industry, the emergence of two extraordinary companies that have raised unprecedented sums of money, and the wide-open competition between them and others in the field of artificial intelligence.</p>
<p class="paywall">&#8220;The ownership structure you see today gives a real insight into how sophisticated investors view this market, and the answer seems to be that few are convinced that this will be a winner-takes-all market, and if so, who will be the dominant players,&#8221; says Tom Nicholas, Harvard Business School professor and author of the book <em>VC: American History</em>.</p>
<p class="paywall">The investor crossover is also noteworthy, as Anthropic and OpenAI aim to debut on the stock exchange this year. Initial public offerings are often an opportunity for investors to realize profits from owning a startup. But <a data-offer-url="https://www.nasdaq.com/articles/ipo-pops-are-back" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.nasdaq.com/articles/ipo-pops-are-back&quot;}" href="https://www.nasdaq.com/articles/ipo-pops-are-back" rel="nofollow noopener" target="_blank">last year</a>only two-thirds of IPOs saw a significant raise in value. By betting on both OpenAI and Anthropic, investors can double their chances of success.</p>
<p class="paywall">“Rather than looking at these companies as overlapping technologies, these large investors are protecting their ability to generate profits,” says Kyle Stanford, director of venture capital research at PitchBook.</p>
<p class="paywall">OpenAI and Anthropic did not respond to requests for comment. Several venture capital firms that have invested in OpenAI and Anthropic also declined or did not respond to requests for comment on why they decided to back both.</p>
<p class="paywall">Several spoke only on the condition of anonymity to avoid jeopardizing industry relationships, and each called the matchup an investment opportunity with OpenAI and Anthropic unlike any they had encountered before.</p>
<p class="paywall">Historically, venture capital firms have concentrated their bets on one company in an area of ​​competition that should be avoided <a data-offer-url="https://www.usv.com/writing/2007/01/why-we-dont-invest-in-competitive-businesses/" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.usv.com/writing/2007/01/why-we-dont-invest-in-competitive-businesses/&quot;}" href="https://www.usv.com/writing/2007/01/why-we-dont-invest-in-competitive-businesses/" rel="nofollow noopener" target="_blank">conflicts of interest</a>says Stanford. Companies sometimes share proprietary information with investors or look to them for advice or management, and owning shares in rivals encourages awkward conversations.</p>
</div>
<p>The post <a href="https://aisckool.com/openai-and-anthropic-may-compete-but-investors-are-not-choosing-sides/">OpenAI and Anthropic may compete, but investors are not choosing sides</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/openai-and-anthropic-may-compete-but-investors-are-not-choosing-sides/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i2.wp.com/media.wired.com/photos/6a1f7877452f8f7907d948a3/191:100/w_1280,c_limit/Nearly-Half-of-Investors-Have-Stakes-in-Both-OpenAI-and-Anthropic-Business.jpg?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>I don&#8217;t want to alarm anyone, but carnivorous snails have arrived in the US</title>
		<link>https://aisckool.com/i-dont-want-to-alarm-anyone-but-carnivorous-snails-have-arrived-in-the-us/</link>
					<comments>https://aisckool.com/i-dont-want-to-alarm-anyone-but-carnivorous-snails-have-arrived-in-the-us/#respond</comments>
		
		<dc:creator><![CDATA[The AI Sckool]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 09:38:26 +0000</pubDate>
				<category><![CDATA[Data Science]]></category>
		<guid isPermaLink="false">https://aisckool.com/?p=27349</guid>

					<description><![CDATA[<p>On Wednesday evening, the U.S. Department of Agriculture announced that a case of the Novel World snail had been confirmed in south Texas. This is the first violation of the US-Mexico border detected by the US voracious, carnivorous fliesthat have they climbed up through Central America for several years. IN social media post on Wednesday [&#8230;]</p>
<p>The post <a href="https://aisckool.com/i-dont-want-to-alarm-anyone-but-carnivorous-snails-have-arrived-in-the-us/">I don&#8217;t want to alarm anyone, but carnivorous snails have arrived in the US</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p>On Wednesday evening, the U.S. Department of Agriculture announced that a case of the Novel World snail had been confirmed in south Texas. This is the first violation of the US-Mexico border detected by the US <a href="https://arstechnica.com/health/2025/05/screwworms-are-coming-and-theyre-just-as-horrifying-as-they-sound/" class="text link" target="_blank" rel="noopener">voracious, carnivorous flies</a>that have <a href="https://arstechnica.com/health/2025/09/flesh-eating-parasite-just-70-miles-from-us-check-pets-texas-officials-say/" class="text link" target="_blank" rel="noopener">they climbed up</a> through Central America for several years.</p>
<p class="paywall">IN <a data-offer-url="https://x.com/USDA/status/2062245310689345981" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://x.com/USDA/status/2062245310689345981&quot;}" href="https://x.com/USDA/status/2062245310689345981" rel="nofollow noopener" target="_blank">social media post on Wednesday afternoon</a>The USDA disclosed that the Texas sample was sent to the National Veterinary Services Laboratories (NVSL) in Ames, Iowa, for confirmation of worm infection. Secretary of Agriculture Brooke Rollins later posted it <a data-offer-url="https://x.com/SecRollins/status/2062344848431018088" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://x.com/SecRollins/status/2062344848431018088&quot;}" href="https://x.com/SecRollins/status/2062344848431018088" rel="nofollow noopener" target="_blank">the examination confirmed the infection</a>that was found in a three-week-old calf in Zavala County, Texas.</p>
<p class="paywall">News of the worm&#8217;s detection was already building this week, sending shockwaves through the U.S. cattle industry.</p>
<p class="paywall">Although many animals, including humans, can be victims of the parasite, the snail is particularly threatening to farm animals. Female snails lay hundreds of eggs in the wounds and holes of warm-blooded creatures, allowing their larvae to feed on living animals, causing deep, festering, life-threatening wounds. Although the snail was once endemic to the U.S., it was extirpated in the 1960s as a result of years of control efforts. The USDA estimates that keeping snails out of the United States will <a href="https://www.nal.usda.gov/exhibits/speccoll/exhibits/show/stop-screwworms--selections-fr/introduction" class="text link" target="_blank" rel="noopener">saved the livestock industry $900 million a year</a>.</p>
<p class="paywall">But the fly had broken through the controls in Central America and was getting closer. According to the USDA, on May 28, a case of the infection was detected within 25 miles of the border in a five-year-old goat in Coahuila, Mexico. The case was one of many detected in recent days, including one in a calf just 60 km from the border, also in Coahuila.</p>
<h2 class="paywall">Disputed findings</h2>
<p class="paywall">In a media call Tuesday, Agriculture Secretary Brooke Rollins said, &#8220;There&#8217;s no question that this is a very, very serious threat to our livestock.&#8221; But she also disputed claims that the fly is closer or even already in the US.</p>
<p class="paywall">On Monday, state Rep. Don McLaughlin claimed on social media that the snailworm case was rightly found <a data-offer-url="https://x.com/donfortexas/status/2061504920021241934" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://x.com/donfortexas/status/2061504920021241934&quot;}" href="https://x.com/donfortexas/status/2061504920021241934" rel="nofollow noopener" target="_blank">one mile from the Texas border</a>which Rollins and <a data-offer-url="https://x.com/USDA/status/2061612189287354459" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://x.com/USDA/status/2061612189287354459&quot;}" href="https://x.com/USDA/status/2061612189287354459" rel="nofollow noopener" target="_blank">The USDA denied it</a>.</p>
<p class="paywall">“When false information comes to light, there is huge panic.” <a data-offer-url="https://www.texastribune.org/2026/06/02/texas-screwworm-1-mile-brooke-rollins-don-mclaughlin/" class="external-link text link" data-event-click="{&quot;element&quot;:&quot;ExternalLink&quot;,&quot;outgoingURL&quot;:&quot;https://www.texastribune.org/2026/06/02/texas-screwworm-1-mile-brooke-rollins-don-mclaughlin/&quot;}" href="https://www.texastribune.org/2026/06/02/texas-screwworm-1-mile-brooke-rollins-don-mclaughlin/" rel="nofollow noopener" target="_blank">Rollins said Tuesday, according to the Texas Tribune</a>. “And rightfully so, especially when it comes from elected officials and the media.”</p>
<p class="paywall">on Wednesday, <a href="https://www.reuters.com/business/healthcare-pharmaceuticals/unconfirmed-us-case-flesh-eating-screwworm-rattles-cattle-markets-traders-say-2026-06-03/" class="text link" target="_blank" rel="noopener">Reuters reported that McLaughlin suspected the fly was already here</a>. He said samples taken Tuesday from two calves at a ranch in La Pryor, Texas &#8211; in Zavala County, where the worm infection was confirmed &#8211; were being tested for possible snail infection. One infection is said to have occurred in the umbilical cord wound of one of the calves. McLaughlin said he had seen photos and videos of the animals and that the larvae in the photos looked like snail larvae.</p>
<p class="paywall">Reuters was shown one photo that it said showed &#8220;multiple snail-like larvae inside a bloody circular wound on the animal,&#8221; but said it &#8220;could not immediately verify the photo.&#8221;</p>
<p class="paywall">“At this point, it is unconfirmed that it is a New World snail,” McLaughlin said Wednesday. “It looks like it, but it&#8217;s unconfirmed.”</p>
<p class="paywall">The USDA said the discovery has now been confirmed <a href="https://www.aphis.usda.gov/news/agency-announcements/usda-confirms-presence-new-world-screwworm-united-states" class="text link" target="_blank" rel="noopener">press release on Wednesday evening</a> that it is forming a &#8220;unified incident command team&#8221; with the Texas Animal Health Commission and sending response personnel to the area. It also establishes a 20-kilometer zone around detected infection for quarantine, movement restrictions and increased surveillance and fly trapping.</p>
<h2 class="paywall">Back Screw</h2>
<p class="paywall">The snails were wiped out in the US in the 1960s as a result of concerted efforts to wipe out their populations. This is done by aerial bombardment of sterile male flies, which is the most effective weapon against parasites. The mass release of duds displaces fertile males, preventing them from mating with females, which typically mate only once.</p>
<p class="paywall">Thanks to this method, called the sterile insect technique, flies were eradicated not only in the US but throughout Central America. In 2006, they were declared exterminated in Panama.</p>
</div>
<p>The post <a href="https://aisckool.com/i-dont-want-to-alarm-anyone-but-carnivorous-snails-have-arrived-in-the-us/">I don&#8217;t want to alarm anyone, but carnivorous snails have arrived in the US</a> appeared first on <a href="https://aisckool.com">AI SCKOOL</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://aisckool.com/i-dont-want-to-alarm-anyone-but-carnivorous-snails-have-arrived-in-the-us/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i3.wp.com/media.wired.com/photos/6a21dc78733250a1d799491a/191:100/w_1280,c_limit/GettyImages-2212569697%20(1).jpg?ssl=1" medium="image"></media:content>
            	</item>
	</channel>
</rss>
