This reads like something that a site using AdSense would use. 2.5 is interesting > Your information, including Personal Data, is processed at the Company's operating offices and in any other places where the parties involved in the processing are located. It means that this information may be transferred to — and maintained on — computers located outside of Your state, province, country or other governmental jurisdi…
I was just talking to a colleague about the need for a service like this. Their pricing is much cheaper than self-hosting on AWS (ml.g5.48xlarge, needed to run 70B Lamma2, is $20.36/hr). But the TOS makes it completely unviable. If someone can figure out how to standup self-hostable, fine-tuneable models with a serverless architecture, it could be a game changer (allowing devs to use something other than OpenAI/Claud…
Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
11–20 of 23 posts
Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#12I can't recall hearing about this website before. In fact, only one link to this website has ever gained any traction here[0], and it wasn’t much. Why is it surprising that a random website offering AI services might not have a great privacy policy? I feel like there must be dozens of websites like this that offer hosting of Llama2 by now. My default assumption would be that they’re not as trustworthy as OpenAI, who…
Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#13If somebody hasn't tried running LLMs yet, here are some lines that do the job in Google Colab or locally. The !s are for Colab, remove them for local terminal. The script downloads the ca. 8GB model, but Llama.cpp can run offline afterwards.
! git clone https://github.com/ggerganov/llama.cpp.git
! wget "https://huggingface.co/TheBloke/CodeLlama-7B-GGUF/resolve/main/codellama-7b.Q8_0.gguf" -P llama.cpp/models
! cd llama.cpp && make
! ./llama.cpp/main -m ./llama.cpp/models/codellama-7b.Q8_0.gguf --color --ctx_size 2048 -n -1 -ins -b 256 --top_k 10000 --temp 0.2 --repeat_penalty 1.1 -t 8Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#14It's quite easy to opt-out of OpenAI using your data for training. API and ChatGPT Enterprise are private by default. # OpenAI Products and Privacy - ChatGPT Free - trains on your data unless you Opt Out - ChatGPT Plus - trains on your data unless you Opt Out - ChatGPT Enterprise - does _not_ train on your data - OpenAI API - does _not_ train on your data Opt-out link: https://help.openai.com/en/articles/5722486-how-…
You only touch half the problem
Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#15Better privacy might be running Llama2 locally, offline. If somebody hasn't tried running LLMs yet, here are some lines that do the job in Google Colab or locally. The !s are for Colab, remove them for local terminal. The script downloads the ca. 8GB model, but Llama.cpp can run offline afterwards. ! git clone https://github.com/ggerganov/llama.cpp.git ! wget "https://huggingface.co/TheBloke/CodeLlama-7B-GGUF/resolve…
Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#16Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#17> Personal data collected includes user names, text or image prompts, IP addresses, contact information, and more. The data is used for various purposes, such as providing and improving the service, managing user accounts, contacting users, and analyzing data. Personal data may be shared with service providers, third-party vendors, and other business partners. The company retains personal data for as long as necessary and transfers it to locations where data protection laws may differ. The security of personal data is important, although no method of transmission over the internet is 100% secure. The service is not intended for children under the age of 13, and the company does not knowingly collect their personal information. The privacy policy also includes information about links to other websites, changes to the policy, and supplemental terms and conditions for certain regions. For any questions or to exercise privacy rights, users can contact the company via email.
Generated here: https://dstill.ai/hackernews/item/37436498
Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#18Better privacy might be running Llama2 locally, offline. If somebody hasn't tried running LLMs yet, here are some lines that do the job in Google Colab or locally. The !s are for Colab, remove them for local terminal. The script downloads the ca. 8GB model, but Llama.cpp can run offline afterwards. ! git clone https://github.com/ggerganov/llama.cpp.git ! wget "https://huggingface.co/TheBloke/CodeLlama-7B-GGUF/resolve…
If you want the q8 version (which you probably don't), it's `ollama run codellama:7b-code-q8_0`.
Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#19Better privacy might be running Llama2 locally, offline. If somebody hasn't tried running LLMs yet, here are some lines that do the job in Google Colab or locally. The !s are for Colab, remove them for local terminal. The script downloads the ca. 8GB model, but Llama.cpp can run offline afterwards. ! git clone https://github.com/ggerganov/llama.cpp.git ! wget "https://huggingface.co/TheBloke/CodeLlama-7B-GGUF/resolve…
https://huggingface.co/TheBloke/CodeLlama-7B-GGUF describes codellama-7b.Q8_0.gguf as "very large, extremely low quality loss - not recommended"
Re: Llama 2 on togetherAI is as bad of a privacy nightmare as OpenAI
#20Better privacy might be running Llama2 locally, offline. If somebody hasn't tried running LLMs yet, here are some lines that do the job in Google Colab or locally. The !s are for Colab, remove them for local terminal. The script downloads the ca. 8GB model, but Llama.cpp can run offline afterwards. ! git clone https://github.com/ggerganov/llama.cpp.git ! wget "https://huggingface.co/TheBloke/CodeLlama-7B-GGUF/resolve…