* Improve typing for our callbacks * Return 0 for get_download_size * Introduce ONNX powered face enhancer * Introduce ONNX powered face enhancer * Introduce ONNX powered face enhancer * Remove tile processing from frame enhancer * Fix video compress translation for libvpx-vp9 * Allow zero values for video compression * Develop (#134) * Introduce model options to the frame processors * Finish UI to select frame processors models * Simplify frame processors options * Fix lint in CI * Rename all kind of settings to options * Add blend to enhancers * Simplify webcam mode naming * Bypass SSL issues under Windows * Fix blend of frame enhancer * Massive CLI refactoring, Register and apply ARGS via the frame processors * Refine UI theme and introduce donate button * Update dependencies and fix cpu only torch * Update dependencies and fix cpu only torch * Fix theme, Fix frame_processors in headless mode * Remove useless astype * Disable CoreML for the ONNX face enhancer * Disable CoreML for the ONNX face enhancer * Predict webcam too * Improve resize of preview * Change output quality defaults, Move options to the right * Support for codeformer model * Update the typo * Add GPEN and GFPGAN 1.2 * Extract blend_frame methods * Extend the installer * Revert broken Gradio * Rework on ui components * Move output path selector to the output options * Remove tons of pointless component updates * Reset more base theme styling * Use latest Gradio * Fix the sliders * More styles * Update torch to 2.1.0 * Add RealESRNet_x4plus * Fix that button * Use latest onnxruntime-silicon * Looks stable to me * Lowercase model keys, Update preview and readme
30 lines
919 B
Python
30 lines
919 B
Python
from typing import Optional
|
|
import gradio
|
|
|
|
from facefusion import wording
|
|
from facefusion.uis.core import register_ui_component
|
|
from facefusion.uis.components.benchmark import BENCHMARKS
|
|
|
|
BENCHMARK_RUNS_CHECKBOX_GROUP : Optional[gradio.CheckboxGroup] = None
|
|
BENCHMARK_CYCLES_SLIDER : Optional[gradio.Button] = None
|
|
|
|
|
|
def render() -> None:
|
|
global BENCHMARK_RUNS_CHECKBOX_GROUP
|
|
global BENCHMARK_CYCLES_SLIDER
|
|
|
|
BENCHMARK_RUNS_CHECKBOX_GROUP = gradio.CheckboxGroup(
|
|
label = wording.get('benchmark_runs_checkbox_group_label'),
|
|
value = list(BENCHMARKS.keys()),
|
|
choices = list(BENCHMARKS.keys())
|
|
)
|
|
BENCHMARK_CYCLES_SLIDER = gradio.Slider(
|
|
label = wording.get('benchmark_cycles_slider_label'),
|
|
value = 3,
|
|
step = 1,
|
|
minimum = 1,
|
|
maximum = 10
|
|
)
|
|
register_ui_component('benchmark_runs_checkbox_group', BENCHMARK_RUNS_CHECKBOX_GROUP)
|
|
register_ui_component('benchmark_cycles_slider', BENCHMARK_CYCLES_SLIDER)
|