Y'all heard about ChatGPT yet? AI instantly generates question answers, entire essays etc.

Kasper KArr

Go-getter from the Lower East Side
Joined
Dec 17, 2014
Messages
4,363
Reputation
1,772
Daps
10,978
WCnpVLV.png

8hFsK1O.png
Good looking bro. I sincerely hope you have success with it. Have you sent it? If so, by any chance you sent it via mail instead of email?
 

bnew

Veteran
Joined
Nov 1, 2015
Messages
62,442
Reputation
9,478
Daps
171,119
this shyt is ridiculous. With this and github copilot, coding efficiency is just :banderas:
Facts. Plus you can translate code in order to learn new programming languages.

For example:

"Convert this Javascript code into Rust:"
Input:
Code:
function makeBankAccount() {
  // this one is private
  let balance = 0;

  function getBalance() {
    return balance;
  }

  function setBalance(amount) {
    balance = amount;
  }

  return {
    getBalance,
    setBalance
  };
}

const account = makeBankAccount();
account.setBalance(100);

Output:
Code:
fn make_bank_account() -> BankAccount {
    let balance = 0;

    BankAccount {
        balance,
        get_balance: get_balance,
        set_balance: set_balance,
    }

    fn get_balance() -> i32 {
        balance
    }

    fn set_balance(amount: i32) {
        // ... validate before updating the balance
        balance = amount;
    }
}

struct BankAccount {
    balance: i32,
    get_balance: fn() -> i32,
    set_balance: fn(i32),
}

let account = make_bank_account();
account.set_balance(100);

I've had this thing write, refactor, break down, etc. some magnificent code, with unit and integration tests backing them up :banderas:


Today is the Llama moment for coding!

StarCoder-15B reaches 40.8% on HumanEval benchmark, beating the 30x bigger PaLM.

Coding holds a very special place in NLP. Most software in the world has AI-friendly APIs. LLMs good at coding will master the digital tools, greatly improve productivity, and some day become full-blown autonomous agents.

StarCoder's training corpus includes permissively licensed data on GitHub and over 80 programming languages. VSCode integration is available. The open-source LLM community is advancing at superhuman speed












 
Joined
Jan 1, 2014
Messages
3,001
Reputation
-1,632
Daps
7,028
Y’all start using the app yet? It came out earlier this month
Chat gpt-4?

I’ve been using perplexity. I think perplexity is good for like a search engine eventhough it’s built on chat gpt 4. I think chat gpt is better for detailing information.
 

Manolo

Superstar
Joined
Mar 10, 2017
Messages
2,146
Reputation
1,111
Daps
12,726
Reppin
Brooklyn
Chat gpt-4?

I’ve been using perplexity. I think perplexity is good for like a search engine eventhough it’s built on chat gpt 4. I think chat gpt is better for detailing information.
 
Top