HackerTrans
トップ新着トレンドコメント過去質問紹介求人

heycosmo

no profile record

コメント

heycosmo
·昨年·議論
I have a history of publishing in computational physics. But that's beside the point. I have an exciting new result in digital signal processing and I would like to get retroactively funded for the work. If researchers can get funded for future work, why not award past work that comes with a guaranteed outcome?
heycosmo
·昨年·議論
6-7 figures. IDK if this is realistic, but it seems reasonable to me considering the cost and risk involved in reproducing this work from scratch (salary/benefits/overhead for a research group or individual; no guarantee of success), and the impact of the work (admittedly I am biased to think it's important). I have seen 6- to 7-figure gov't grants for projects (in a similar space) that I guarantee are lower impact.
heycosmo
·昨年·議論
Certainly. It also helps a resume. And if that is the only value to the work, then so be it. But there is a reason why R&D departments and universities publish AND protect generated IP. They want returns on investment. In my case, I invested in myself. Why shouldn't I play this game?
heycosmo
·昨年·議論
Yes, of course. When I write "pay me to publish" I don't mean "cover the costs of publication", I mean "fund my work".
heycosmo
·昨年·議論
I am an independent researcher currently funded by a part-time job and a very supportive spouse. I play with algorithms and have discovered a new fast Fourier transform and a neural network growth+training algorithm that doesn't use gradient descent. Ideally, some benefactor would pay me to publish my findings and code, for the good of public knowledge, but my attempts to find such funding have fallen flat. Kind of funny that researchers can get funding for future work (without guarantees) but I can't find funding for an interesting discovery that is already done (there are issues with verification of the work, but it seems like a short-term NDA would take care of that).

I have resorted to partnering with a law firm, who, for a large cut of any revenue, will do all the IP work and "marketing" (i.e. contacting legal departments at companies that might be interested in the algorithm). This is not ideal, but is so far the only path presented that may help me recoup wages lost by not working full-time for several years. I figure if I retain control of the IP (and make money through licensing), I can make sure scientists and researchers have free usage rights.

If the IP thing works, I can hopefully continue independent research. If it works well, I hope to self-fund more research without the IP shenanigans. Otherwise, it is back to full-time employment.
heycosmo
·2 年前·議論
I would like to see solutions (for professionals) that ditch the whole generative part altogether. If it's so good at finding references or identifying relevant passages in large corpora, just show the references. As you said, the "answer" only entices laziness and injects uncertainty.
heycosmo
·2 年前·議論
I'm mostly thinking about creations that are already done and can somehow be vetted, either by demo, samples, trial version, or by a reputable reviewer that gets a sneak peek.
heycosmo
·2 年前·議論
I think I agree with you, but democratizing distribution is still orthogonal to the piracy problem. On the one hand, I'm more likely to pay an artist if the only official way I can get their art is to purchase from their website. On the other hand, the first digital download from an artist's website may go right to a torrenter, or youtube. Is self-distribution accompanied by the task of chasing youtube takedowns? Sounds not fun.

A pre-release payment directly addresses the issue of piracy. Piracy just doesn't exist if the content isn't out there.
heycosmo
·2 年前·議論
> Source: I’ve been thinking about this “everything is released for free once the artist is paid” approach for a while...

You should start a "media label" then. Take a cut of the threshold payment for (1) vetting and reviews of unreleased art, (2) distribution costs of the digital media, and (3) legal assistance for artists against copyright trolls.
heycosmo
·2 年前·議論
I think many proposed solutions to the creator compensation problem end up glossing over a fundamental difficulty: once an easily-distributed work (like anything digital) is in a consumable state (and thus copy-able), it becomes basically free.

The idea that $10 for a digital copy of an album that is already on youtube (or a friend's harddrive) should be a viable business model is weird to me in this day and age.

I have recently been wondering about a threshold-based "media economy" where creators don't actually show us anything (except for clips or samples or low-res versions, etc) until they are guaranteed a certain amount of income. It's basically kickstarter. A musician makes an album, goes on kickstarter and asks for $10,000 to release it. Once $10k is reached, the songs go up on a server, or are released on bandcamp, spotify, or any of the usual channels. Additional money beyond the threshold can be made, but it will be as difficult as it is now. But they have already reached $10k (set by them) so everyone can feel good that the musician has earned what they feel they deserve.

I'm sure there are many problems with this. For one, many artists aren't creating just for money. They want to show us their creations, and with a threshold, they would have to hold back until it is reached (in the case of musicians, they might not even be able to play a new song at a show until the threshold is reached, b/c smartphones).

There may be a critical mass problem, too. If two artists are similar and one releases immediately while the other waits for the threshold payment, the latter may drift into obscurity. There must be some allure to the withholding, though?

What other problems kill this approach?

Could it work for open source software, too? Make your thing, don't share it. Demo it, ask for the release payment, then put it on github.
heycosmo
·3 年前·議論
I look at this thing and can't help thinking "where will someone set down their coffee mug when their hands are full and they need to open the door?" There isn't a flat surface on it.
heycosmo
·3 年前·議論
The time stretch algorithm is implemented in https://github.com/audacity/audacity/blob/master/libraries/l... particularly functions _time_stretch and _process_hop. It looks to me like a classic phase vocoder with vertical phase coherence (c.f. https://en.wikipedia.org/wiki/Phase_vocoder).

The basic idea is this. For a time-stretch factor of, say, 2x, the frequency spectrum of the stretched output at 2 sec should be the same as the frequency spectrum of the unstretched input at 1 sec. The naive algorithm therefore takes a short section of signal at 1s, translates it to 2s and adds it to the result. Unfortunately, this method generates all sorts of unwanted artifacts.

Imagine a pure sine wave. Now take 2 short sections of the wave from 2 random times, overlap them, and add them together. What happens? Well, it depends on the phase of each section. If the sections are out of phase, they cancel on the overlap; if in phase, they constructively interfere.

The phase vocoder is all about overlapping and adding sections together so that the phases of all the different sine waves in the sections line up. Thus, in any phase vocoder algorithm, you will see code that searches for peaks in the spectrum (see _time_stretch code). Each peak is an assumed sine wave, and corresponding peaks in adjacent frames should have their phases match.