Check Out Our Shop
Page 6 of 14 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 ... LastLast
Results 126 to 150 of 339

Thread: AI is your new master ....

  1. #126
    Join Date
    Feb 2007
    Location
    righthere/rightnow
    Posts
    3,231

  2. #127
    Join Date
    Jan 2008
    Posts
    10,999
    Sam Altman is a grifting sociopath

    https://www.cnbc.com/2024/02/09/open...p-project.html

  3. #128
    Join Date
    Feb 2007
    Location
    righthere/rightnow
    Posts
    3,231
    ^Useful idiot for MS right now, they need someone on the board as a hype man that is not an engineer.

  4. #129
    Join Date
    Jan 2007
    Location
    Upstate
    Posts
    9,770
    This blew my mind. I made a gif out of the image below (daughter's homework) and attached it to a new GPT 4 chat and it created a new program in python to solve the problem.

    Problem

    Name:  Screenshot 2024-02-14 at 2.59.45 PM.png
Views: 492
Size:  73.5 KB




    Answer

    Name:  Screenshot 2024-02-14 at 3.01.52 PM.png
Views: 489
Size:  99.1 KB
    Name:  Screenshot 2024-02-14 at 3.02.13 PM.png
Views: 496
Size:  100.4 KB
    Name:  Screenshot 2024-02-14 at 3.02.26 PM.png
Views: 496
Size:  78.8 KB




    Here's the code it created

    from scipy.optimize import linprog

    # Coefficients for the objective function (total weekly cost)
    labor_cost_per_hour = 12.50
    costs = {
    'Plant1': 20 * labor_cost_per_hour + 50,
    'Plant2': 16 * labor_cost_per_hour + 80,
    'Plant3': 10 * labor_cost_per_hour + 100
    }
    c = [costs['Plant1'], costs['Plant2'], costs['Plant3']]

    # Coefficients for the inequality constraints
    A = [
    [20, 16, 10], # Labor hours constraint
    [5, 8, 7], # Raw material constraint
    [-1, -1, -1] # At least 1400 motorcycles constraint (negative for >=)
    ]
    b = [
    525 * 40, # Total labor hours available
    9400, # Total raw material available
    -1400 # At least 1400 motorcycles (negative for >=)
    ]

    # Coefficients for the bounds of each x_i
    x0_bounds = (0, 750) # Plant 1
    x1_bounds = (0, 750) # Plant 2
    x2_bounds = (0, 750) # Plant 3
    bounds = [x0_bounds, x1_bounds, x2_bounds]

    # Solve the linear programming problem
    result = linprog(c, A_ub=A, b_ub=b, bounds=bounds, method='highs')

    # Check if the optimization was successful
    if result.success:
    # The number of motorcycles to produce at each plant
    motorcycles_to_produce = result.x
    # Total weekly cost
    total_weekly_cost = result.fun
    (motorcycles_to_produce, total_weekly_cost, result.message)
    else:
    (None, None, result.message)

  5. #130
    Join Date
    Dec 2009
    Location
    The Mayonnaisium
    Posts
    11,004
    I should start looking for a new job.

  6. #131
    Join Date
    Nov 2008
    Posts
    10,551
    Yet another reason why I'm so glad I don't actually need a job any more.

  7. #132
    Join Date
    Dec 2005
    Location
    Posts
    16,702
    Quote Originally Posted by PB View Post
    Yet another reason why I'm so glad I don't actually need a job any more.
    + motherfuckin’ 1

    Though it’s hard to imagine AI taking over dealing with wildfire and/or ski patrolling. Probably just another shortcoming on my part.

  8. #133
    Join Date
    Mar 2005
    Location
    Yonder
    Posts
    22,528
    Fuck the coding. Although it is nice.

    I’m stunned that gif can be scanned interpreted and solved, with response in good engrish and then solved in python.

    The crazy thing about the coding are the notes. AI doesn’t need that. But it’s proper coding for a human.
    Kill all the telemarkers
    But they’ll put us in jail if we kill all the telemarkers
    Telemarketers! Kill the telemarketers!
    Oh we can do that. We don’t even need a reason

  9. #134
    Join Date
    Jan 2018
    Location
    gamehendge
    Posts
    1,316
    man this is improving at an insane rate. what the hell do you do to distinguish disinfo and reality. it's literally impossible

    https://twitter.com/Shayan86/status/1758235524957893064

  10. #135
    Join Date
    Apr 2004
    Location
    Three-O-Three
    Posts
    15,666
    It'll be interesting to see how the social media companies handle this, especially for the upcoming elections. At some point, a large majority of what people see in their "news feed" is going to be totally fake and literally unbelievable.

  11. #136
    Join Date
    Feb 2005
    Posts
    19,749
    Quote Originally Posted by smmokan View Post
    It'll be interesting to see how the social media companies handle this, especially for the upcoming elections. At some point, a large majority of what people see in their "news feed" is going to be totally fake and literally unbelievable.
    At some point?
    Is it radix panax notoginseng? - splat
    This is like hanging yourself but the rope breaks. - DTM
    Dude Listen to mtm. He's a marriage counselor at burning man. - subtle plague

  12. #137
    Join Date
    Nov 2008
    Posts
    10,551
    Quote Originally Posted by MakersTeleMark View Post
    At some point?
    Well yeah ..... that point was a while ago.

  13. #138
    Join Date
    Apr 2006
    Posts
    10,127

  14. #139
    Join Date
    Jan 2007
    Location
    Upstate
    Posts
    9,770
    Quote Originally Posted by byates1 View Post
    That’s some crazy shit. Three months ago we were amazed at pics of chick mma fighters. Wtf?

  15. #140
    Join Date
    Dec 2005
    Location
    Posts
    16,702

  16. #141
    Join Date
    Oct 2005
    Location
    Tahoe-ish
    Posts
    3,344
    Ms CE has refused to watch that MB video even though it's been in our feed front and center. Her job is probably a goner in a few years.

    The world is seriously not ready for this stuff and it's going to get really ugly, really quickly.
    ride bikes, climb, ski, travel, cook, work to fund former, repeat.

  17. #142
    Join Date
    Dec 2009
    Location
    The Mayonnaisium
    Posts
    11,004
    Yeah, but it will never be able to clean toilets! Checkmate, AI!

  18. #143
    Join Date
    Dec 2009
    Location
    The Mayonnaisium
    Posts
    11,004
    The most ridiculous part of all this is the widespread readiness to accept AI companies will put meaningful guardrails in place.

  19. #144
    Join Date
    Dec 2012
    Posts
    17,747
    Cheer up people. We'll always need humans to run to HD when the box fan breaks and the computers go down.
    "timberridge is terminally vapid" -- a fortune cookie in Yueyang

  20. #145
    Join Date
    Oct 2003
    Location
    slc
    Posts
    19,080
    "Remember, this is the worst this technology will ever be."

    Hang on to your seats, folks.

  21. #146
    Join Date
    Dec 2007
    Location
    monument
    Posts
    7,452
    Think they'll take us along when the Singularity hits?

  22. #147
    Join Date
    Apr 2004
    Location
    Three-O-Three
    Posts
    15,666
    Quote Originally Posted by Mazderati View Post
    The most ridiculous part of all this is the widespread readiness to accept AI companies will put meaningful guardrails in place.
    Listen to the Joe Rogan podcast with Tristan Harris (of the Social Dilemma), and you'll have absolutely no faith in those companies doing anything right or just for humanity since it all depends on their bottom line. They don't give a fuck.

    And MTM- above I was referring to the percentage of evil/fake/untrustworthy AI-created video that will soon be infiltrating social media, not just general BS content which has been bad for some time. I mean, it has to become an existential threat to social media right? If the amount of fake and straight-up deceptive video hits a critical mass and people stop clicking on it, then they can't continue to serve ad content to the users. But there's really nothing that can be done to stop it...

  23. #148
    Join Date
    Jan 2008
    Location
    truckee
    Posts
    24,703
    I haven't been following this thread so forgive me if this is old news, but piece on the news this afternoon about how AI uses more electricity than crypto, plus a shit ton of water, and it's just getting started. Given that energy is a zero sum game and in the west water is as well--the question is, what will we be willing to give up for AI. That strikes me as a more serious problem than deep fakes and bots taking over the world.

  24. #149
    Join Date
    Jun 2020
    Location
    in a freezer in Italy
    Posts
    7,906
    Quote Originally Posted by smmokan View Post
    Listen to the Joe Rogan podcast with Tristan Harris (of the Social Dilemma), and you'll have absolutely no faith in those companies doing anything right or just for humanity since it all depends on their bottom line. They don't give a fuck.
    100%. Government regulation is urgently needed.


    And MTM- above I was referring to the percentage of evil/fake/untrustworthy AI-created video that will soon be infiltrating social media, not just general BS content which has been bad for some time. I mean, it has to become an existential threat to social media right? If the amount of fake and straight-up deceptive video hits a critical mass and people stop clicking on it, then they can't continue to serve ad content to the users. But there's really nothing that can be done to stop it...
    It's definitely an existential threat to social media, but I don't really see a downside to that. And also to advertising in general. The only thing that going to be trustworthy is direct experience (or - maybe -words on paper), it will short circuit a lot of the "progress" in communications and media that's happened in the last 50 or more years. I'm all for that aspect of it.

  25. #150
    Join Date
    Oct 2003
    Location
    slc
    Posts
    19,080
    It could go the other way if enough people find the fake content *more* compelling than real content, which I think is entirely plausible.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •