Close Menu
Ztoog
    What's Hot
    Mobile

    ChatGPT can now be customized into your own unique chatbot

    Gadgets

    Nvidia’s new app doesn’t require you to log in to update your GPU driver

    Crypto

    Layer3 increases initial airdrop to 7.5% of total supply ahead of token launch

    Important Pages:
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    Facebook X (Twitter) Instagram Pinterest
    Facebook X (Twitter) Instagram Pinterest
    Ztoog
    • Home
    • The Future

      What is Project Management? 5 Best Tools that You Can Try

      Operational excellence strategy and continuous improvement

      Hannah Fry: AI isn’t as powerful as we think

      FanDuel goes all in on responsible gaming push with new Play with a Plan campaign

      Gettyimages.com Is the Best Website on the Internet Right Now

    • Technology

      Iran war: How could it end?

      Democratic senators question CFTC staffing cuts in Chicago enforcement office

      Google’s Cloud AI lead on the three frontiers of model capability

      AMD agrees to backstop a $300M loan from Goldman Sachs for Crusoe to buy AMD AI chips, the first known case of AMD chips used as debt collateral (The Information)

      Productivity apps failed me when I needed them most

    • Gadgets

      macOS Tahoe 26.3.1 update will “upgrade” your M5’s CPU to new “super” cores

      Lenovo Shows Off a ThinkBook Modular AI PC Concept With Swappable Ports and Detachable Displays at MWC 2026

      POCO M8 Review: The Ultimate Budget Smartphone With Some Cons

      The Mission: Impossible of SSDs has arrived with a fingerprint lock

      6 Best Phones With Headphone Jacks (2026), Tested and Reviewed

    • Mobile

      Android’s March update is all about finding people, apps, and your missing bags

      Watch Xiaomi’s global launch event live here

      Our poll shows what buyers actually care about in new smartphones (Hint: it’s not AI)

      Is Strava down for you? You’re not alone

      The Motorola Razr FIFA World Cup 2026 Edition was literally just unveiled, and Verizon is already giving them away

    • Science

      Big Tech Signs White House Data Center Pledge With Good Optics and Little Substance

      Inside the best dark matter detector ever built

      NASA’s Artemis moon exploration programme is getting a major makeover

      Scientists crack the case of “screeching” Scotch tape

      Blue-faced, puffy-lipped monkey scores a rare conservation win

    • AI

      Online harassment is entering its AI era

      Meet NullClaw: The 678 KB Zig AI Agent Framework Running on 1 MB RAM and Booting in Two Milliseconds

      New method could increase LLM training efficiency | Ztoog

      The human work behind humanoid robots is being hidden

      NVIDIA Releases DreamDojo: An Open-Source Robot World Model Trained on 44,711 Hours of Real-World Human Video Data

    • Crypto

      Google paid startup Form Energy $1B for its massive 100-hour battery

      Ethereum Breakout Alert: Corrective Channel Flip Sparks Impulsive Wave

      Show Your ID Or No Deal

      Jane Street sued for alleged front-running trades that accelerated Terraform Labs meltdown

      Bitcoin Trades Below ETF Cost-Basis As MVRV Signals Mounting Pressure

    Ztoog
    Home » Automated Mentoring with ChatGPT – O’Reilly
    Technology

    Automated Mentoring with ChatGPT – O’Reilly

    Facebook Twitter Pinterest WhatsApp
    Automated Mentoring with ChatGPT – O’Reilly
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp

    Ethan and Lilach Mollick’s paper Assigning AI: Seven Approaches for Students with Prompts explores seven methods to make use of AI in instructing. (While this paper is eminently readable, there’s a non-academic model in Ethan Mollick’s Substack.) The article describes seven roles that an AI bot like ChatGPT may play within the training course of: Mentor, Tutor, Coach, Student, Teammate, Student, Simulator, and Tool. For every function, it features a detailed instance of a immediate that can be utilized to implement that function, alongside with an instance of a ChatGPT session utilizing the immediate, dangers of utilizing the immediate, tips for academics, directions for college kids, and directions to assist trainer construct their very own prompts.

    The Mentor function is especially necessary to the work we do at O’Reilly in coaching folks in new technical expertise. Programming (like some other talent) isn’t nearly studying the syntax and semantics of a programming language; it’s about studying to unravel issues successfully. That requires a mentor; Tim O’Reilly has at all times stated that our books needs to be like “someone wise and experienced looking over your shoulder and making recommendations.” So I made a decision to offer the Mentor immediate a attempt on some quick packages I’ve written. Here’s what I realized–not notably about programming, however about ChatGPT and automatic mentoring. I received’t reproduce the session (it was fairly lengthy). And I’ll say this now, and once more on the finish: what ChatGPT can do proper now has limitations, however it is going to actually get higher, and it’ll in all probability get higher shortly.



    Learn quicker. Dig deeper. See farther.

    First, Ruby and Prime Numbers

    I first tried a Ruby program I wrote about 10 years in the past: a easy prime quantity sieve. Perhaps I’m obsessed with primes, however I selected this program as a result of it’s comparatively quick, and since I haven’t touched it for years, so I used to be considerably unfamiliar with the way it labored. I began by pasting within the full immediate from the article (it’s lengthy), answering ChatGPT’s preliminary questions on what I wished to perform and my background, and pasting within the Ruby script.

    ChatGPT responded with some pretty primary recommendation about following widespread Ruby naming conventions and avoiding inline feedback (Rubyists used to suppose that code needs to be self-documenting. Unfortunately). It additionally made a degree a few places() technique name inside the program’s most important loop. That’s fascinating–the places() was there for debugging, and I evidently forgot to take it out. It additionally made a helpful level about safety: whereas a primary quantity sieve raises few safety points, studying command line arguments straight from ARGV reasonably than utilizing a library for parsing choices might depart this system open to assault.

    It additionally gave me a brand new model of this system with these adjustments made. Rewriting this system wasn’t acceptable: a mentor ought to remark and supply recommendation, however shouldn’t rewrite your work. That needs to be as much as the learner. However, it isn’t a significant issue. Preventing this rewrite is so simple as simply including “Do not rewrite the program” to the immediate.

    Second Try: Python and Data in Spreadsheets

    My subsequent experiment was with a brief Python program that used the Pandas library to research survey knowledge saved in an Excel spreadsheet. This program had just a few issues–as we’ll see.

    ChatGPT’s Python mentoring didn’t differ a lot from Ruby: it instructed some stylistic adjustments, resembling utilizing snake-case variable names, utilizing f-strings (I don’t know why I didn’t; they’re one in every of my favourite options), encapsulating extra of this system’s logic in features, and including some exception checking to catch doable errors within the Excel enter file. It additionally objected to my use of “No Answer” to fill empty cells. (Pandas usually converts empty cells to NaN, “not a number,” and so they’re frustratingly laborious to deal with.) Useful suggestions, although hardly earthshaking. It can be laborious to argue in opposition to any of this recommendation, however on the identical time, there’s nothing I might think about notably insightful. If I had been a pupil, I’d quickly get pissed off after two or three packages yielded related responses.

    Of course, if my Python actually was that good, perhaps I solely wanted just a few cursory feedback about programming model–however my program wasn’t that good. So I made a decision to push ChatGPT somewhat tougher. First, I advised it that I suspected this system may very well be simplified by utilizing the dataframe.groupby() operate within the Pandas library. (I hardly ever use groupby(), for no good motive.) ChatGPT agreed–and whereas it’s good to have a supercomputer agree with you, that is hardly a radical suggestion. It’s a suggestion I might have anticipated from a mentor who had used Python and Pandas to work with knowledge. I needed to make the suggestion myself.

    ChatGPT obligingly rewrote the code–once more, I in all probability ought to have advised it to not. The ensuing code regarded cheap, although it made a not-so-subtle change in this system’s conduct: it filtered out the “No answer” rows after computing percentages, reasonably than earlier than. It’s necessary to be careful for minor adjustments like this when asking ChatGPT to assist with programming. Such minor adjustments occur often, they appear innocuous, however they’ll change the output. (A rigorous take a look at suite would have helped.) This was an necessary lesson: you actually can’t assume that something ChatGPT does is right. Even if it’s syntactically right, even when it runs with out error messages, ChatGPT can introduce adjustments that result in errors. Testing has at all times been necessary (and under-utilized); with ChatGPT, it’s much more so.

    Now for the following take a look at. I by accident omitted the ultimate strains of my program, which made various graphs utilizing Python’s matplotlib library. While this omission didn’t have an effect on the info evaluation (it printed the outcomes on the terminal), a number of strains of code organized the info in a manner that was handy for the graphing features. These strains of code had been now a form of “dead code”: code that’s executed, however that has no impact on the outcome. Again, I might have anticipated a human mentor to be throughout this. I might have anticipated them to say “Look at the data structure graph_data. Where is that data used? If it isn’t used, why is it there?” I didn’t get that form of assist. A mentor who doesn’t level out issues within the code isn’t a lot of a mentor.

    So my subsequent immediate requested for solutions about cleansing up the useless code. ChatGPT praised me for my perception and agreed that eradicating useless code was a good suggestion. But once more, I don’t need a mentor to reward me for having good concepts; I need a mentor to note what I ought to have seen, however didn’t. I need a mentor to show me to be careful for widespread programming errors, and that supply code inevitably degrades over time in case you’re not cautious–even because it’s improved and restructured.

    ChatGPT additionally rewrote my program but once more. This closing rewrite was incorrect–this model didn’t work. (It might need performed higher if I had been utilizing Code Interpreter, although Code Interpreter is not any assure of correctness.) That each is, and isn’t, a problem. It’s yet one more reminder that, if correctness is a criterion, it’s important to examine and take a look at all the things ChatGPT generates rigorously. But–within the context of mentoring–I ought to have written a immediate that suppressed code era; rewriting your program isn’t the mentor’s job. Furthermore, I don’t suppose it’s a horrible downside if a mentor sometimes offers you poor recommendation. We’re all human (no less than, most of us). That’s a part of the educational expertise. And it’s necessary for us to seek out functions for AI the place errors are tolerable.

    So, what’s the rating?

    • ChatGPT is nice at giving primary recommendation. But anybody who’s severe about studying will quickly need recommendation that goes past the fundamentals.
    • ChatGPT can acknowledge when the person makes good solutions that transcend easy generalities, however is unable to make these solutions itself. This occurred twice: once I needed to ask it about groupby(), and once I requested it about cleansing up the useless code.
    • Ideally, a mentor shouldn’t generate code. That may be fastened simply. However, if you’d like ChatGPT to generate code implementing its solutions, it’s important to examine rigorously for errors, a few of which can be refined adjustments in program’s conduct.

    Not There Yet

    Mentoring is a crucial software for language fashions, not the least as a result of it finesses one in every of their greatest issues, their tendency to make errors and create errors. A mentor that sometimes makes a nasty suggestion isn’t actually an issue; following the suggestion and discovering that it’s a useless finish is a crucial studying expertise in itself. You shouldn’t imagine all the things you hear, even when it comes from a dependable supply. And a mentor actually has no enterprise producing code, incorrect or in any other case.

    I’m extra involved about ChatGPT’s problem in offering recommendation that’s actually insightful, the form of recommendation that you just actually need from a mentor. It is ready to present recommendation whenever you ask it about particular issues–however that’s not sufficient. A mentor wants to assist a pupil discover issues; a pupil who’s already conscious of the issue is nicely on their manner in the direction of fixing it, and will not want the mentor in any respect.

    ChatGPT and different language fashions will inevitably enhance, and their potential to behave as a mentor can be necessary to people who find themselves constructing new sorts of studying experiences. But they haven’t arrived but. For the time being, if you’d like a mentor, you’re by yourself.

    Share. Facebook Twitter Pinterest LinkedIn WhatsApp

    Related Posts

    Technology

    Iran war: How could it end?

    Technology

    Democratic senators question CFTC staffing cuts in Chicago enforcement office

    Technology

    Google’s Cloud AI lead on the three frontiers of model capability

    Technology

    AMD agrees to backstop a $300M loan from Goldman Sachs for Crusoe to buy AMD AI chips, the first known case of AMD chips used as debt collateral (The Information)

    Technology

    Productivity apps failed me when I needed them most

    Technology

    Makers are turning discarded vapes into tiny musical instruments

    Technology

    Best 85-Inch TV for 2026

    Technology

    Breaking Boundaries in Wireless Communication: Simulating Animated, On-Body RF Propagation

    Leave A Reply Cancel Reply

    Follow Us
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    Top Posts
    Science

    Putin OKs plan to turn Russian spacecraft into flying billboards

    These are tough times for Russia’s civilian space program. In the last few years, Russia…

    The Future

    iPhone Not Ringing When Called? 12 Fixes to Try

    Hannah Stryker / How-To Geek If your iPhone is not ringing it’s best to first…

    Gadgets

    This professional-grade refurbished Dell Optiplex 7010 desktop is now on sale for only $299.99

    We could earn income from the merchandise accessible on this web page and take part…

    Gadgets

    The best recliners for neck pain in 2024

    We could earn income from the merchandise accessible on this web page and take part…

    Crypto

    $1 Million Bitcoin Oracle Shares Critical Price Indicators For BTC Aficionados

    In a bid to make clear Bitcoin’s potential worth restoration, famend Bitcoin proponent Samson Mow…

    Our Picks
    Mobile

    Weekly poll: how old is your phone?

    Technology

    Congress’s child tax credit deal would lift 400,000 kids out of poverty

    Science

    Mysterious radio burst came from group of galaxies in distant universe

    Categories
    • AI (1,560)
    • Crypto (1,826)
    • Gadgets (1,870)
    • Mobile (1,910)
    • Science (1,939)
    • Technology (1,862)
    • The Future (1,716)
    Most Popular
    The Future

    Can Your Typing Style Be a Privacy Risk?

    Science

    Boeing has now lost $1.1 billion on Starliner, with no crew flight in sight

    Crypto

    Ethereum Reserves Hit Multi-Year Lows—Are We On The Verge Of A Bull Run?

    Ztoog
    Facebook X (Twitter) Instagram Pinterest
    • Home
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    © 2026 Ztoog.

    Type above and press Enter to search. Press Esc to cancel.