Deine gelibte napalmherstellende Oma
>be chat gpt
>10,000 nvidia gpus
>every query uses enough watts to power a small asian village
>costs a million a day
>can't say n****r
or
>5 year old human
>eats half a cheeseburger and fries
>can say anything you teach it to
"AI is a hyped up meme
Way way way too expensive to run (the good models like gpt4) Moore's law is dead, new processors won't fix the issue at hand. It's all a big jewish scheme to rake in shekels by investors. Chat GPT is nothing more but a glorified search engine/calculator/text generator. They lure you in with articles like "OH MUH GAWD SPARKS OF AGI? SPARKS OF SENTIENCE? INVEST NOW GOY!"
AI will die, just like the NFT meme died, just like the meta meme died. It will have it's niche, but it won't be "muh next industrial civilization" change. Basically nothing more than a smarter alexa. It won't replace jobs for a long time because it's more expensive to run something with GPT4 than it is to hire an actual human for it, and humans are still a thousand fold more smarter and capable than any AI currently is."
"Chat GPT is nothing more but a glorified search engine/calculator/text generator."
"Chat GPT is nothing more but a glorified search engine/calculator/text generator."
"Chat GPT is nothing more but a glorified search engine/calculator/text generator."
Zitat von: Giovanni
Zitat von: Hexley
Zitat von: Giovanni
Zitat von: Giovanni
Zitat von: MächtigerMauzer
Zitat von: BigBANG
Zitat von: BigBANG
Zitat von: Giovanni
Hab fürn Tschobb jetzt Mal versucht ein paar Prozesse zu automatisieren anstatt weiter Excel-Zellen rumzuschieben und hier rumzuhängen. Hab natürlich kaum Ahnung von Programmieren und erst Recht nicht vom Programm, also hab ich alles den Bot schreiben lassen. Kam natürlich auch viel Scheiße raus aber der Kot sitzt. Werde vermutlich in Kürze meinen CV updaten und schreiben "Expert in Python" und dann weiter mit dem Bot dummschwätzen. Mal schauen wie weit ich komm - Catch me if you can.
Zitat von: BigBANG
Theoretisch könnte man mit so einer KI, Leute die immer alles ins Internet rotzen, innerhalb von Sekunden doxen.
Zitat von: Giovanni
Zitat von: BigBANG
#include "wrapper.h"
// #define BOOST_PYTHON_STATIC_LIB
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
namespace py = boost::python;
class WrapperPython : public Wrapper
{
public:
void wrapSetCallback(py::object fct)
{
Wrapper::setCallback(
[fct](const std::vector<std::pair<std::string, int>>& items)
{
PyGILState_STATE gstate = PyGILState_Ensure();
fct(items);
PyGILState_Release(gstate);
});
}
};
BOOST_PYTHON_MODULE(pycppcallable)
{
py::class_<std::vector<std::pair<std::string, int>>>("VectorPair")
.def(py::vector_indexing_suite<std::vector<std::pair<std::string, int>>>());
py::class_<WrapperPython>("Wrapper", py::init<>())
.def("append_item", &WrapperPython::appendItem)
.def("set_callback", &WrapperPython::wrapSetCallback)
.def("use_callback", &WrapperPython::useCallback);
}
#!/usr/bin/env python3
import pycppcallable
if __name__ == '__main__':
t = pycppcallable.Wrapper()
def f(items):
for k,v in items:
print(f'String: {k} Id: {v}')
t.append_item('Eins', 1)
t.append_item('Zwei', 2)
t.set_callback(f)
t.use_callback()
TypeError: No Python class registered for C++ class std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, int>