Camilo Martin

Results 12 issues of Camilo Martin

Since [require.extensions is deprecated](http://nodejs.org/api/all.html#all_require_extensions), you could add the option of: ``` js var betterRequire = require('better-require')('json xml yaml'); ``` You then could even do this (if it doesn't make you...

Funny your username ends in 404, such a coincidence 😂 So yeah, [the Colab link in the Readme](https://colab.research.google.com/drive/1WIZBHix_cYIGsBKa4phIwCq5qXwO8fRX) leads to a 404. Has the link just changed?

This project is really great, and easy to set up and get started with. So I've once used it do download files, by getting their URLs, but now I'm facing...

I get an error such as: ``` POST http://localhost:55500/sock/069/7ivl2kmx/xhr_send 500 (Internal Server Error) ``` And since this is after a series of hurdles (I think many NodeJS modules are just...

**Motivation** There's AI models that can upscale faces better, such as [GFPGAN](https://github.com/TencentARC/GFPGAN) (which, I just tried running in Windows, and was shocked at how fast it is compared to say,...

This line: ``` python url = "http://youtube.com/annotations/read2?feat=TCS&video_id=" + video_id ``` Should be changed to: ``` python url = "https://www.youtube.com/annotations_invideo?video_id=" + video_id ```

**Description** AQLM ([GitHub](https://github.com/Vahe1994/AQLM), [Paper](https://arxiv.org/pdf/2401.06118.pdf), [Reddit discussion](https://www.reddit.com/r/LocalLLaMA/comments/1al58xw/yet_another_state_of_the_art_in_llm_quantization/)) is a novel quantization method that focuses on 2-2.5 bit and claims to surpass [QuiP#](https://cornell-relaxml.github.io/quip-sharp/) and allows for a 70b to run on a...

enhancement

I solved "fetch json" like this: ``` js var qhttp = require('q-io/http'); qhttp.read('http://localhost:1337') .then(JSON.parse) .then(console.log) .done(); ``` Is it more straightforward? Or a bad practice? For comparsion, here's the official...

This is written on the exercise description: > **Bonus** > > Try swapping your rejection handler from console.log to throwMyGod. > _Your program_ **_will now throw an exception**_ _in the...

Having such a huge-ass `.mmdb` file in the `/test` dir bloats the package from < 300**kb** to > 29**mb**. That's **over 10000% increase in size** for something that _virtually nobody...