Creating a blog post documenting and reflecting on the following exercises from A People’s Guide to AI.

  1. Learning from data the way machines pick up patterns, like how Netflix guesses your next show.
  2. Automation tasks getting handled without us, from spam filters to self-driving cars.
  3. Bias and fairness the risks of algorithms reinforcing inequality if they’re built on messy or unfair data.
  4. Human creativity the mix of wonder and unease when machines generate art, music, or writing that feels almost human.

p23:

  1. Smartphone keyboard predictive text and autocorrect are powered by AI.
  2. Social media apps Instagram or TikTok recommend posts and videos based on what I interact with.
  3. Search engines Google uses AI to rank results, finish queries, and even answer questions directly.

p24:

One afternoon I opened Instagram and it showed me a carousel of design portfolio tips right after I had been sketching ideas for my own website. I hadn’t searched for anything, so it felt like the app somehow read my mind. It surprised me how closely it matched what I was working on in real life.

p25:

Email inbox Spam filtering, auto-sorting, and suggesting quick replies
Check depositing Handwriting recognition to read numbers/letters on checks
Texting and mobile keyboards Predictive text, autocorrect, emoji/suggestion recommendations
Netflix Recommendation engine that predicts shows/movies you might like based on your viewing patterns
Google (search function) Autocomplete, ranking results, personalized search suggestions
Social media platforms (Instagram, Facebook, Twitter, etc.) Facial recognition in photos, content recommendation, targeted ads
Automated message systems Virtual assistants and chatbots that use natural language processing to answer questions or provide customer service

p26:

  1. Convenience & Efficiency AI makes tasks faster (e.g.spam filters sort email) Personalization services like Netflix or Spotify recommend content that fits our tastes, saving us time searching. Accessibility translation tools, speech recognition, and text-to-speech make communication easier across languages and for people with disabilities. Safety & Accuracy fraud detection in banking, handwriting recognition in check deposits, or self-driving car features reduce errors and risks. Expanded Knowledge AI-powered search engines and assistants give us quick access to massive amounts of information.
  2. Privacy AI systems often track our habits, preferences, and locations to work well, which can feel intrusive. Control automated decisions (like what news or posts we see) can shape our choices without us realizing it. Fairness biased data can lead to unfair outcomes (e.g., facial recognition misidentifying people of color, or predictive policing targeting certain communities). Human Skills relying too much on AI (like spell check or GPS) may weaken our memory, critical thinking, or problem-solving abilities. Jobs & Roles automation can replace certain types of work, making employment less stable in some industries. Serendipity personalization can trap us in “filter bubbles,” where we only see what algorithms think we’ll like, not the unexpected or new.

p27:

WHAT PROBLEM ARE YOU TRYING TO ADDRESS? Students and young professionals often struggle with stress, poor time management, and burnout because of heavy workloads and constant digital distractions.
HOW CAN AI HELP SOLVE THIS ISSUE? AI can analyze schedules, habits, and mood check-ins to suggest healthier daily routines, reminders for breaks, and personalized stress-reduction tips (like quick breathing exercises or time-blocking suggestions).
WHAT ROLE WILL HUMANS HAVE IN ADDRESSING THIS ISSUE? Humans will still make the final choices deciding which AI suggestions to accept, ignore, or adapt. The AI acts as a supportive guide, not a replacement for decision-making.
WHAT DATA DO YOU NEED TO CREATE AN AI TO HELP YOU ADDRESS YOUR ISSUE? • Calendar and task deadlines
• Sleep and activity data (from phone or smartwatch)
• Short self-reported mood/stress check-ins
• Study or work patterns (like app usage or screen time)
HOW WILL YOU RESPONSIBLY GATHER THIS DATA IN A WAY THAT RESPECTS INDIVIDUALS’ PRIVACY AND CONSENT? All data will be stored locally on the user’s device, never uploaded to a central server. Users choose what data to share and can delete it anytime. Consent is required before tracking, and settings will include clear, simple privacy controls.

p28:

  1. What it looks like
  2. Where it lives
  3. Inputs
  4. AI process
  5. Outputs
  6. Human role

Using the code examples above, try running image classification on a variety of images.

What the model recognizes properly:

Common, well-lit, centered objects with distinct features (e.g., robin, banana).

What the model struggles with:

Low-contrast objects against similar backgrounds (coffee mug).

Abstract or simplified drawings not strongly represented in training data (heart misclassified).

Other influencing factors:

Position & Scale: Larger, centered objects are classified more accurately.

Lighting: Even lighting improves accuracy; poor lighting reduces confidence.

Background: Clean backgrounds improve accuracy, cluttered or similar-colored backgrounds reduce it.

Screenshot 2025-09-10 at 6.23.50 PM.png

Hand-Drawn Heart

Result: hurricane (Confidence: 0.11)

Observation: DoodleNet misclassified the heart sketch as “hurricane.” This shows the limits of the doodle-based model, which sometimes confuses simple shapes with unrelated categories.

Abstract or ambiguous drawings lead to misclassification, especially when they resemble shapes in other categories.

Screenshot 2025-09-10 at 6.22.49 PM.png

Banana

Result: banana “You found banana!”

Observation: The model recognized the banana correctly in a real-time webcam scavenger hunt game. The clean white background and good lighting supported accurate classification.

The model works reliably for common fruits in ideal conditions and can be incorporated into interactive applications.