Remember me
▼ Content

SELF-HOSTED CHATBOT FOCUSES ON PRIVACY


SELF-HOSTED CHATBOT FOCUSES ON PRIVACY30-07-2023 18:59
HarveyH55Profile picture★★★★★
(5197)
Link

The link provides some charts, and clickable links to more details...

Large language models (LLMs) have been all the rage lately, assisting from all kinds of tasks from programming to devising Excel formulas to shortcutting school work. They're also relatively easy to access for the most part, but as the old saying goes, if something on the Internet is free the real product is you (and your data). Luckily there are ways of hosting LLMs on your own to avoid your personal data getting harvested, as well as taking advantage of open-source solutions, but building these systems takes a little bit of effort. [Stephen] and a team from Mozilla walk us through this process and show us a number of options currently available.

Working from the ground up, the group first decides on hosting, which (unsurprisingly) involves using Mozilla hosting services. The choice of runtime environment was a little bit more challenging. The project was time constrained, so they looked at two options here: Hugging Face and llama.cpp. Eventually deciding to move forward with llama.cpp largely due to its ability to run on more consumer-oriented hardware (especially Apple silicon) and the fact that it doesn't need a powerful GPU, the next task was to choose the model. Settling on the LLaMa model that Facebook recently open-sourced, this model works well with the runtime environment and is essentially the only one that does.

From there, the team at Mozilla wanted to make sure their chat bot would be able to provide other Mozilla employees with information more readily pertinent to their jobs, so they trained their model with some internal Mozilla data as well as other more generic information. This doesn't mean the job is done, though, there are a number of other factors that went in to designing this system before it was finally complete. Even then, since they built this in a week it's not perfect; there are some issues with non-permissive licensing of some of the components and many of the design choices may not have been ideal. It's impressive what's out there if you're hosting your own system, though, and while this might be a little more advanced for a self-hosted project, take a look at some other more beginner-friendly projects you can try if you're just starting out on the self-hosted path.


Little scary how quick a team can take a recently released open-source chatbot, and have it up and running on their own hardware. Took them just a week. Tend to wonder how far this is going over the next year or two. Obviously AI based customer service is likely, since for many cases, they aren't very helpful anyway. But, a company could easily train an AI with all the relevant company and product information. Current customer service reps are given a script to follow, and just transfer to another rep, if they can't resolve the issue. Would really reduce the need for human staff, least those that are text base. Voice recognition isn't perfect yet, but speech synthesis is pretty good. Lot of website might be interested in adding a chatbot to help sell products.
30-07-2023 19:39
SwanProfile picture★★★★★
(5725)
HarveyH55 wrote:
Link

The link provides some charts, and clickable links to more details...

Large language models (LLMs) have been all the rage lately, assisting from all kinds of tasks from programming to devising Excel formulas to shortcutting school work. They're also relatively easy to access for the most part, but as the old saying goes, if something on the Internet is free the real product is you (and your data). Luckily there are ways of hosting LLMs on your own to avoid your personal data getting harvested, as well as taking advantage of open-source solutions, but building these systems takes a little bit of effort. [Stephen] and a team from Mozilla walk us through this process and show us a number of options currently available.

Working from the ground up, the group first decides on hosting, which (unsurprisingly) involves using Mozilla hosting services. The choice of runtime environment was a little bit more challenging. The project was time constrained, so they looked at two options here: Hugging Face and llama.cpp. Eventually deciding to move forward with llama.cpp largely due to its ability to run on more consumer-oriented hardware (especially Apple silicon) and the fact that it doesn't need a powerful GPU, the next task was to choose the model. Settling on the LLaMa model that Facebook recently open-sourced, this model works well with the runtime environment and is essentially the only one that does.

From there, the team at Mozilla wanted to make sure their chat bot would be able to provide other Mozilla employees with information more readily pertinent to their jobs, so they trained their model with some internal Mozilla data as well as other more generic information. This doesn't mean the job is done, though, there are a number of other factors that went in to designing this system before it was finally complete. Even then, since they built this in a week it's not perfect; there are some issues with non-permissive licensing of some of the components and many of the design choices may not have been ideal. It's impressive what's out there if you're hosting your own system, though, and while this might be a little more advanced for a self-hosted project, take a look at some other more beginner-friendly projects you can try if you're just starting out on the self-hosted path.


Little scary how quick a team can take a recently released open-source chatbot, and have it up and running on their own hardware. Took them just a week. Tend to wonder how far this is going over the next year or two. Obviously AI based customer service is likely, since for many cases, they aren't very helpful anyway. But, a company could easily train an AI with all the relevant company and product information. Current customer service reps are given a script to follow, and just transfer to another rep, if they can't resolve the issue. Would really reduce the need for human staff, least those that are text base. Voice recognition isn't perfect yet, but speech synthesis is pretty good. Lot of website might be interested in adding a chatbot to help sell products.


Yea, so what? Is there a point?


IBdaMann claims that Gold is a molecule, and that the last ice age never happened because I was not there to see it. The only conclusion that can be drawn from this is that IBdaMann is clearly not using enough LSD.

According to CDC/Government info, people who were vaccinated are now DYING at a higher rate than non-vaccinated people, which exposes the covid vaccines as the poison that they are, this is now fully confirmed by the terrorist CDC

This place is quieter than the FBI commenting on the chink bank account information on Hunter Xiden's laptop

I LOVE TRUMP BECAUSE HE PISSES OFF ALL THE PEOPLE THAT I CAN'T STAND.

ULTRA MAGA

"Being unwanted, unloved, uncared for, forgotten by everybody, I think that is a much greater hunger, a much greater poverty than the person who has nothing to eat." MOTHER THERESA OF CALCUTTA

So why is helping to hide the murder of an American president patriotic?


It's time to dig up Joseph Mccarthey and show him TikTok, then duck.


Now be honest, was I correct or was I correct? LOL
31-07-2023 00:42
HarveyH55Profile picture★★★★★
(5197)
Swan wrote:
HarveyH55 wrote:
Link

The link provides some charts, and clickable links to more details...

Large language models (LLMs) have been all the rage lately, assisting from all kinds of tasks from programming to devising Excel formulas to shortcutting school work. They're also relatively easy to access for the most part, but as the old saying goes, if something on the Internet is free the real product is you (and your data). Luckily there are ways of hosting LLMs on your own to avoid your personal data getting harvested, as well as taking advantage of open-source solutions, but building these systems takes a little bit of effort. [Stephen] and a team from Mozilla walk us through this process and show us a number of options currently available.

Working from the ground up, the group first decides on hosting, which (unsurprisingly) involves using Mozilla hosting services. The choice of runtime environment was a little bit more challenging. The project was time constrained, so they looked at two options here: Hugging Face and llama.cpp. Eventually deciding to move forward with llama.cpp largely due to its ability to run on more consumer-oriented hardware (especially Apple silicon) and the fact that it doesn't need a powerful GPU, the next task was to choose the model. Settling on the LLaMa model that Facebook recently open-sourced, this model works well with the runtime environment and is essentially the only one that does.

From there, the team at Mozilla wanted to make sure their chat bot would be able to provide other Mozilla employees with information more readily pertinent to their jobs, so they trained their model with some internal Mozilla data as well as other more generic information. This doesn't mean the job is done, though, there are a number of other factors that went in to designing this system before it was finally complete. Even then, since they built this in a week it's not perfect; there are some issues with non-permissive licensing of some of the components and many of the design choices may not have been ideal. It's impressive what's out there if you're hosting your own system, though, and while this might be a little more advanced for a self-hosted project, take a look at some other more beginner-friendly projects you can try if you're just starting out on the self-hosted path.


Little scary how quick a team can take a recently released open-source chatbot, and have it up and running on their own hardware. Took them just a week. Tend to wonder how far this is going over the next year or two. Obviously AI based customer service is likely, since for many cases, they aren't very helpful anyway. But, a company could easily train an AI with all the relevant company and product information. Current customer service reps are given a script to follow, and just transfer to another rep, if they can't resolve the issue. Would really reduce the need for human staff, least those that are text base. Voice recognition isn't perfect yet, but speech synthesis is pretty good. Lot of website might be interested in adding a chatbot to help sell products.


Yea, so what? Is there a point?


You would understand, if anyone tried to dumb it down for you. Stick to squeezing tomatoes...
31-07-2023 02:58
SwanProfile picture★★★★★
(5725)
HarveyH55 wrote:
Swan wrote:
HarveyH55 wrote:
Link

The link provides some charts, and clickable links to more details...

Large language models (LLMs) have been all the rage lately, assisting from all kinds of tasks from programming to devising Excel formulas to shortcutting school work. They're also relatively easy to access for the most part, but as the old saying goes, if something on the Internet is free the real product is you (and your data). Luckily there are ways of hosting LLMs on your own to avoid your personal data getting harvested, as well as taking advantage of open-source solutions, but building these systems takes a little bit of effort. [Stephen] and a team from Mozilla walk us through this process and show us a number of options currently available.

Working from the ground up, the group first decides on hosting, which (unsurprisingly) involves using Mozilla hosting services. The choice of runtime environment was a little bit more challenging. The project was time constrained, so they looked at two options here: Hugging Face and llama.cpp. Eventually deciding to move forward with llama.cpp largely due to its ability to run on more consumer-oriented hardware (especially Apple silicon) and the fact that it doesn't need a powerful GPU, the next task was to choose the model. Settling on the LLaMa model that Facebook recently open-sourced, this model works well with the runtime environment and is essentially the only one that does.

From there, the team at Mozilla wanted to make sure their chat bot would be able to provide other Mozilla employees with information more readily pertinent to their jobs, so they trained their model with some internal Mozilla data as well as other more generic information. This doesn't mean the job is done, though, there are a number of other factors that went in to designing this system before it was finally complete. Even then, since they built this in a week it's not perfect; there are some issues with non-permissive licensing of some of the components and many of the design choices may not have been ideal. It's impressive what's out there if you're hosting your own system, though, and while this might be a little more advanced for a self-hosted project, take a look at some other more beginner-friendly projects you can try if you're just starting out on the self-hosted path.


Little scary how quick a team can take a recently released open-source chatbot, and have it up and running on their own hardware. Took them just a week. Tend to wonder how far this is going over the next year or two. Obviously AI based customer service is likely, since for many cases, they aren't very helpful anyway. But, a company could easily train an AI with all the relevant company and product information. Current customer service reps are given a script to follow, and just transfer to another rep, if they can't resolve the issue. Would really reduce the need for human staff, least those that are text base. Voice recognition isn't perfect yet, but speech synthesis is pretty good. Lot of website might be interested in adding a chatbot to help sell products.


Yea, so what? Is there a point?


You would understand, if anyone tried to dumb it down for you. Stick to squeezing tomatoes...


So you cannot articulate a point, meaning that you are just babbling.

PS. Ever had sweet 100 tomato marinara with meatballs, like the wife made today? or are you just a ragu kind of girl


IBdaMann claims that Gold is a molecule, and that the last ice age never happened because I was not there to see it. The only conclusion that can be drawn from this is that IBdaMann is clearly not using enough LSD.

According to CDC/Government info, people who were vaccinated are now DYING at a higher rate than non-vaccinated people, which exposes the covid vaccines as the poison that they are, this is now fully confirmed by the terrorist CDC

This place is quieter than the FBI commenting on the chink bank account information on Hunter Xiden's laptop

I LOVE TRUMP BECAUSE HE PISSES OFF ALL THE PEOPLE THAT I CAN'T STAND.

ULTRA MAGA

"Being unwanted, unloved, uncared for, forgotten by everybody, I think that is a much greater hunger, a much greater poverty than the person who has nothing to eat." MOTHER THERESA OF CALCUTTA

So why is helping to hide the murder of an American president patriotic?


It's time to dig up Joseph Mccarthey and show him TikTok, then duck.


Now be honest, was I correct or was I correct? LOL
31-07-2023 18:51
SwanProfile picture★★★★★
(5725)
HarveyH55 wrote:
Swan wrote:
HarveyH55 wrote:
Link

The link provides some charts, and clickable links to more details...

Large language models (LLMs) have been all the rage lately, assisting from all kinds of tasks from programming to devising Excel formulas to shortcutting school work. They're also relatively easy to access for the most part, but as the old saying goes, if something on the Internet is free the real product is you (and your data). Luckily there are ways of hosting LLMs on your own to avoid your personal data getting harvested, as well as taking advantage of open-source solutions, but building these systems takes a little bit of effort. [Stephen] and a team from Mozilla walk us through this process and show us a number of options currently available.

Working from the ground up, the group first decides on hosting, which (unsurprisingly) involves using Mozilla hosting services. The choice of runtime environment was a little bit more challenging. The project was time constrained, so they looked at two options here: Hugging Face and llama.cpp. Eventually deciding to move forward with llama.cpp largely due to its ability to run on more consumer-oriented hardware (especially Apple silicon) and the fact that it doesn't need a powerful GPU, the next task was to choose the model. Settling on the LLaMa model that Facebook recently open-sourced, this model works well with the runtime environment and is essentially the only one that does.

From there, the team at Mozilla wanted to make sure their chat bot would be able to provide other Mozilla employees with information more readily pertinent to their jobs, so they trained their model with some internal Mozilla data as well as other more generic information. This doesn't mean the job is done, though, there are a number of other factors that went in to designing this system before it was finally complete. Even then, since they built this in a week it's not perfect; there are some issues with non-permissive licensing of some of the components and many of the design choices may not have been ideal. It's impressive what's out there if you're hosting your own system, though, and while this might be a little more advanced for a self-hosted project, take a look at some other more beginner-friendly projects you can try if you're just starting out on the self-hosted path.


Little scary how quick a team can take a recently released open-source chatbot, and have it up and running on their own hardware. Took them just a week. Tend to wonder how far this is going over the next year or two. Obviously AI based customer service is likely, since for many cases, they aren't very helpful anyway. But, a company could easily train an AI with all the relevant company and product information. Current customer service reps are given a script to follow, and just transfer to another rep, if they can't resolve the issue. Would really reduce the need for human staff, least those that are text base. Voice recognition isn't perfect yet, but speech synthesis is pretty good. Lot of website might be interested in adding a chatbot to help sell products.


Yea, so what? Is there a point?


You would understand, if anyone tried to dumb it down for you. Stick to squeezing tomatoes...


Hey Harvey, you be a good girl now and enjoy your bud light and ragu


IBdaMann claims that Gold is a molecule, and that the last ice age never happened because I was not there to see it. The only conclusion that can be drawn from this is that IBdaMann is clearly not using enough LSD.

According to CDC/Government info, people who were vaccinated are now DYING at a higher rate than non-vaccinated people, which exposes the covid vaccines as the poison that they are, this is now fully confirmed by the terrorist CDC

This place is quieter than the FBI commenting on the chink bank account information on Hunter Xiden's laptop

I LOVE TRUMP BECAUSE HE PISSES OFF ALL THE PEOPLE THAT I CAN'T STAND.

ULTRA MAGA

"Being unwanted, unloved, uncared for, forgotten by everybody, I think that is a much greater hunger, a much greater poverty than the person who has nothing to eat." MOTHER THERESA OF CALCUTTA

So why is helping to hide the murder of an American president patriotic?


It's time to dig up Joseph Mccarthey and show him TikTok, then duck.


Now be honest, was I correct or was I correct? LOL




Join the debate SELF-HOSTED CHATBOT FOCUSES ON PRIVACY:

Remember me

Related content
ThreadsRepliesLast post
AI-POWERED SPEAKER IS A CHATBOT YOU CAN ACTUALLY CHAT WITH124-04-2023 20:05
▲ Top of page
Public Poll
Who is leading the renewable energy race?

US

EU

China

Japan

India

Brazil

Other

Don't know


Thanks for supporting Climate-Debate.com.
Copyright © 2009-2020 Climate-Debate.com | About | Contact