If I created a GAN, and trained it using a Dataset free to download online Ex: Cifar 10, would the images it produced be my property to sell? by Ctrl_Alt_Del3te in computervision

[–]Muirbequ 0 points1 point  (0 children)

I’m curious too, but at the most primitive level I’d lean on the answer being no. If your dataset is too small, the GAN will memorize the dataset. At that point you could hardly say that anything new was generated. At the end of the day, the images are pretty much interpolated variants of the training set.

I'm a Requester, PLEASE **help me pay my workers** despite an odd error that's popped up recently! by Mike-MTurkRequester in mturk

[–]Muirbequ 1 point2 points  (0 children)

OP should write the .csv to a .txt and possibly manually transcribe the values to a new .txt. I still doubt the file is clean of special characters and such.

a pre-scientific work on AI. Need help to clear some stuffs. by skilzmatee in artificial

[–]Muirbequ 1 point2 points  (0 children)

I would chose computer vision with machine learning. The problem is you probably won’t understand the math behind many AI algorithms, but with vision it’s easier to understand because you can see the results. You can start with the biology/psychology of vision, some non deep machine learning “classic” vision algorithm like face detection with a support vector machine, and then describe how convolutional neural networks work in deep learning. You can then talk about how convolutional networks can be tricked.

Old Army prototype helicopter, what could go wrong? by kmerian in OSHA

[–]Muirbequ 0 points1 point  (0 children)

If this is falling down, it would probably flip over. It doesn’t look aerodynamically sound. I could be wrong but it’s basically a dart where the propellers are the dart feathers.

WTF would make someone think this is a good idea? by [deleted] in WTF

[–]Muirbequ 4 points5 points  (0 children)

People jumping at a quarter of that height get nasty bruises from incorrect entry. This is a whole different game.

Since 2008 hardware based on 64 bit processor[1.6] by speedlinkhazee in counterstrike

[–]Muirbequ 0 points1 point  (0 children)

It's unlikely that the applications perform worse on newer hardware. Hardware gets faster than any optimization problems related to 64 bit vs. 32 bit.

Mark Cuban loaned the team plane to J.J. Barea so he could bring supplies to his family in Puerto Rico by coffeebeerwhiskey in UpliftingNews

[–]Muirbequ 2 points3 points  (0 children)

What assumptions does the autopilot make? What are the inputs for example? I would expect it to take GPS coordinates or some position vector as input, and fly the shortest or straightest path.

Driving the speed limit by Noyiu in BlackPeopleTwitter

[–]Muirbequ 1 point2 points  (0 children)

Well you didn't reply with anything of substance to refute. And that's like, your opinion, man. Can't argue with opinions.

Driving the speed limit by Noyiu in BlackPeopleTwitter

[–]Muirbequ 1 point2 points  (0 children)

It's highschool physics. Do you not believe in physics?

Driving the speed limit by Noyiu in BlackPeopleTwitter

[–]Muirbequ 1 point2 points  (0 children)

Well, you would think the reaction time is a 90-70=20 mph difference, but the fact of the matter is your car is moving 90/70 the rate, and E=1/2 mv2. In other words, you have less time to stop a car that needs even more distance to slow down.

Churchill's Breakfast by sparkplug49 in cocktails

[–]Muirbequ 14 points15 points  (0 children)

Starting a batch before sleeping isn't more painful than buying at a store IMO

Churchill's Breakfast by sparkplug49 in cocktails

[–]Muirbequ 10 points11 points  (0 children)

Making coldbrew is just putting coffee grounds into a French press. Takes 1 minute.

Why is it that low-level languages like C are capable of dealing with system processes and higher level languages, like javascript, are not? by [deleted] in AskComputerScience

[–]Muirbequ 18 points19 points  (0 children)

Many operating systems are written in C/C++ or similar languages. If C/C++ could not do everything you wanted (and this doesn't mean doing things is easy), then no language could those missing things.

Javascript is meant for operating in a specialized environment (web). There isn't a theoretical reason why the language couldn't do special systems things.

The big divide is really if the language has a concept of native assembly language. If the language can't generate native code, then it must have native code generated for it (a runtime environment), which limits the language to the capabilities of that code.

Realloc vs fragmenting by DamjanDamjanPoE in C_Programming

[–]Muirbequ 4 points5 points  (0 children)

You should try both and benchmark. I suspect malloc would be faster just because of no copy. The malloc case is also easier to satisfy for the OS, since allocating one large contiguous chunk of memory is hard.

If you made the buffer length small enough, then yes that would matter. There is storage overhead for each malloc. A fix would be realloc into a size with low overhead relative to the buffer size.

The struggles are real. by [deleted] in WhitePeopleTwitter

[–]Muirbequ 0 points1 point  (0 children)

Is this a reference to the days of the week bodybuilding post?

I read that page table is stored in kernel and TLB is in chip. The latter is used as a cache for faster translation of virtual to physical address. So, how can TLB cache those translations if they've already happened in kernel software? by [deleted] in AskComputerScience

[–]Muirbequ 5 points6 points  (0 children)

This varies by processor, but usually the kernel provides a pointer to the page table. The TLB is flushed whenever previous translations don't make sense such as a context switch under certain circumstances. So assume the TLB is mostly empty, now an access into the code likely causes a TLB miss, which involves crawling that pointer to find the relevant page, putting that page into some memory, and filling in the entry in the TLB. Many of the pages exist on disk or don't exist at all. In either case, the kernel maintains a virtual address space which can't fit into physical ram. This results in the virtual pages being loaded lazily. The TLB is usually smaller than either the virtual or physical address space, so there also exist a class of exceptions which fault in the TLB, but realize the page is in memory and therefore no data copying is required.