├── .gitignore ├── LICENSE ├── README.md ├── args.py ├── eval.py ├── loss.py ├── lsmdc_dataloader.py ├── metrics.py ├── model.py ├── msrvtt_dataloader.py ├── stop_words.py ├── train.py ├── youcook_dataloader.py └── youtube_dataloader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/args.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/eval.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/loss.py -------------------------------------------------------------------------------- /lsmdc_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/lsmdc_dataloader.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/metrics.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/model.py -------------------------------------------------------------------------------- /msrvtt_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/msrvtt_dataloader.py -------------------------------------------------------------------------------- /stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/stop_words.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/train.py -------------------------------------------------------------------------------- /youcook_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/youcook_dataloader.py -------------------------------------------------------------------------------- /youtube_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoine77340/howto100m/HEAD/youtube_dataloader.py --------------------------------------------------------------------------------