Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/16/14 in all areas

  1. https://rstforums.com/forum/87480-dendroid-botnet-full-source-code-php-web-panel-apk-binder-apk-source-read-more.rst https://mega.co.nz/#!vRlX2IAa!qYNzUDiUELsO7530IKvtKj-8Y__i1R0XNFP218aYLRo APK+Panel+Builder Enjoy
    2 points
  2. Envato LINK L-am cumparat si m-am gandit sa fac share aici, poate aveti nevoie de ceva din bundle. ThemeForest LINK: MEGA CodeCanyon LINK: MEGA Graphic River PART 1: MEGA PART 2: MEGA PART 3: MEGA PART 4: MEGA PhotoDune LINK: MEGA VideoHive VideoHive Presenter | VideoHive Handy | VideoHive Forest | VideoHive Broadcast | VideoHive MusicVideo | VideoHive Asstd AudioJungle LINK: MEGA 3DOcean LINK: MEGA ActiveDen LINK: MEGA TUTS+
    1 point
  3. Te rugam frumos sa nu iti exteriorizezi molestarile din copilarie pe acest forum. Mai bine lasi thread-ul asta si te preocupi de altceva. Ai fost moderator, si totusi vorbesti ca si cum ti-ar fi luat banca locuinta. Sfatul meu este sa vizitezi link-ul asta One Laptop per Child si sa te linistesti. Salut!
    1 point
  4. Limbajul tinere, ca nu am cersit bani de laptop amandoi pe acelasi trotuar!
    1 point
  5. The machines are taking over. Or they will, if we keep teaching machines to think for themselves. And we can't seem to stop. Two years back GigaOm's Derrick Harris opined that "it’s difficult to imagine a new tech company launching that doesn’t at least consider using machine learning models to make its product or service more intelligent." And that's true. But engineers at Google, Twitter and new startups have largely been forced to roll their own machine learning libraries and systems. What's been missing are open-source projects that provide essential building blocks for easily embedding machine learning into applications. The Apache Software Foundation has sought to change this with Apache Mahout, and now PredictionIO just raised $2.5 million in an effort to take open-source machine learning even further. I sat down with PredictionIO founder Simon Chan to better understand the market and why open source matters in the complex world of machine learning. Making Machine Learning Simple ReadWrite: You call yourself the “MySQL of prediction.” What does that mean? Simon Chan: Before the birth of MySQL, database management systems (think Oracle, DB2, etc.) were largely inaccessible to many developers and companies. Such systems are complex, expensive and proprietary. MySQL has rewritten the history of the relational database industry. It allows every website and application, regardless of the size, to be powered by a database server. The current world of machine learning is similar to the old days of the database industry. Machine learning is still inaccessible to most companies and developers. The cost of development and maintenance of machine learning infrastructure is extremely high. Companies like Google, LinkedIn and Twitter spend huge amounts of money to recruit data scientists. PredictionIO, as MySQL did to the database industry, can be the machine learning server behind every application. It is 100% open source, developer-friendly and production-ready. RW: Machine learning sounds great, but historically hasn’t worked as advertised, or it's required extensive engineering resources to pull off. What does PredictionIO do differently? SC: We believe that every prediction problem is unique; therefore, most black box machine learning solutions don’t work as planned. PredictionIO makes the life of developers easier by handling a lot of heavy lifting, such as algorithm evaluation and distributed deployment. It also comes with a number of built-in predictive engines for developers to use right away. But more importantly, PredictionIO is a customizable open-source product. This means that developers can optimize and improve the predictive engines whenever they need to. Continuare articol aici
    1 point
  6. facepalm, nu poti scrie despre securitate fara sa sti programare
    1 point
  7. N-ai cum sa acoperi 3 domenii diferite. Axeaza-te pe ce sti tu sa faci mai bine... P.S: Tu vrei sa faci content de calitate pe un blog free?
    1 point
  8. Dac? nu e prea old thread-ul, o idee de optimizare ar fi: void bubblesort(std::vector<int>& a) { bool sortat; size_t k = a.size() - 1; do { sortat = true; for (size_t i = 0; i < k; i++) { if (a[i] > a[i + 1]) { int aux = a[i]; a[i] = a[i + 1]; a[i + 1] = aux; sortat = false; } } } while (!sortat); }
    1 point
×
×
  • Create New...