Jonathan Li

Results 30 comments of Jonathan Li

Doing more research, I found that Common Intermediate Language (CIL) looks promising. It is the same bytecode used by c#. I could compile into CIL then run it with the...

I have little expertise in the compiler world, although you could compile to LLVM, directly to assembly (extremely ambiguous), or transpile to C++? Looking at [Chirp](https://github.com/binkiklou/Chirp), it looks like its...

One thing I don't see is, why use Chirp? Why not C++? C++ is probably faster (because of more assembly optimizations) and runs on almost every OS. Most people already...

Actually, making a compiler in python is not a bad idea, because compile time may be bad, but runtime would be very fast. I'm +1 for writing a compiler or...

Yeah, i could write a compiler in python, although to what language, assembly? I don't think assembly is a good idea because its too hard to scale, and will become...

I may use python's [llvmlite module](https://github.com/numba/llvmlite), although I would have to toy around with it a bit and a stable realese may not come out for a while. Of course...

What do you mean "preprocessor"? If I made neutron JIT compiled, I would have to completely rewrite all the built-in modules (because they use inline python code), which is fine.

Yes, I may actually make Neutron run on JVM (the Java runtime) or CIL (the C# runtime), but I think llvmlite might work as well. It turns out llvmlite is...

Have you run the backend server in the `ai` folder? Alternatively, you can try the model on [huggingface](https://huggingface.co/spaces/jonathanli/youtube-sponsor-detection/).

@JustinLin610 following up on this—this would be super helpful for some ablations we are trying to run. Is there anywhere we can find this ckpt?