Skip to content

Instantly share code, notes, and snippets.

View BedirT's full-sized avatar
💦
Working working

Bedir Tapkan BedirT

💦
Working working
View GitHub Profile
@kyo-takano
kyo-takano / few-shot-learning-on-function-calling.ipynb
Last active January 9, 2024 17:41
few-shot-learning-on-function-calling.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sbodenstein
sbodenstein / alphazero_pseudocode.py
Created June 7, 2020 11:06
AlphaZero Official Pseudocode
"""Pseudocode description of the AlphaZero algorithm.
Original taken from 'Data S1' from https://science.sciencemag.org/content/362/6419/1140/tab-figures-data/
"""
from __future__ import google_type_annotations
from __future__ import division
import math
import numpy
@kmhofmann
kmhofmann / installing_nvidia_driver_cuda_cudnn_linux.md
Last active January 10, 2025 22:30
Installing the NVIDIA driver, CUDA and cuDNN on Linux

Installing the NVIDIA driver, CUDA and cuDNN on Linux (Ubuntu 20.04)

This is a companion piece to my instructions on building TensorFlow from source. In particular, the aim is to install the following pieces of software

on an Ubuntu Linux system, in particular Ubuntu 20.04.

@wayneeseguin
wayneeseguin / bibtex.png
Created March 29, 2018 15:33 — forked from max-mapper/bibtex.png
How to make a scientific looking PDF from markdown (with bibliography)
bibtex.png
@wangruohui
wangruohui / Install NVIDIA Driver and CUDA.md
Last active February 20, 2025 01:42
Install NVIDIA Driver and CUDA on Ubuntu / CentOS / Fedora Linux OS
@ismailbaskin
ismailbaskin / turkce_isimler.sql
Last active February 25, 2025 11:30
Türkçe isim veritabanı
-- Turkce isimler sozlugu twitter : http://twitter.com/baskindev
CREATE TABLE `isimler` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`isimler` varchar(255) DEFAULT NULL,
`cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U',
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
-- ----------------------------