├── README.md ├── backend ├── .gitignore ├── LICENSE ├── assets │ ├── avatar │ │ ├── female1.jpeg │ │ ├── female2.jpeg │ │ ├── female3.jpeg │ │ ├── female4.jpeg │ │ ├── female5.jpeg │ │ ├── female6.jpeg │ │ ├── male1.jpeg │ │ ├── male10.jpeg │ │ ├── male2.jpeg │ │ ├── male3.jpeg │ │ ├── male4.jpeg │ │ ├── male5.jpeg │ │ ├── male6.jpeg │ │ ├── male7.jpeg │ │ ├── male8.jpeg │ │ └── male9.jpeg │ └── voice │ │ ├── Michelle_Obama_ voice.mp3 │ │ ├── PC_voice.mp3 │ │ ├── ab_voice.mp3 │ │ ├── beyonce_voice.mp3 │ │ ├── emma_watson_ voice.mp3 │ │ ├── modi_voice.mp3 │ │ ├── srk_voice.mp3 │ │ └── trump_voice.mp3 ├── backend.py ├── cog.yaml ├── doyentalker_code.ipynb ├── interface.py ├── main.py ├── model_scripts │ ├── download_models.sh │ └── test.sh ├── requirements.txt └── src │ ├── audio2coeff.py │ ├── audio2exp_models │ ├── audio2exp.py │ └── networks.py │ ├── audio2pose_models │ ├── audio2pose.py │ ├── audio_encoder.py │ ├── cvae.py │ ├── discriminator.py │ ├── networks.py │ └── res_unet.py │ ├── config │ ├── auido2exp.yaml │ ├── auido2pose.yaml │ ├── facerender.yaml │ ├── facerender_still.yaml │ └── similarity_Lm3D_all.mat │ ├── face3d │ ├── data │ │ ├── __init__.py │ │ ├── base_dataset.py │ │ ├── flist_dataset.py │ │ ├── image_folder.py │ │ └── template_dataset.py │ ├── extract_kp_videos.py │ ├── extract_kp_videos_safe.py │ ├── models │ │ ├── __init__.py │ │ ├── arcface_torch │ │ │ ├── README.md │ │ │ ├── backbones │ │ │ │ ├── __init__.py │ │ │ │ ├── iresnet.py │ │ │ │ ├── iresnet2060.py │ │ │ │ └── mobilefacenet.py │ │ │ ├── configs │ │ │ │ ├── 3millions.py │ │ │ │ ├── 3millions_pfc.py │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── glint360k_mbf.py │ │ │ │ ├── glint360k_r100.py │ │ │ │ ├── glint360k_r18.py │ │ │ │ ├── glint360k_r34.py │ │ │ │ ├── glint360k_r50.py │ │ │ │ ├── ms1mv3_mbf.py │ │ │ │ ├── ms1mv3_r18.py │ │ │ │ ├── ms1mv3_r2060.py │ │ │ │ ├── ms1mv3_r34.py │ │ │ │ ├── ms1mv3_r50.py │ │ │ │ └── speed.py │ │ │ ├── dataset.py │ │ │ ├── docs │ │ │ │ ├── eval.md │ │ │ │ ├── install.md │ │ │ │ ├── modelzoo.md │ │ │ │ └── speed_benchmark.md │ │ │ ├── eval │ │ │ │ ├── __init__.py │ │ │ │ └── verification.py │ │ │ ├── eval_ijbc.py │ │ │ ├── inference.py │ │ │ ├── losses.py │ │ │ ├── onnx_helper.py │ │ │ ├── onnx_ijbc.py │ │ │ ├── partial_fc.py │ │ │ ├── requirement.txt │ │ │ ├── run.sh │ │ │ ├── torch2onnx.py │ │ │ ├── train.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── plot.py │ │ │ │ ├── utils_amp.py │ │ │ │ ├── utils_callbacks.py │ │ │ │ ├── utils_config.py │ │ │ │ ├── utils_logging.py │ │ │ │ └── utils_os.py │ │ ├── base_model.py │ │ ├── bfm.py │ │ ├── facerecon_model.py │ │ ├── losses.py │ │ ├── networks.py │ │ └── template_model.py │ ├── options │ │ ├── __init__.py │ │ ├── base_options.py │ │ ├── inference_options.py │ │ ├── test_options.py │ │ └── train_options.py │ ├── util │ │ ├── BBRegressorParam_r.mat │ │ ├── __init__.py │ │ ├── detect_lm68.py │ │ ├── generate_list.py │ │ ├── html.py │ │ ├── load_mats.py │ │ ├── my_awing_arch.py │ │ ├── nvdiffrast.py │ │ ├── preprocess.py │ │ ├── skin_mask.py │ │ ├── test_mean_face.txt │ │ ├── util.py │ │ └── visualizer.py │ └── visualize.py │ ├── facerender │ ├── animate.py │ ├── modules │ │ ├── dense_motion.py │ │ ├── discriminator.py │ │ ├── generator.py │ │ ├── keypoint_detector.py │ │ ├── make_animation.py │ │ ├── mapping.py │ │ └── util.py │ └── sync_batchnorm │ │ ├── __init__.py │ │ ├── batchnorm.py │ │ ├── comm.py │ │ ├── replicate.py │ │ └── unittest.py │ ├── generate_audio_batch.py │ ├── generate_facerender_batch.py │ ├── speech.py │ └── utils │ ├── audio.py │ ├── croper.py │ ├── face_enhancer.py │ ├── hparams.py │ ├── init_path.py │ ├── model2safetensor.py │ ├── paste_pic.py │ ├── preprocess.py │ ├── safetensor_helper.py │ └── videoio.py └── frontend ├── .gitignore ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── LoadingScreen.css ├── LoadingScreen.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/LICENSE -------------------------------------------------------------------------------- /backend/assets/avatar/female1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/female1.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/female2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/female2.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/female3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/female3.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/female4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/female4.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/female5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/female5.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/female6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/female6.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male1.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male10.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male2.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male3.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male4.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male5.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male6.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male7.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male8.jpeg -------------------------------------------------------------------------------- /backend/assets/avatar/male9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/avatar/male9.jpeg -------------------------------------------------------------------------------- /backend/assets/voice/Michelle_Obama_ voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/Michelle_Obama_ voice.mp3 -------------------------------------------------------------------------------- /backend/assets/voice/PC_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/PC_voice.mp3 -------------------------------------------------------------------------------- /backend/assets/voice/ab_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/ab_voice.mp3 -------------------------------------------------------------------------------- /backend/assets/voice/beyonce_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/beyonce_voice.mp3 -------------------------------------------------------------------------------- /backend/assets/voice/emma_watson_ voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/emma_watson_ voice.mp3 -------------------------------------------------------------------------------- /backend/assets/voice/modi_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/modi_voice.mp3 -------------------------------------------------------------------------------- /backend/assets/voice/srk_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/srk_voice.mp3 -------------------------------------------------------------------------------- /backend/assets/voice/trump_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/assets/voice/trump_voice.mp3 -------------------------------------------------------------------------------- /backend/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/backend.py -------------------------------------------------------------------------------- /backend/cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/cog.yaml -------------------------------------------------------------------------------- /backend/doyentalker_code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/doyentalker_code.ipynb -------------------------------------------------------------------------------- /backend/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/interface.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/model_scripts/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/model_scripts/download_models.sh -------------------------------------------------------------------------------- /backend/model_scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/model_scripts/test.sh -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/src/audio2coeff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2coeff.py -------------------------------------------------------------------------------- /backend/src/audio2exp_models/audio2exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2exp_models/audio2exp.py -------------------------------------------------------------------------------- /backend/src/audio2exp_models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2exp_models/networks.py -------------------------------------------------------------------------------- /backend/src/audio2pose_models/audio2pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2pose_models/audio2pose.py -------------------------------------------------------------------------------- /backend/src/audio2pose_models/audio_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2pose_models/audio_encoder.py -------------------------------------------------------------------------------- /backend/src/audio2pose_models/cvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2pose_models/cvae.py -------------------------------------------------------------------------------- /backend/src/audio2pose_models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2pose_models/discriminator.py -------------------------------------------------------------------------------- /backend/src/audio2pose_models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2pose_models/networks.py -------------------------------------------------------------------------------- /backend/src/audio2pose_models/res_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/audio2pose_models/res_unet.py -------------------------------------------------------------------------------- /backend/src/config/auido2exp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/config/auido2exp.yaml -------------------------------------------------------------------------------- /backend/src/config/auido2pose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/config/auido2pose.yaml -------------------------------------------------------------------------------- /backend/src/config/facerender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/config/facerender.yaml -------------------------------------------------------------------------------- /backend/src/config/facerender_still.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/config/facerender_still.yaml -------------------------------------------------------------------------------- /backend/src/config/similarity_Lm3D_all.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/config/similarity_Lm3D_all.mat -------------------------------------------------------------------------------- /backend/src/face3d/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/data/__init__.py -------------------------------------------------------------------------------- /backend/src/face3d/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/data/base_dataset.py -------------------------------------------------------------------------------- /backend/src/face3d/data/flist_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/data/flist_dataset.py -------------------------------------------------------------------------------- /backend/src/face3d/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/data/image_folder.py -------------------------------------------------------------------------------- /backend/src/face3d/data/template_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/data/template_dataset.py -------------------------------------------------------------------------------- /backend/src/face3d/extract_kp_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/extract_kp_videos.py -------------------------------------------------------------------------------- /backend/src/face3d/extract_kp_videos_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/extract_kp_videos_safe.py -------------------------------------------------------------------------------- /backend/src/face3d/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/__init__.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/README.md -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/backbones/__init__.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/backbones/iresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/backbones/iresnet.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/backbones/iresnet2060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/backbones/iresnet2060.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/backbones/mobilefacenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/backbones/mobilefacenet.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/3millions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/3millions.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/3millions_pfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/3millions_pfc.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/base.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/glint360k_mbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/glint360k_mbf.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/glint360k_r100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/glint360k_r100.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/glint360k_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/glint360k_r18.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/glint360k_r34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/glint360k_r34.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/glint360k_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/glint360k_r50.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/ms1mv3_mbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/ms1mv3_mbf.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/ms1mv3_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/ms1mv3_r18.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/ms1mv3_r2060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/ms1mv3_r2060.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/ms1mv3_r34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/ms1mv3_r34.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/ms1mv3_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/ms1mv3_r50.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/configs/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/configs/speed.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/dataset.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/docs/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/docs/eval.md -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/docs/install.md -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/docs/modelzoo.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/docs/speed_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/docs/speed_benchmark.md -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/eval/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/eval/verification.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/eval_ijbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/eval_ijbc.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/inference.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/losses.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/onnx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/onnx_helper.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/onnx_ijbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/onnx_ijbc.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/partial_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/partial_fc.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/requirement.txt: -------------------------------------------------------------------------------- 1 | tensorboard 2 | easydict 3 | mxnet 4 | onnx 5 | sklearn 6 | -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/run.sh -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/torch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/torch2onnx.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/train.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/utils/plot.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/utils/utils_amp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/utils/utils_amp.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/utils/utils_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/utils/utils_callbacks.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/utils/utils_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/utils/utils_config.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/utils/utils_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/arcface_torch/utils/utils_logging.py -------------------------------------------------------------------------------- /backend/src/face3d/models/arcface_torch/utils/utils_os.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/face3d/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/base_model.py -------------------------------------------------------------------------------- /backend/src/face3d/models/bfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/bfm.py -------------------------------------------------------------------------------- /backend/src/face3d/models/facerecon_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/facerecon_model.py -------------------------------------------------------------------------------- /backend/src/face3d/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/losses.py -------------------------------------------------------------------------------- /backend/src/face3d/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/networks.py -------------------------------------------------------------------------------- /backend/src/face3d/models/template_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/models/template_model.py -------------------------------------------------------------------------------- /backend/src/face3d/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/options/__init__.py -------------------------------------------------------------------------------- /backend/src/face3d/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/options/base_options.py -------------------------------------------------------------------------------- /backend/src/face3d/options/inference_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/options/inference_options.py -------------------------------------------------------------------------------- /backend/src/face3d/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/options/test_options.py -------------------------------------------------------------------------------- /backend/src/face3d/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/options/train_options.py -------------------------------------------------------------------------------- /backend/src/face3d/util/BBRegressorParam_r.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/BBRegressorParam_r.mat -------------------------------------------------------------------------------- /backend/src/face3d/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/__init__.py -------------------------------------------------------------------------------- /backend/src/face3d/util/detect_lm68.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/detect_lm68.py -------------------------------------------------------------------------------- /backend/src/face3d/util/generate_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/generate_list.py -------------------------------------------------------------------------------- /backend/src/face3d/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/html.py -------------------------------------------------------------------------------- /backend/src/face3d/util/load_mats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/load_mats.py -------------------------------------------------------------------------------- /backend/src/face3d/util/my_awing_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/my_awing_arch.py -------------------------------------------------------------------------------- /backend/src/face3d/util/nvdiffrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/nvdiffrast.py -------------------------------------------------------------------------------- /backend/src/face3d/util/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/preprocess.py -------------------------------------------------------------------------------- /backend/src/face3d/util/skin_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/skin_mask.py -------------------------------------------------------------------------------- /backend/src/face3d/util/test_mean_face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/test_mean_face.txt -------------------------------------------------------------------------------- /backend/src/face3d/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/util.py -------------------------------------------------------------------------------- /backend/src/face3d/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/util/visualizer.py -------------------------------------------------------------------------------- /backend/src/face3d/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/face3d/visualize.py -------------------------------------------------------------------------------- /backend/src/facerender/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/animate.py -------------------------------------------------------------------------------- /backend/src/facerender/modules/dense_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/modules/dense_motion.py -------------------------------------------------------------------------------- /backend/src/facerender/modules/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/modules/discriminator.py -------------------------------------------------------------------------------- /backend/src/facerender/modules/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/modules/generator.py -------------------------------------------------------------------------------- /backend/src/facerender/modules/keypoint_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/modules/keypoint_detector.py -------------------------------------------------------------------------------- /backend/src/facerender/modules/make_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/modules/make_animation.py -------------------------------------------------------------------------------- /backend/src/facerender/modules/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/modules/mapping.py -------------------------------------------------------------------------------- /backend/src/facerender/modules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/modules/util.py -------------------------------------------------------------------------------- /backend/src/facerender/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /backend/src/facerender/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /backend/src/facerender/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /backend/src/facerender/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /backend/src/facerender/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/facerender/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /backend/src/generate_audio_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/generate_audio_batch.py -------------------------------------------------------------------------------- /backend/src/generate_facerender_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/generate_facerender_batch.py -------------------------------------------------------------------------------- /backend/src/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/speech.py -------------------------------------------------------------------------------- /backend/src/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/audio.py -------------------------------------------------------------------------------- /backend/src/utils/croper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/croper.py -------------------------------------------------------------------------------- /backend/src/utils/face_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/face_enhancer.py -------------------------------------------------------------------------------- /backend/src/utils/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/hparams.py -------------------------------------------------------------------------------- /backend/src/utils/init_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/init_path.py -------------------------------------------------------------------------------- /backend/src/utils/model2safetensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/model2safetensor.py -------------------------------------------------------------------------------- /backend/src/utils/paste_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/paste_pic.py -------------------------------------------------------------------------------- /backend/src/utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/preprocess.py -------------------------------------------------------------------------------- /backend/src/utils/safetensor_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/safetensor_helper.py -------------------------------------------------------------------------------- /backend/src/utils/videoio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/backend/src/utils/videoio.py -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/LoadingScreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/LoadingScreen.css -------------------------------------------------------------------------------- /frontend/src/LoadingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/LoadingScreen.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya1Jhaveri/DoyenTalker/HEAD/frontend/src/setupTests.js --------------------------------------------------------------------------------