Skip to content

Instantly share code, notes, and snippets.

View omrylcn's full-sized avatar
🎯
Focusing

Ömer Yalçın omrylcn

🎯
Focusing
View GitHub Profile
@gsamil
gsamil / illustrated_deepseek_r1.md
Last active August 27, 2025 03:07
Turkish Translation for "The Illustrated DeepSeek-R1"

The Illustrated DeepSeek-R1

Jay Alammar'ın yazdığı The Illustrated DeepSeek-R1 isimli blog'un Türkçe çevirisidir.

illustrated_deepseek_img_001

DeepSeek-R1, yapay zeka modellerinin istikrarlı ilerleyişindeki son etkileyici adımdır. Temel olarak iki sebepten dolayı büyük bir gelişme olduğunu söyleyebiliriz:

  1. Açık kaynak ağırlıklara sahip bir model olması (daha küçük, damıtık versiyonları da dahil)
  2. OpenAI-O1 tarzı bir akıl yürütme modelini yeniden üretmek için bir eğitim yöntemini tasarlayıp paylaşması
@pgolding
pgolding / scan.py
Created June 5, 2017 19:40
scan all elements from a dynamodb table using Python (boto3)
from __future__ import print_function # Python 2/3 compatibility
import boto3
import json
import decimal
from boto3.dynamodb.conditions import Key, Attr
# Helper class to convert a DynamoDB item to JSON.
class DecimalEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, decimal.Decimal):
@DmitrySoshnikov
DmitrySoshnikov / python-closures.py
Created November 15, 2010 12:03
Understanding Python's closures
# "Understanding Python's closures".
#
# Tested in Python 3.1.2
#
# General points:
#
# 1. Closured lexical environments are stored
# in the property __closure__ of a function
#
# 2. If a function does not use free variables