GithubHelp home page GithubHelp logo

vid-faceswap's People

Contributors

dchatel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

vid-faceswap's Issues

Error popping mid-video generation

I am getting an error about 17 seconds in to face swap generation:

Traceback (most recent call last):
File "C:\Users\kibet\AppData\Local\Programs\Python\Python310\lib\site-packages\gradio\routes.py", line 422, in run_predict
output = await app.get_blocks().process_api(
File "C:\Users\kibet\AppData\Local\Programs\Python\Python310\lib\site-packages\gradio\blocks.py", line 1323, in process_api
result = await self.call_function(
File "C:\Users\kibet\AppData\Local\Programs\Python\Python310\lib\site-packages\gradio\blocks.py", line 1051, in call_function
prediction = await anyio.to_thread.run_sync(
File "C:\Users\kibet\AppData\Local\Programs\Python\Python310\lib\site-packages\anyio\to_thread.py", line 33, in run_sync
return await get_asynclib().run_sync_in_worker_thread(
File "C:\Users\kibet\AppData\Local\Programs\Python\Python310\lib\site-packages\anyio_backends_asyncio.py", line 877, in run_sync_in_worker_thread
return await future
File "C:\Users\kibet\AppData\Local\Programs\Python\Python310\lib\site-packages\anyio_backends_asyncio.py", line 807, in run
result = context.run(func, *args)
File "C:\stable\stable-diffusion-webui\extensions\vid-faceswap\scripts\vid_faceswap.py", line 65, in process_video
dets = FaceDetector_get(frames_data)
File "C:\stable\stable-diffusion-webui\extensions\vid-faceswap\scripts\face.py", line 13, in FaceDetector_get
_fa = FaceAnalysis(name='buffalo_l', providers=['CUDAExecutionProvider'])
TypeError: FaceAnalysis.init() got an unexpected keyword argument 'providers'

Saw some indication that this could be related to onnxruntime so updated this to the latest version in the venv, but a bit stuck on what to try next!

ModuleNotFoundError: No module named 'imageio_ffmpeg' while runinng webui-user

Hi,

I have tried to fix this issue for the last hour with no success.

I am getting an error ModuleNotFoundError: No module named 'imageio_ffmpeg' even though ffmpeg, imageio, imageio-ffmpeg are installed, I made sure that PATH is configured correctly.

I tried to reinstall stable diffusion to a different drive.

Python 3.10.9

The help is greatly appreciated!



Installing requirements
hello from vidfaceswap
Installing requirements for face detection using GPU

Launching Web UI with arguments:
No module 'xformers'. Proceeding without it.
Error loading script: vid_faceswap.py
Traceback (most recent call last):
  File "D:\sd-test\stable-diffusion-webui\modules\scripts.py", line 256, in load_scripts
    script_module = script_loading.load_module(scriptfile.path)
  File "D:\sd-test\stable-diffusion-webui\modules\script_loading.py", line 11, in load_module
    module_spec.loader.exec_module(module)
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "D:\sd-test\stable-diffusion-webui\extensions\vid-faceswap\scripts\vid_faceswap.py", line 20, in <module>
    from scripts.video import video_reader, video_writer
  File "D:\sd-test\stable-diffusion-webui\extensions\vid-faceswap\scripts\video.py", line 5, in <module>
    from moviepy.editor import VideoFileClip, AudioFileClip, ImageSequenceClip
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\editor.py", line 22, in <module>
    from .video.io.VideoFileClip import VideoFileClip
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\io\VideoFileClip.py", line 3, in <module>
    from moviepy.video.VideoClip import VideoClip
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\VideoClip.py", line 21, in <module>
    from .io.ffmpeg_writer import ffmpeg_write_image, ffmpeg_write_video
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\io\ffmpeg_writer.py", line 11, in <module>
    from moviepy.config import get_setting
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\config.py", line 34, in <module>
    from imageio.plugins.ffmpeg import get_exe
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\imageio\plugins\ffmpeg.py", line 143, in <module>
    import imageio_ffmpeg
ModuleNotFoundError: No module named 'imageio_ffmpeg'

Error loading script: video.py
Traceback (most recent call last):
  File "D:\sd-test\stable-diffusion-webui\modules\scripts.py", line 256, in load_scripts
    script_module = script_loading.load_module(scriptfile.path)
  File "D:\sd-test\stable-diffusion-webui\modules\script_loading.py", line 11, in load_module
    module_spec.loader.exec_module(module)
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "D:\sd-test\stable-diffusion-webui\extensions\vid-faceswap\scripts\video.py", line 5, in <module>
    from moviepy.editor import VideoFileClip, AudioFileClip, ImageSequenceClip
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\editor.py", line 22, in <module>
    from .video.io.VideoFileClip import VideoFileClip
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\io\VideoFileClip.py", line 3, in <module>
    from moviepy.video.VideoClip import VideoClip
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\VideoClip.py", line 21, in <module>
    from .io.ffmpeg_writer import ffmpeg_write_image, ffmpeg_write_video
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\io\ffmpeg_writer.py", line 11, in <module>
    from moviepy.config import get_setting
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\moviepy\config.py", line 34, in <module>
    from imageio.plugins.ffmpeg import get_exe
  File "D:\sd-test\stable-diffusion-webui\venv\lib\site-packages\imageio\plugins\ffmpeg.py", line 143, in <module>
    import imageio_ffmpeg
ModuleNotFoundError: No module named 'imageio_ffmpeg'

output doesnt have any changes applied. is ther any tutorial or documentation?

I was able to get the extension up and running after some tries, as it needed a package to be compiled and user should have Windows SDK too.

Now I am trying to test it. but I don't see any effect on the video. even art style specified in the prompt is not applied. Dear developer, is there any documentation or tutorial available? How to use controlnet with this extension?

Error loading script: vid_faceswap.py

I solved all other problems, moviepy etc. Is it maybe incompatible with latest version of sdwebui ?

*** Error loading script: vid_faceswap.py Traceback (most recent call last): File "D:\stable-diffusion-webui-directml\modules\scripts.py", line 382, in load_scripts script_module = script_loading.load_module(scriptfile.path) File "D:\stable-diffusion-webui-directml\modules\script_loading.py", line 10, in load_module module_spec.loader.exec_module(module) File "<frozen importlib._bootstrap_external>", line 883, in exec_module File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed File "D:\stable-diffusion-webui-directml\extensions\vid-faceswap\scripts\vid_faceswap.py", line 15, in <module> from modules.ui import create_sampler_and_steps_selection, create_seed_inputs, create_refresh_button ImportError: cannot import name 'create_seed_inputs' from 'modules.ui' (D:\stable-diffusion-webui-directml\modules\ui.py)

Error loading script: vid_faceswap.py

Any idea ? It is very hard to correct as it doesn't say anything about a missing module...

Thanks :)

++

*** Error loading script: vid_faceswap.py
Traceback (most recent call last):
File "/home/stef/stable-diffusion/stable-diffusion-webui/modules/scripts.py", line 382, in load_scripts
script_module = script_loading.load_module(scriptfile.path)
File "/home/stef/stable-diffusion/stable-diffusion-webui/modules/script_loading.py", line 10, in load_module
module_spec.loader.exec_module(module)
File "", line 883, in exec_module
File "", line 241, in _call_with_frames_removed
File "/home/stef/stable-diffusion/stable-diffusion-webui/extensions/vid-faceswap/scripts/vid_faceswap.py", line 15, in
from modules.ui import create_sampler_and_steps_selection, create_seed_inputs, create_refresh_button
ImportError: cannot import name 'create_seed_inputs' from 'modules.ui' (/home/stef/stable-diffusion/stable-diffusion-webui/modules/ui.py)

facing problems while installing insightface. little help please.

It could be related to the wrong version of insightface. You should use 0.7.3 and not 0.2.1. You can fix that by running pip install -U insightface in the stable diffusion environment.

i am unable to install insightface and getting below error

AppData\Local\Temp\pip-build-env-mslm00mj\overlay\Lib\site-packages\setuptools\command\build_py.py:201: _Warning: Package 'insightface.data.objects' is absent from the `packages` configuration.
      !!

              ********************************************************************************
              ############################
              # Package would be ignored #
              ############################
              Python recognizes 'insightface.data.objects' as an importable package[^1],
              but it is absent from setuptools' `packages` configuration.

              This leads to an ambiguous overall configuration. If you want to distribute this
              package, please make sure that 'insightface.data.objects' is explicitly added
              to the `packages` configuration field.

              Alternatively, you can also rely on setuptools' discovery methods
              (for example by using `find_namespace_packages(...)`/`find_namespace:`
              instead of `find_packages(...)`/`find:`).

              You can read more about "package discovery" on setuptools documentation page:

              - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html

              If you don't want 'insightface.data.objects' to be distributed and are
              already explicitly excluding 'insightface.data.objects' via
              `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
              you can try to use `exclude_package_data`, or `include-package-data=False` in
              combination with a more fine grained `package-data` configuration.

              You can read more about "package data files" on setuptools documentation page:

              - https://setuptools.pypa.io/en/latest/userguide/datafiles.html


              [^1]: For Python, any directory (with suitable naming) can be imported,
                    even if it does not contain any `.py` files.
                    On the other hand, currently there is no concept of package data
                    directory, all directories are treated like packages.
              ********************************************************************************

      !!
        check.warn(importable)
      creating build\lib.win-amd64-cpython-310\insightface\thirdparty\face3d\mesh\cython
      copying insightface\thirdparty\face3d\mesh\cython\mesh_core.cpp -> build\lib.win-amd64-cpython-310\insightface\thirdparty\face3d\mesh\cython
      copying insightface\thirdparty\face3d\mesh\cython\mesh_core_cython.cpp -> build\lib.win-amd64-cpython-310\insightface\thirdparty\face3d\mesh\cython
      creating build\lib.win-amd64-cpython-310\insightface\data\images
      copying insightface\data\images\Tom_Hanks_54745.png -> build\lib.win-amd64-cpython-310\insightface\data\images
      copying insightface\data\images\mask_black.jpg -> build\lib.win-amd64-cpython-310\insightface\data\images
      copying insightface\data\images\mask_blue.jpg -> build\lib.win-amd64-cpython-310\insightface\data\images
      copying insightface\data\images\mask_green.jpg -> build\lib.win-amd64-cpython-310\insightface\data\images
      copying insightface\data\images\mask_white.jpg -> build\lib.win-amd64-cpython-310\insightface\data\images
      copying insightface\data\images\t1.jpg -> build\lib.win-amd64-cpython-310\insightface\data\images
      creating build\lib.win-amd64-cpython-310\insightface\data\objects
      copying insightface\data\objects\meanshape_68.pkl -> build\lib.win-amd64-cpython-310\insightface\data\objects
      copying insightface\thirdparty\face3d\mesh\cython\mesh_core.h -> build\lib.win-amd64-cpython-310\insightface\thirdparty\face3d\mesh\cython
      copying insightface\thirdparty\face3d\mesh\cython\mesh_core_cython.c -> build\lib.win-amd64-cpython-310\insightface\thirdparty\face3d\mesh\cython
      copying insightface\thirdparty\face3d\mesh\cython\mesh_core_cython.pyx -> build\lib.win-amd64-cpython-310\insightface\thirdparty\face3d\mesh\cython
      copying insightface\thirdparty\face3d\mesh\cython\setup.py -> build\lib.win-amd64-cpython-310\insightface\thirdparty\face3d\mesh\cython
      running build_ext
      building 'insightface.thirdparty.face3d.mesh.cython.mesh_core_cython' extension
      error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for insightface
Failed to build insightface
ERROR: Could not build wheels for insightface, which is required to install pyproject.toml-based projects

After installing MS visual C++ 14 Build tools and restarting PC, I am getting below error

"C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -Iinsightface/thirdparty/face3d/mesh/cython -IC:\Users\NewUser\AppData\Local\Temp\pip-build-env-7i03jz6u\overlay\Lib\site-packages\numpy\core\include -ID:\AI\stable-diffusion-webui\venv\include -IC:\Users\NewUser\AppData\Local\Programs\Python\Python310\include -IC:\Users\NewUser\AppData\Local\Programs\Python\Python310\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" /EHsc /Tpinsightface/thirdparty/face3d/mesh/cython/mesh_core.cpp /Fobuild\temp.win-amd64-cpython-310\Release\insightface/thirdparty/face3d/mesh/cython/mesh_core.obj
      mesh_core.cpp
      C:\Users\NewUser\AppData\Local\Temp\pip-install-1z0cy9qc\insightface_840ebedebbbc47adb8df9f01373db97d\insightface\thirdparty\face3d\mesh\cython\mesh_core.h(4): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
      error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Tools\\MSVC\\14.36.32532\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for insightface
Failed to build insightface
ERROR: Could not build wheels for insightface, which is required to install pyproject.toml-based projects

Can't generate video

Hello, I can't get it to work,
I have two Auto1111 installs with torch 1.13 and 2.0 but it crashes on both,
Here's the output:

""" File "C:\AI\stable-diffusion-webui\venv\lib\site-packages\gradio\routes.py", line 399, in run_predict
output = await app.get_blocks().process_api(
File "C:\AI\stable-diffusion-webui\venv\lib\site-packages\gradio\blocks.py", line 1299, in process_api
result = await self.call_function(
File "C:\AI\stable-diffusion-webui\venv\lib\site-packages\gradio\blocks.py", line 1022, in call_function
prediction = await anyio.to_thread.run_sync(
File "C:\AI\stable-diffusion-webui\venv\lib\site-packages\anyio\to_thread.py", line 31, in run_sync
return await get_asynclib().run_sync_in_worker_thread(
File "C:\AI\stable-diffusion-webui\venv\lib\site-packages\anyio_backends_asyncio.py", line 937, in run_sync_in_worker_thread
return await future
File "C:\AI\stable-diffusion-webui\venv\lib\site-packages\anyio_backends_asyncio.py", line 867, in run
result = context.run(func, *args)
File "C:\AI\stable-diffusion-webui\extensions\vid-faceswap\scripts\vid_faceswap.py", line 67, in process_video
frames_data, fps, audio = video_reader(video_input, max_fps=max_fps if max_fps > 0 else None)
File "C:\AI\stable-diffusion-webui\extensions\vid-faceswap\scripts\video.py", line 11, in video_reader
return _ffmpeg_reader(file, max_fps)
File "C:\AI\stable-diffusion-webui\extensions\vid-faceswap\scripts\video.py", line 31, in _ffmpeg_reader
with VideoFileClip(file) as clip:
AttributeError: enter
"""

How can I fix it,
Best,

MoviePy error: FFMPEG encountered Permission denied

Hi,

seems to be a great extention, thank you for sharing!

Sadly after propper installation like described in Readme, I always run in Permission denied errors when it wants to create a video.

I'm running:
Win10
Python 3.10.6
SD/Automatic1111 Version: v1.5.2
moviepy-1.0.3
imageio-ffmpeg-0.4.2

My guess would be the "write to temp-folder" method in moviepy was modified.

Could you please suggest Module-Versions you use?

Regards Rene


BrokenPipeError: [Errno 32] Broken pipe

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "C:\stable-diffusion-webui\venv\lib\site-packages\gradio\routes.py", line 422, in run_predict
output = await app.get_blocks().process_api(
File "C:\stable-diffusion-webui\venv\lib\site-packages\gradio\blocks.py", line 1323, in process_api
result = await self.call_function(
File "C:\stable-diffusion-webui\venv\lib\site-packages\gradio\blocks.py", line 1051, in call_function
prediction = await anyio.to_thread.run_sync(
File "C:\stable-diffusion-webui\venv\lib\site-packages\anyio\to_thread.py", line 33, in run_sync
return await get_asynclib().run_sync_in_worker_thread(
File "C:\stable-diffusion-webui\venv\lib\site-packages\anyio_backends_asyncio.py", line 877, in run_sync_in_worker_thread
return await future
File "C:\stable-diffusion-webui\venv\lib\site-packages\anyio_backends_asyncio.py", line 807, in run
result = context.run(func, *args)
File "C:\stable-diffusion-webui\extensions\vid-faceswap\scripts\vid_faceswap.py", line 158, in process_video
video_writer(video_file, swapped_frames, fps, audio)
File "C:\stable-diffusion-webui\extensions\vid-faceswap\scripts\video.py", line 47, in video_writer
clip.write_videofile(file, audio_codec='aac', fps=clip.fps)
File "", line 2, in write_videofile
File "C:\stable-diffusion-webui\venv\lib\site-packages\moviepy\decorators.py", line 54, in requires_duration
return f(clip, *a, **k)
File "", line 2, in write_videofile
File "C:\stable-diffusion-webui\venv\lib\site-packages\moviepy\decorators.py", line 137, in use_clip_fps_by_default
return f(clip, *new_a, **new_kw)
File "", line 2, in write_videofile
File "C:\stable-diffusion-webui\venv\lib\site-packages\moviepy\decorators.py", line 22, in convert_masks_to_RGB
return f(clip, *a, **k)
File "C:\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\VideoClip.py", line 319, in write_videofile
ffmpeg_write_video(self, filename, fps, codec,
File "C:\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\io\ffmpeg_writer.py", line 223, in ffmpeg_write_video
writer.write_frame(frame)
File "C:\stable-diffusion-webui\venv\lib\site-packages\moviepy\video\io\ffmpeg_writer.py", line 177, in write_frame
raise IOError(error)
OSError: [Errno 32] Broken pipe

MoviePy error: FFMPEG encountered the following error while writing file /20230926112719130348 fuuuck11313139.mp4:

b'/20230926112719130348 fuuuck11313139.mp4: Permission denied\r\n'

Faceswap Tab Not Visible

Here is the error

venv "C:\stable_diffusion\stable-diffusion-webui\venv\Scripts\Python.exe"
Python 3.10.6 (tags/v3.10.6:9c7b4bd, Aug  1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)]
Version: v1.7.0
Commit hash: cf2772fab0af5573da775e7437e6acdca424f26e
hello from vidfaceswap
Launching Web UI with arguments:
No module 'xformers'. Proceeding without it.
Style database not found: C:\stable_diffusion\stable-diffusion-webui\styles.csv
ControlNet preprocessor location: C:\stable_diffusion\stable-diffusion-webui\extensions\sd-webui-controlnet\annotator\downloads
2024-02-08 16:55:41,786 - ControlNet - INFO - ControlNet v1.1.440
2024-02-08 16:55:41,935 - ControlNet - INFO - ControlNet v1.1.440
*** Error loading script: vid_faceswap.py
    Traceback (most recent call last):
      File "C:\stable_diffusion\stable-diffusion-webui\modules\scripts.py", line 469, in load_scripts
        script_module = script_loading.load_module(scriptfile.path)
      File "C:\stable_diffusion\stable-diffusion-webui\modules\script_loading.py", line 10, in load_module
        module_spec.loader.exec_module(module)
      File "<frozen importlib._bootstrap_external>", line 883, in exec_module
      File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
      File "C:\stable_diffusion\stable-diffusion-webui\extensions\vid-faceswap\scripts\vid_faceswap.py", line 15, in <module>
        from modules.ui import create_sampler_and_steps_selection, create_seed_inputs, create_refresh_button
    ImportError: cannot import name 'create_seed_inputs' from 'modules.ui' (C:\stable_diffusion\stable-diffusion-webui\modules\ui.py)

---
Loading weights [ef76aa2332] from C:\stable_diffusion\stable-diffusion-webui\models\Stable-diffusion\realisticVisionV60B1_v51VAE.safetensors
2024-02-08 16:55:43,011 - ControlNet - INFO - ControlNet UI callback registered.
*Deforum ControlNet support: enabled*
Creating model from config: C:\stable_diffusion\stable-diffusion-webui\configs\v1-inference.yaml
Running on local URL:  http://127.0.0.1:7860

To create a public link, set `share=True` in `launch()`.
Startup time: 16.0s (prepare environment: 5.8s, import torch: 3.4s, import gradio: 1.1s, setup paths: 1.1s, initialize shared: 0.6s, other imports: 0.8s, setup codeformer: 0.1s, load scripts: 2.1s, create ui: 0.7s, gradio launch: 0.3s).
Applying attention optimization: Doggettx... done.
Model loaded in 5.8s (load weights from disk: 0.7s, create model: 0.4s, apply weights to model: 4.1s, apply half(): 0.1s, load VAE: 0.2s, calculate empty prompt: 0.1s).

I have installed insightface 0.7.3

Faceswap Tab Not Visible

The repo installed correctly and is showing up in the installed extensions directory page. After applying and restarting the tab is not present. It's shown as installed but not tab exists.

SD version: v1.2.1  •  python: 3.10.11  •  torch: 2.0.1  •  xformers: N/A  •  gradio: 3.29.0  •  checkpoint: e1441589a6

2023-05-17_17-36-17

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.