update data processing

This commit is contained in:
xyupeng 2024-04-02 10:51:40 +08:00
parent 833c70f2ae
commit ca53b1a21b
24 changed files with 16 additions and 2 deletions

View file

@ -1 +0,0 @@
`python tools/optical_flow/inference.py --meta_path ./data/Panda-70M/processed/meta/test_intact_cut_head-100.csv`

8
tools/scoring/README.md Normal file
View file

@ -0,0 +1,8 @@
## Data Scoring and Filtering
### Aesthetic Score
### Optical Flow Score
`python tools/scoring/optical_flow/inference.py --meta_path ./data/Panda-70M/processed/meta/test_intact_cut_head-100.csv`
### Matching Score

View file

View file

@ -4,7 +4,6 @@ print(f'Current working directory: {os.getcwd()}')
import argparse
import av
import decord
import numpy as np
import pandas as pd
from einops import rearrange
@ -16,6 +15,7 @@ import torch.nn.functional as F
from torch.utils.data import Dataset
from torchvision.transforms.functional import pil_to_tensor
import decord
from unimatch import UniMatch

View file

@ -0,0 +1,7 @@
## Scene Detection and Video Splitting
### Scene Detection
TODO
### Video Splitting
TODO

View file