Skip to content

Instantly share code, notes, and snippets.

View brayevalerien's full-sized avatar

Valérien brayevalerien

View GitHub Profile
@brayevalerien
brayevalerien / Step-Video-T2V-Eval.md
Last active February 19, 2025 16:36
Step-Video-T2V-Eval benchmark, with the original caption (in chinese) and their translation (in english). The original version can be found at https://github.com/stepfun-ai/Step-Video-T2V/blob/main/benchmark/Step-Video-T2V-Eval
Title Category Original Chinese English Translation
Soccer Scoring Sports 一名足球运动员在球场上带球奔跑,快速传球,然后射门得分。镜头聚焦于运动员的脚下动作和射门瞬间。 A soccer player runs with the ball on the field, quickly passes, and then shoots to score. The camera focuses on the player’s footwork and the moment of the shot.
Basketball Shot Sports 篮球运动员运球过人,跳起投篮,篮球飞入篮筐,运动员庆祝进球。画面只专注于这一个投篮动作。 A basketball player dribbles past opponents, jumps for a shot, the ball flies into the hoop, and the player celebrates the score. The scene focuses solely on this one shooting action.
Tennis Serve Sports 网球选手准备发球,力量十足地将球击出。画面聚焦在发球的瞬间,球飞越球网,落向对手场地。 A tennis player prepares to serve, hitting the ball with full force. The shot focuses on the serving moment as the ball flies over the net and lands in the opponent’s court.
Runner Sprint Sports 一位跑步者在跑道上快速奔跑,镜头跟随他的步伐,展示腿部肌肉的紧张和跑步的速度感。 A runner sprints on a track, with the camera following his steps, showcasing
@brayevalerien
brayevalerien / bucketize.py
Created January 31, 2025 10:46
Automatically storts and resize/crop images into resolution buckets for diffusion models training.
import argparse
import os
from PIL import Image
from PIL.Image import Resampling
def get_args():
parser = argparse.ArgumentParser(
"Bucketize",
@brayevalerien
brayevalerien / dataset_noiser.py
Created October 3, 2024 16:07
Small python script that adds some noise to all images in a dataset.
import os
import argparse
import numpy as np
from PIL import Image
from tqdm import tqdm
def add_gaussian_noise(image: Image, factor: float):
"""
Add a given amount of white guassian noise to an image.
@brayevalerien
brayevalerien / flux-dev-layers.txt
Created September 19, 2024 09:36 — forked from fofr/flux-dev-layers.txt
flux-dev-layers.txt
transformer.transformer_blocks.0.norm1.linear
transformer.transformer_blocks.0.norm1_context.linear
transformer.transformer_blocks.0.attn.to_q
transformer.transformer_blocks.0.attn.to_k
transformer.transformer_blocks.0.attn.to_v
transformer.transformer_blocks.0.attn.add_k_proj
transformer.transformer_blocks.0.attn.add_v_proj
transformer.transformer_blocks.0.attn.add_q_proj
transformer.transformer_blocks.0.attn.to_out.0
transformer.transformer_blocks.0.attn.to_add_out
@brayevalerien
brayevalerien / gist:21a86449b6536703dd378374559ee05f
Created May 6, 2024 00:24
Publication ready pyplot theme (thanks to @aeturrell)
plot_settings = {'ytick.labelsize': 16,
'xtick.labelsize': 16,
'font.size': 22,
'figure.figsize': (10, 5),
'axes.titlesize': 22,
'axes.labelsize': 18,
'lines.linewidth': 2,
'lines.markersize': 3,
'legend.fontsize': 11,
'mathtext.fontset': 'stix',
@brayevalerien
brayevalerien / markov_whatsapp_generator.py
Created June 21, 2023 22:07
Generate messages from a Whatsapp conversation using Markov Chains
import random
import numpy as np
class MarkovChainGenerator:
def __init__(self, order=1, length=10):
self.order = order
self.length = length
self.transitions = {}
def fit(self, X):
@brayevalerien
brayevalerien / print_list_and_dict.py
Last active May 2, 2024 15:23
Advanced print_list function in python
import random
def print_list(list_to_print: list, title: str = None, bullet_point: str = "•", max_items: int = None, randomize: bool = False, indent_level: int = 0) -> None:
"""
Prints a list nicely. Handles sublists. Tupples will be displayed as items: ('e1', 'e2', ...).
Author: Valérien BRAYE (@brayevalerien on github)
Args:
list_to_print (list): the list to be printed
@brayevalerien
brayevalerien / monokai.md
Last active February 25, 2025 10:16
Monokai theme color codes

Monokai theme color codes

Intro

This document lists the colors used in the Monokai Pro theme with the Classic filter. Please check the Monokai Pro website for more informations.

Colors

Monokai Pro with Classic filter colors:

Preview Hexadecimal RGB
Activity Bar Background activity bar background preview #272822 (39, 40, 34)
Activity Bar Foreground activity bar foreground preview #f8f8f2 (248, 248, 242)