How to use:
./wordle.sh
Or try the unlimit mode:
import csv | |
def gradient_desc(m, b, data, learning_rate): | |
"""Gradient Descent""" | |
N = len(data) | |
for i in range(N): | |
x = float(data[i][0]) | |
y = float(data[i][1]) | |
error = y - (m * x + b) |
@echo off | |
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION | |
::this also support calls that contains a absolute windows path | |
::check of one of the params contain a absolute windows path | |
echo.%* | findstr /r /c:"[a-z]:[\\/]" > nul | |
if %errorlevel% == 1 ( | |
::if not just git with the given parameters | |
call :git %* |