LALAL.AI: 100% AI-Powered Vocal and Instrumental Tracks Removal
Isolating instruments from music is now possible using AI, and Splitter is based on Deezer's open source research project Spleeter to accomplish this.
LALAL.AI: 100% AI-Powered Vocal and Instrumental Tracks Removal
Isolating instruments from music is now possible using AI, and Splitter is based on Deezer's open source research project Spleeter to accomplish this.
// ==UserScript== | |
// @name Download Tiktok Videos | |
// @namespace https://tiktok.com/ | |
// @version 0.1 | |
// @description Adds download links for videos, even on private accounts. | |
// @author Evan Straw | |
// @include http://*.tiktok.com/* | |
// @include https://*.tiktok.com/* | |
// @grant none | |
// ==/UserScript== |
Video tutorial of this gist file : https://www.youtube.com/watch?v=kmT-z2lqEPQ | |
Used web UI commit hash id: a9eef1fbb1dcdce4f0eb0b8e0f79dcd4c96713e1 | |
Used ControlNet commit hash id : 241c05f8c9d3c5abe637187e3c4bb46f17447029 | |
git checkout a9eef1fbb1dcdce4f0eb0b8e0f79dcd4c96713e1 | |
git checkout master |
#!/bin/bash | |
### steps #### | |
# verify the system has a cuda-capable gpu | |
# download and install the nvidia cuda toolkit and cudnn | |
# setup environmental variables | |
# verify the installation | |
### | |
### to verify your gpu is cuda enable check |
# Inspired from https://github.com/JohannesBuchner/imagehash repository | |
import imagehash | |
from PIL import Image | |
def alpharemover(image): | |
if image.mode != 'RGBA': | |
return image | |
canvas = Image.new('RGBA', image.size, (255,255,255,255)) | |
canvas.paste(image, mask=image) | |
return canvas.convert('RGB') |
CoinMarketCap is the world's most-referenced price-tracking website for crypto assets in the rapidly growing cryptocurrency space. Its mission is to make crypto discoverable and efficient globally by empowering retail users with unbiased, high quality and accurate information
In this guide, we will break down the process of leveraging the CoinMarketCap API to seamlessly integrate real-time crptocurrency data in your applications or projects.
While the examples in this blog primarily utilize Python code, it's important to note that the API can be utilized with various programming languages. To explore further, click here.
""" | |
Binance Marketcap PairList provider | |
Provides dynamic pair list based on market cap | |
""" | |
import logging | |
import requests | |
from typing import Any, Dict, List | |
from cachetools.ttl import TTLCache |
""" | |
WeightedMultiparameterHyperOptLoss.py V 0.3 | |
-by Cybergrany | |
A loss function for Freqtrade's hyperopt feature, which allowes the user | |
to choose weights, which influence how much each parameter affects the objective. | |
For example, if I want quick trades and don't care too much about risk, I would | |
give more weight to trades and less to the sortino. | |
Most of the code here is based on existing freqtrade code, namely the sortino | |
function and max drawdown calculations. I've just added a way to incorporate |
A simple bash script to build and locally install gRPC C++. The instructions either on gRPC's website or other places weren't clear enough (at least for me) on how to install it. I spent about a week to finally install it and use it on my project.
Create a .sh file (e.g Install-gRPC.sh) containing the following code.
#!/bin/bash
DISTRO=$(awk -F= '/^ID=/{print $2}' /etc/os-release)
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.