Giter VIP home page Giter VIP logo

Comments (95)

tankow79 avatar tankow79 commented on June 2, 2024 2

@VIDRA4444 You need to install the version of the library specified in requirements.txt "pip install -r requirements.txt"

In your case, you need to remove the discord.py version 2.2.2 library "pip uninstall discord.py" and then install discord.py version 2.1.0 "pip install discord.py==2.1.0"

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024 1

Hi there was an error during startup:

discord.client logging in using static token
Traceback (most recent call last):
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 828, in run
asyncio.run(runner())
File "D:\Users\AndraX\AppData\Local\Programs\Python\Python310\lib\asyncio\runners.py", line 44, in run
return loop.run_until_complete(main)
File "D:\Users\AndraX\AppData\Local\Programs\Python\Python310\lib\asyncio\base_events.py", line 646, in run_until_complete
return future.result()
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 817, in runner
await self.start(token, reconnect=reconnect)
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 746, in start
await self.connect(reconnect=reconnect)
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 672, in connect
raise PrivilegedIntentsRequired(exc.shard_id) from None
discord.errors.PrivilegedIntentsRequired: Shard ID None is requesting privileged intents that have not been explicitly enabled in the developer portal. It is recommended to go to https://discord.com/developers/applications/ and explicitly enable the privileged intents within your application's page. If this is not possible, then consider disabling the privileged intents instead.
python-BaseException

I tried switching the dependency as mentioned in "discord.errors.PrivilegedIntentsRequired" but it doesn't work for me

#19 (comment)

Here is the solution.

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Okay, I figured it out and installed the discord.py library, now the error is different: [30;1m2023-03-23 01:55:54[0m [31mERROR [0m [35m__main__[0m -> discord.py version 2.2.2 is installed but does not match the requirements

from discordbot-edgegpt.

tankow79 avatar tankow79 commented on June 2, 2024

Hi there was an error during startup:

discord.client logging in using static token
Traceback (most recent call last):
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 828, in run
asyncio.run(runner())
File "D:\Users\AndraX\AppData\Local\Programs\Python\Python310\lib\asyncio\runners.py", line 44, in run
return loop.run_until_complete(main)
File "D:\Users\AndraX\AppData\Local\Programs\Python\Python310\lib\asyncio\base_events.py", line 646, in run_until_complete
return future.result()
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 817, in runner
await self.start(token, reconnect=reconnect)
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 746, in start
await self.connect(reconnect=reconnect)
File "D:\Programs_for_python\DiscordBot-EdgeGPT-main\venv\lib\site-packages\discord\client.py", line 672, in connect
raise PrivilegedIntentsRequired(exc.shard_id) from None
discord.errors.PrivilegedIntentsRequired: Shard ID None is requesting privileged intents that have not been explicitly enabled in the developer portal. It is recommended to go to https://discord.com/developers/applications/ and explicitly enable the privileged intents within your application's page. If this is not possible, then consider disabling the privileged intents instead.
python-BaseException

I tried switching the dependency as mentioned in "discord.errors.PrivilegedIntentsRequired" but it doesn't work for me

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

@VIDRA4444 You need to install the version of the library specified in requirements.txt "pip install -r requirements.txt"

In your case, you need to remove the discord.py version 2.2.2 library "pip uninstall discord.py" and then install discord.py version 2.1.0 "pip install discord.py==2.1.0"

Having done as you said, I got this error: [30;1m2023-03-23 13:39:27[0m [31mERROR [0m [35m__main__[0m -> python-dotenv version 1.0.0 is installed but does not match the requiremen

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Oh my God, I'm already tired... I installed the correct version of dotenv, but a new error popped up...
File "C:\Users\1111\Desktop\bot\DiscordBot-EdgeGPT-main\bot.py", line 9, in
load_dotenv()
TypeError: load_dotenv() missing 1 required positional argument: 'dotenv_path'

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Do you change file name .env.dev to .env?

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

yes. file is .env

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

I update repo, you can try again.

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

I update repo, you can try again.

Do I need to reinstall the zip?

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Yes, and reinstall the package

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Aaaaand......
image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

;(

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

well,I guess you should change load_dotenv() to load_dotenv(dotenv_path= input_your_.env_path)

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Like this?
image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

I'm sorry if I'm dumb. I don't understand much about code.

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Like this? image

dotenv_path = "./.env"

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Warning (from warnings module):
File "C:\Users\1111\AppData\Local\Programs\Python\Python310\lib\site-packages\dotenv.py", line 18
warnings.warn("can't read %s - it doesn't exist." % dotenv_path)
UserWarning: can't read C:Users\1111\AppData\Local\Programs\Python\Python310\Lib\site-packages\dotenv.env - it doesn't exist.
�[30;1m2023-03-23 15:19:05�[0m �[31mERROR �[0m �[35m__main__�[0m -> discord.py version 2.1.0 is installed but does not match the requirements

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
I put this in, can you please tell me what I need to change?

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Warning (from warnings module): File "C:\Users\1111\AppData\Local\Programs\Python\Python310\lib\site-packages\dotenv.py", line 18 warnings.warn("can't read %s - it doesn't exist." % dotenv_path) UserWarning: can't read C:Users\1111\AppData\Local\Programs\Python\Python310\Lib\site-packages\dotenv.env - it doesn't exist. �[30;1m2023-03-23 15:19:05�[0m �[31mERROR �[0m �[35m__main__�[0m -> discord.py version 2.1.0 is installed but does not match the requirements

I updated the version of discord.py to 2.2.2 and you can see the change in requirements.txt.

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

image I put this in, can you please tell me what I need to change?

you can trydotenv_path = "./.env"or dotenv_path=r"your_path"

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

okay! �[30;1m2023-03-23 15:28:40�[0m �[31mERROR �[0m �[35m__main__�[0m -> python-dotenv version 0.2.0 is installed but does not match the requirements

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Okay, I know what I should fix

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Modify your bot.py code to look like this

import discord
import os
import src.log
from discord.ext import commands
from dotenv import load_dotenv

load_dotenv(dotenv_path="./.env")

bot = commands.Bot(command_prefix='!', intents = discord.Intents.all())

# init loggger
logger = src.log.setup_logger(__name__)

@bot.event
async def on_ready():
    logger.info(f'{bot.user} is now running!')
    for Filename in os.listdir('./cogs'):
        if Filename.endswith('.py'):
            await bot.load_extension(f'cogs.{Filename[:-3]}')  
    print("Bot is Up and Ready!")
    try:
        synced = await bot.tree.sync()
        print(f"Synced {len(synced)} commands")
    except Exception as e:
        print(e)
        
@bot.command()
async def load(ctx, extension):
    await bot.load_extension(f'cogs.{extension}')
    await ctx.send(f'Loaded {extension} done.')

@bot.command()
async def unload(ctx, extension):
    await bot.unload_extension(f'cogs.{extension}')
    await ctx.send(f'Un-Loaded {extension} done.')

@bot.command()
async def reload(ctx, extension):
    await bot.reload_extension(f'cogs.{extension}')
    await ctx.send(f'Re-Loaded {extension} done.')

@bot.command()
async def clean(ctx):
    open('discord_bot.log', 'w').close()
    await ctx.send(f'Has been emptied')

if __name__ == '__main__':
    bot.run(os.getenv("DISCORD_BOT_TOKEN"))

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

hm...
image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Can I see your bot.py?

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

hm..so strange, open .env file, and try to change DISCORD_BOT_TOKEN=your_token toDISCORD_BOT_TOKEN="your_token"

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
damn! the bot is working, although previously it was not even online

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

: )

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

but........
image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

no response

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

he's online, but there are a lot of errors and he doesn't respond to any commands

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

image

Are you sure you have the edgegpt package installed?

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

yes

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

I think your edgegpt package path is wrong

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Okay and... what should I do?

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

confirm your edgegpt package info, like this:

(py_3-9-16) C:\Users\dd861\pyhon\discord bot EdgeGPT>pip show EdgeGPT
Name: EdgeGPT
Version: 0.1.3
Summary: Reverse engineered Edge Chat API
Home-page: https://github.com/acheong08/EdgeGPT
Author: Antonio Cheong
Author-email: [email protected]
License: GNU General Public License v2.0
Location: c:\users\dd861\anaconda3\envs\py_3-9-16\lib\site-packages
Requires: asyncio, certifi, httpx, prompt-toolkit, regex, requests, rich, websockets
Required-by:

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

This seems to be no problem, hm...

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
Here are the current startup errors

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Mybe you can reinstall all package, and try again

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

All packages??? Python, dotenv, edge?

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

okay! �[30;1m2023-03-23 15:28:40�[0m �[31mERROR �[0m �[35m__main__�[0m -> python-dotenv version 0.2.0 is installed but does not match the requirements

Are you sure the error is not in the code? Last time I had an error only with dotenv, but now the whole screen is red

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Then try to install python-dotenv latest version first

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

yaml/pyyaml#574

you should try this

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

I think this is a problem with py3.10, because I don't have this error with py3.9.

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Something new...

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Can you send a previous version of the code?

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Have you set the cookies.json file?

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
yes

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

There may be something wrong with your cookies, try re-exporting cookies from http://bing.com/chat

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
I put in a new cookie, nothing has changed

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Can you send a previous version of the code?

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Basically, only bot.py was modified

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

I know, I need a previous version of it, before the one you recently fixed.

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024
import discord
import os
import src.log
import sys
import pkg_resources
from discord.ext import commands
from dotenv import load_dotenv

load_dotenv()

bot = commands.Bot(command_prefix='!', intents = discord.Intents.all())

# init loggger
logger = src.log.setup_logger(__name__)

def check_verion() -> None:
    # Read the requirements.txt file and add each line to a list
    with open('requirements.txt') as f:
        required = f.read().splitlines()

    # For each library listed in requirements.txt, check if the corresponding version is installed
    for package in required:
        # Use the pkg_resources library to get information about the installed version of the library
        package_name, package_verion = package.split('==')
        installed = pkg_resources.get_distribution(package_name)
        # Extract the library name and version number
        name, version = installed.project_name, installed.version
        # Compare the version number to see if it matches the one in requirements.txt
        if package != f'{name}=={version}':
            logger.error(f'{name} version {version} is installed but does not match the requirements')
            sys.exit()

@bot.event
async def on_ready():
    logger.info(f'{bot.user} is now running!')
    for Filename in os.listdir('./cogs'):
        if Filename.endswith('.py'):
            await bot.load_extension(f'cogs.{Filename[:-3]}')  
    print("Bot is Up and Ready!")
    try:
        synced = await bot.tree.sync()
        print(f"Synced {len(synced)} commands")
    except Exception as e:
        print(e)
        
@bot.command()
async def load(ctx, extension):
    await bot.load_extension(f'cogs.{extension}')
    await ctx.send(f'Loaded {extension} done.')

@bot.command()
async def unload(ctx, extension):
    await bot.unload_extension(f'cogs.{extension}')
    await ctx.send(f'Un-Loaded {extension} done.')

@bot.command()
async def reload(ctx, extension):
    await bot.reload_extension(f'cogs.{extension}')
    await ctx.send(f'Re-Loaded {extension} done.')

@bot.command()
async def clean(ctx):
    open('discord_bot.log', 'w').close()
    await ctx.send(f'Has been emptied')

if __name__ == '__main__':
    check_verion()
    bot.run(os.getenv("DISCORD_BOT_TOKEN"))

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
The only error

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Do you know what you can do about it? The requirements state that doten should be 0.20.0, but the code asks for 1.0

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

modify requirements.txt:

discord.py==2.2.2
python-dotenv==1.0.0
PyYAML==6.0
EdgeGPT==0.1.3

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Do you know what you can do about it? The requirements state that doten should be 0.20.0, but the code asks for 1.0

Because the version you installed is 1.0.0, but check_version() is checked against the contents of requirements.txt.

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

image

ya, modify python-dotenv==0.20.0 to python-dotenv==1.0.0

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
New error!

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
code

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

dotenv_path = "./.env"

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

same error

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
Yea! New error...

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

same, modify requirements.txt, PyYAML==6.0 -> PyYAML==6.0bl

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

I knew, so I changed it, but nothing changed.

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

hmm....I think you still do not use check_version (), anyway, this is only a check, not necessary

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

I don't understand.

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

image
remove check_version() from here

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

😢

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

modify DISCORD_BOT_TOKEN=your_token to DISCORD_BOT_TOKEN="your_token"

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
like this?

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

image
no, modify .env

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

ah... It's already fixed.

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

hmm... modify like this

if __name__ == '__main__':
    check_verion()
    bot.run("your discord token")

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

modify your bot.py:

import discord
import os
import src.log
from discord.ext import commands

bot = commands.Bot(command_prefix='!', intents = discord.Intents.all())

# init loggger
logger = src.log.setup_logger(__name__)

@bot.event
async def on_ready():
    logger.info(f'{bot.user} is now running!')
    for Filename in os.listdir('./cogs'):
        if Filename.endswith('.py'):
            await bot.load_extension(f'cogs.{Filename[:-3]}')  
    print("Bot is Up and Ready!")
    try:
        synced = await bot.tree.sync()
        print(f"Synced {len(synced)} commands")
    except Exception as e:
        print(e)
        
@bot.command()
async def load(ctx, extension):
    await bot.load_extension(f'cogs.{extension}')
    await ctx.send(f'Loaded {extension} done.')

@bot.command()
async def unload(ctx, extension):
    await bot.unload_extension(f'cogs.{extension}')
    await ctx.send(f'Un-Loaded {extension} done.')

@bot.command()
async def reload(ctx, extension):
    await bot.reload_extension(f'cogs.{extension}')
    await ctx.send(f'Re-Loaded {extension} done.')

@bot.command()
async def clean(ctx):
    open('discord_bot.log', 'w').close()
    await ctx.send(f'Has been emptied')

if __name__ == '__main__':
    bot.run("your token")

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

Update EdgeGPT==0.1.5, I see this package has just been updated

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

image
but nothing...

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Thanks a lot for trying to help man, but I'm already very tired, you and I have spent about 3 hours on this case, but all the errors new and new... Should I close the topic? I don't want to continue...

from discordbot-edgegpt.

FuseFairy avatar FuseFairy commented on June 2, 2024

OK

from discordbot-edgegpt.

VIDRA4444 avatar VIDRA4444 commented on June 2, 2024

Thank you so much again! I appreciate your help. Good luck to you!

from discordbot-edgegpt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.