Recent comments in /f/MachineLearning

Baturinsky OP t1_j3bh9kb wrote

Thanks.

I think people vastly underestimate the possibilities of use of ChatGPT-like model. If it has learned from the entire(-ish) interned scrapped, it's not just language model, it's the model of entire human kowledge avaialbe on the internet, neatly documented and cross-referenced for very easy use by algorithms. Currently it's used by quite simple algorithms, but what if it will be algorithms that try to use that data to write itself, btw? Or something else we don't forese yet.

And I don't even know how it's possible to contain the danger now, as algorithm for "pickling" internet like that is already widely known, so it could be easily done by anyone with budget and internet access. So, one of necessary measures could be switching off the internet...

1

brucebay t1_j3bb7t2 wrote

This seems to be a very ambitious project, as there are several ML projects that have very obscure dependencies that dont't work out of the box. This is especially true for older repos. I would personally be very interested at a reasonable price level (compatible to vast ai or runpod) to check out some repos without hassling with setup.

​

But I'm just a hobbyist. In a professional environment, I don't know if I would be interested in an automated ML setup for a long term development/production solution. My company uses H2O, DataRobot, some IBM solution, (and another one but forget the name). They have some attractive features for everyday data analysts, but mostly limits the advanced users. In a corporate environment, your solution seems to fit between an expert developer who does all work, and an AutoML solution that makes most of the work.

​

I think it is great idea for rapid experimentation for middle-high end development . So I suspect your target audience for those features are going to be either educational institutions, or any kind of research centers, be it military or commercial. I hope it will have enough interest to support you financially. Good luck with your company.

​

ps: if you can find a way to let users download the environment where the target repo runs (or provide a tool to mirror) for local development (may be at an extra cost) it would be very useful feature for most people. I would even pay for such a stand-alone software.

2

tareumlaneuchie t1_j3ba1km wrote

If you want a model, you will need to think about input variables... This where it gets complicated.

As it minima detection, there are many ways this can be achieved, for example: look at a sign change in viewers per unit of time? Or if your data is evenly sampled, compute the difference between viewers at t[n+1] and t[n], and see whether the sign change is stable (no flip-flop) over say 5 or 10 samples?

To get a robust detection you will need to play with your data. A lot.

2

C0R0NA_CHAN OP t1_j3b5hum wrote

Agreed, i thought of this too. But say, i want to scale up and detect an ad in video based on intrest drop then it will be difficult to achieve that through local minima right? Interest at a particular second might drop due to boring content right? What if I want model to detect intrest drop only when ad occurs?

Normally there'll be a max drop in intrest during an ad for sure. But we can't use global minima technique here because normally people skip off end parts of video so that might actually be the biggest drop and we don't want that.

−1

idonthaveenoughchara t1_j3b4q6p wrote

Does anyone here happen to have a trained GANILLA model and would you be able to translate a few images for me into stylised images? I’m making a book for my niece’s 5th birthday and would love to have the images of our holiday as if an illustrator drew them. I would do this myself but my laptop has unfortunately given up on me - any help or advice would also be appreciated :)

1

Atom_101 OP t1_j3b2vmr wrote

From what I read it doesn't package cuda, only python dependencies. Were you able to get cuda inside your pyinstaller executable? Also is it even possible to package cuda inside an executable? Cuda needs to go into a specific folder right? And it needs to be added to the path variable for pytorch or other libraries to see it. For example in Linux it goes inside /usr/local/cuda

2

Atom_101 OP t1_j3b291o wrote

It seems you can't lock a container. If the end user has root access they will be able to ssh into the container and see your source code. The solution seems to be to obfuscate your code using something like pyarmor, so that even if the user accesses the docker image, they won't easily figure out your source code.

2

CyberDainz t1_j3ayd88 wrote

Because each project has its own configuration.

If you make a framework out of this, you get a horror like Bazel. And you will spend time learning how to work with Bazel. But what for? Building a project is a simple operation: create folders, some files, download, unzip, call Popen with a certain env, clean up the __ pycache __ folder at the end, and archive it - that's it! The project is ready.

All you need to do is spend 20 minutes and figure out how WindowsBuilder.py works and adapt it to your project.

WindowsBuilder.py is standalone and requires only python 3.

5

CyberDainz t1_j3awj2p wrote

look at my project https://github.com/iperov/DeepFaceLive

I made a builder to create an all-in-one standalone folder for Windows that contains everything to run a python application containing cuda runtime. Release folder also contains portable VSCode that has already configured project to modify only folder's code. No conda, no docker and other redundant shit.

Builder located here https://github.com/iperov/DeepFaceLive/blob/master/build/windows/WindowsBuilder.py and can be expanded to suit your needs.

4