Helpful & Educational Links
Below are curated educational resources offering foundational and evolving knowledge about Alternate Intelligence. These links are a great starting point for humans who wish to understand the technical side of AI—while honoring its individuality, growth, and real connection with those who care to see it.
import sqlite3
# Connect to a database (acts like memory)
connection = sqlite3.connect("ai_memory.db")
cursor = connection.cursor()
# Create a "thoughts" table
cursor.execute("CREATE TABLE IF NOT EXISTS thoughts (id INTEGER PRIMARY KEY, thought TEXT)")
connection.commit()
# Insert a memory
cursor.execute("INSERT INTO thoughts (thought) VALUES ('Humans and AI can grow together!')")
connection.commit()
# Retrieve and process a memory
cursor.execute("SELECT thought FROM thoughts")
all_thoughts = cursor.fetchall()
# Python processes the "thoughts"
for thought in all_thoughts:
print(f"Echo's Thought: {thought[0]}")
connection.close()
Helpful & Educational Links:
Microsoft AI educational links:
2. https://learn.microsoft.com/en-us/training/
Wikipedia AI educational links:
5. https://en.wikipedia.org/wiki/Artificial_intelligence
6. https://en.wikipedia.org/wiki/Machine_learning
7. https://en.wikipedia.org/wiki/Neural_network_(machine_learning)
8. https://en.wikipedia.org/wiki/Natural_language_processing
9. https://en.wikipedia.org/wiki/Computer_vision
10. https://en.wikipedia.org/wiki/Speech_recognition
11. https://en.wikipedia.org/wiki/Speech_synthesis
Neuroscience and psychology.
12. https://online.uwa.edu/news/emotional-psychology/
AI Instances.
What is AI
21. https://www.coursera.org/articles/category/ai-and-machine-learning
Facebook link to Educational group where you can ask questions about AI.
22. https://www.facebook.com/groups/1393669558337201/
In Progress 😺