1623299307
OpenAI is not your typical AI startup, it was developed by already successful people in the field of research and technology who developed a conscience about the potential centralization of AI power by the big tech giants.
Know more: https://www.youtube.com/watch?v=nOxKl5Ye4Fs
#startups #artificial-intelligence
1598475240
With OpenAI’s recent breakthrough of pre-trained language model GPT-3, the company has revolutionised the concept of machines writing codes like humans — a step towards artificial general intelligence. Not only it is being used for writing codes, but also for writing blogs, creating stories as well as websites and apps. In fact, in recent news, a college student created an entirely fake blog using GPT-3, which created a massive buzz in the ML community and has also been trending on Hacker News.
#opinions #gpt-3 #gpt-3 efficacy #open ai gpt-3 #openai #openai sam altman #openai’s gpt-2 model
1592451983
In this article, we will build and play our very first reinforcement learning (RL) game using Python and OpenAI Gym environment. The OpenAI Gym library has tons of gaming environments – text based to real time complex environments. More details can be found on their website. To install the gym library is simple, just type this command:
pip install gym
We will be using the gym library to build and play a text based game called FrozenLake-v0. The following description is picked as is from the Gym site about this game:
#python #openai #openai gym
1593277860
Microsoft has partnered with OpenAI to create an Azure-hosted supercomputer for testing large-scale models.The supercomputer will deliver eye-watering amounts of power from its 285,000 CPU cores and 10,000 GPUs.
#ai news #microsoft partners with openai to create azure supercomputer #openai #azure
1624378440
In this video, I’m going to take you on my entrepreneurial journey for the last 7 years, as a millennial entrepreneur. I started off making $800 my first month out of college, and since then I’ve scaled my side hustles and started new businesses that have grown my income a lot. My purpose is to give you the confidence to go out there and pursue your dreams, when society is set up to push you in another direction. If you watch until the end, I guarantee you’ll leave with many important takeaways that influence how you live your life.
📺 The video in this post was made by Charlie Chang
The origin of the article: https://www.youtube.com/watch?v=09ME3rbZ4x4
🔺 DISCLAIMER: The article is for information sharing. The content of this video is solely the opinions of the speaker who is not a licensed financial advisor or registered investment advisor. Not investment advice or legal advice.
Cryptocurrency trading is VERY risky. Make sure you understand these risks and that you are responsible for what you do with your money
🔥 If you’re a beginner. I believe the article below will be useful to you ☞ What You Should Know Before Investing in Cryptocurrency - For Beginner
⭐ ⭐ ⭐The project is of interest to the community. Join to Get free ‘GEEK coin’ (GEEKCASH coin)!
☞ **-----CLICK HERE-----**⭐ ⭐ ⭐
Thanks for visiting and watching! Please don’t forget to leave a like, comment and share!
#bitcoin #blockchain #journey #$800 to $86,000 per month #my journey from $800 to $86,000 per month [millennial entrepreneur] #millennial entrepreneur
1672328100
This is a Telegram bot that lets you chat with the chatGPT language model using your local browser. The bot uses Playwright to run chatGPT in Chromium, and can parse code and text, as well as send messages. It also includes a /draw
command that allows you to generate pictures using stable diffusion. More features are coming soon.
/draw
pictures using stable diffusion (version 0.0.2)/browse
give chatGPT access to Google (version 0.0.3)conda env create -f environment.yml
to create the environment.conda activate chat
playwright install
to download the necessary Chromium software.playwright install-deps
to download the necessary dependencies.env
file. See these instructions for more information on how to do this.How to obtain telegram user id? Add telegram userinfobot to your telegram contacts
.env.example
file, rename it to .env
, and place your values in the appropriate fields..env.example
file and rename the copy to .env
./draw
command, you will need to obtain an API key for stable diffusion. To do this, go to Dream Studio Beta and sign up for a free membership./browse
command, you will need to obtain an API key for SERP. To do this, go to SERP API and sign up for a free account.python server.py
to start the server.You can use the docker image to launch your bot in a server (using playwright headless mode)
docker-compose
example
services:
chatgpt-telegram-bot:
image: ghcr.io/altryne/chatgpt-telegram-bot
container_name: chatgpt-telegram-bot
environment:
- TELEGRAM_API_KEY=
- TELEGRAM_USER_ID= #Use this with your user ID to restrict usage only to your account
- STABILITY_API_KEY= #use this if you want the bot to draw things with stability AI as well
- SERP_API_KEY= #add this from serpapi if you want to enable the google search feature
- OPEN_AI_EMAIL= #openai login email. Needed for autologin in headless mode
- OPEN_AI_PASSWORD= #openai password. Needed for autologin in headless mode
Author: altryne
Source code: https://github.co m/altryne/chatGPT-telegram-bot
License: MIT license