Earlier quoted context omitted.
Lots of follow-ups, here is the transcript (warning, too much bla bla). i was feeding the file to gpt4 slowly because i was hitting its input limits: https://chat.openai.com/share/23db424d-7307-46da-913f-d45cdc...
Have you tried ChatGPT Code Interpreter aka Advanced Data Analysis mode? That's the thing that can write and then execute Python code against files you upload to it. I've had great results using it to decipher weird binary formats, since it can try things out and iterate on them.
Email obfuscation rendered almost ineffective against ChatGPT
181–190 of 204 posts
Re: Email obfuscation rendered almost ineffective against ChatGPT
#182No large-scale email scraper has the budget necessary to run the content it scrapes through a LLM. So as far as real-world goes, nothing changes: the .2 cents it would cost to run ChatGPT on a page to extract potentially obfuscated emails would cost magnitudes more than it could ever bring in revenues. Regarding the examples provided, there is nothing there that a simple regex couldn't achieve, so I don't really see…
Re: Email obfuscation rendered almost ineffective against ChatGPT
#183Re: Email obfuscation rendered almost ineffective against ChatGPT
#184Re: Email obfuscation rendered almost ineffective against ChatGPT
#185Earlier quoted context omitted.
How would they "look into how it was generated"?
You train your model, publish it on huggingface and then write in the README: > This is how I made this model: Design your tasks to be repeatable and small steps, call the OpenAI API and log all requests/responses. > Filter out any bad responses and take a representative sample of the data you have collected from OpenAI,and train a Mistral or Llama2 model with the request/response pairs. Just one example.
Re: Email obfuscation rendered almost ineffective against ChatGPT
#186Earlier quoted context omitted.
Some people set filterkeyword to name-of-business, to know who sold them out if they start receiving spam on that address.
I use the + technique, but I've been doubtful of its effectiveness. It's easy enough to remove the text after the +.
Re: Email obfuscation rendered almost ineffective against ChatGPT
#187Earlier quoted context omitted.
You train your model, publish it on huggingface and then write in the README: > This is how I made this model: Design your tasks to be repeatable and small steps, call the OpenAI API and log all requests/responses. > Filter out any bad responses and take a representative sample of the data you have collected from OpenAI,and train a Mistral or Llama2 model with the request/response pairs. Just one example.
I'm not competing with OpenAI in any sense of the word.
Re: Email obfuscation rendered almost ineffective against ChatGPT
#188No large-scale email scraper has the budget necessary to run the content it scrapes through a LLM. So as far as real-world goes, nothing changes: the .2 cents it would cost to run ChatGPT on a page to extract potentially obfuscated emails would cost magnitudes more than it could ever bring in revenues. Regarding the examples provided, there is nothing there that a simple regex couldn't achieve, so I don't really see…
You do realize how possible it is to fine tune a task like this (along with a hundred others in a similar vein) on a tiny model you can scale on your own hardware? I've run hundreds of millions (150m so far in a couple of weeks of non-continuous running as I tweaked things) of tokens through my 2x 3090 with a 13b llama2 model I fine tuned on tasks like: summary, knowledge graph generation, writing using the knowledge…
Re: Email obfuscation rendered almost ineffective against ChatGPT
#189No large-scale email scraper has the budget necessary to run the content it scrapes through a LLM. So as far as real-world goes, nothing changes: the .2 cents it would cost to run ChatGPT on a page to extract potentially obfuscated emails would cost magnitudes more than it could ever bring in revenues. Regarding the examples provided, there is nothing there that a simple regex couldn't achieve, so I don't really see…
You do realize how possible it is to fine tune a task like this (along with a hundred others in a similar vein) on a tiny model you can scale on your own hardware? I've run hundreds of millions (150m so far in a couple of weeks of non-continuous running as I tweaked things) of tokens through my 2x 3090 with a 13b llama2 model I fine tuned on tasks like: summary, knowledge graph generation, writing using the knowledge…
Re: Email obfuscation rendered almost ineffective against ChatGPT
#190Earlier quoted context omitted.
You do realize how possible it is to fine tune a task like this (along with a hundred others in a similar vein) on a tiny model you can scale on your own hardware? I've run hundreds of millions (150m so far in a couple of weeks of non-continuous running as I tweaked things) of tokens through my 2x 3090 with a 13b llama2 model I fine tuned on tasks like: summary, knowledge graph generation, writing using the knowledge…
How does one efficiently learn how to do such things, and what kinds of problems such approaches are fruitful for? I find there to be a giant gap in learning about this stuff between material that boils down to "use magic words and system prompts to improve results from one of the big models" and "how do LLMs work from first principles". I still haven't found a great resource that covers this middle ground, which see…