Spaces:
Build error
Build error
=
commited on
Commit
Β·
592bfb5
1
Parent(s):
7db8a56
adding package
Browse files- fake-face-detection/fake_face_detection.egg-info/PKG-INFO +0 -6
- fake-face-detection/fake_face_detection.egg-info/SOURCES.txt +0 -12
- fake-face-detection/fake_face_detection.egg-info/dependency_links.txt +0 -1
- fake-face-detection/fake_face_detection.egg-info/top_level.txt +0 -1
- fake-face-detection/setup.py +0 -9
- {fake-face-detection/fake_face_detection β fake_face_detection}/__init__.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/__pycache__/__init__.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/data/__init__.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/data/__pycache__/__init__.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/data/__pycache__/collator.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/data/__pycache__/fake_face_dataset.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/data/collator.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/data/fake_face_dataset.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__init__.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__pycache__/__init__.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__pycache__/compute_metrics.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__pycache__/make_predictions.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/metrics/compute_metrics.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/metrics/make_predictions.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__init__.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__pycache__/__init__.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__pycache__/bayesian_optimization.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__pycache__/fake_face_bayesian_optimization.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/optimization/bayesian_optimization.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/optimization/fake_face_bayesian_optimization.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/trainers/__init__.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/trainers/__pycache__/__init__.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/trainers/__pycache__/custom_trainer.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/trainers/custom_trainer.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/trainers/custom_trainer_v1.txt +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/trainers/search_train.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/acquisitions.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/compute_weights.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/generation.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/sampling.cpython-310.pyc +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/acquisitions.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/compute_weights.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/display_pil.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/downscale_image.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/generation.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/get_patches.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/sampling.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/split_data.py +0 -0
- {fake-face-detection/fake_face_detection β fake_face_detection}/utils/visualize_images.py +0 -0
- requirements.txt +1 -2
fake-face-detection/fake_face_detection.egg-info/PKG-INFO
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
Metadata-Version: 2.1
|
2 |
-
Name: fake-face-detection
|
3 |
-
Version: 0.0.1
|
4 |
-
Summary: This package contains the main functions and classes used to achieve the project of detecting if a face's image is true or not.
|
5 |
-
Author: Oumar Kane
|
6 |
-
Author-email: [email protected]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fake-face-detection/fake_face_detection.egg-info/SOURCES.txt
DELETED
@@ -1,12 +0,0 @@
|
|
1 |
-
setup.py
|
2 |
-
fake_face_detection/__init__.py
|
3 |
-
fake_face_detection.egg-info/PKG-INFO
|
4 |
-
fake_face_detection.egg-info/SOURCES.txt
|
5 |
-
fake_face_detection.egg-info/dependency_links.txt
|
6 |
-
fake_face_detection.egg-info/top_level.txt
|
7 |
-
fake_face_detection/optimization/__init__.py
|
8 |
-
fake_face_detection/optimization/bayesian_optimization.py
|
9 |
-
fake_face_detection/utils/acquisitions.py
|
10 |
-
fake_face_detection/utils/compute_weights.py
|
11 |
-
fake_face_detection/utils/generation.py
|
12 |
-
fake_face_detection/utils/sampling.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fake-face-detection/fake_face_detection.egg-info/dependency_links.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
|
|
|
|
fake-face-detection/fake_face_detection.egg-info/top_level.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
fake_face_detection
|
|
|
|
fake-face-detection/setup.py
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
from setuptools import setup
|
2 |
-
|
3 |
-
setup(
|
4 |
-
name="fake_face_detection",
|
5 |
-
version="0.0.1",
|
6 |
-
author="Oumar Kane",
|
7 |
-
author_email="[email protected]",
|
8 |
-
description="This package contains the main functions and classes used to achieve the project of detecting if a face's image is true or not.",
|
9 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{fake-face-detection/fake_face_detection β fake_face_detection}/__init__.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/__pycache__/__init__.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/data/__init__.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/data/__pycache__/__init__.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/data/__pycache__/collator.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/data/__pycache__/fake_face_dataset.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/data/collator.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/data/fake_face_dataset.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__init__.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__pycache__/__init__.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__pycache__/compute_metrics.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/metrics/__pycache__/make_predictions.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/metrics/compute_metrics.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/metrics/make_predictions.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__init__.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__pycache__/__init__.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__pycache__/bayesian_optimization.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/optimization/__pycache__/fake_face_bayesian_optimization.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/optimization/bayesian_optimization.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/optimization/fake_face_bayesian_optimization.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/trainers/__init__.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/trainers/__pycache__/__init__.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/trainers/__pycache__/custom_trainer.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/trainers/custom_trainer.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/trainers/custom_trainer_v1.txt
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/trainers/search_train.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/acquisitions.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/compute_weights.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/generation.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/__pycache__/sampling.cpython-310.pyc
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/acquisitions.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/compute_weights.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/display_pil.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/downscale_image.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/generation.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/get_patches.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/sampling.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/split_data.py
RENAMED
File without changes
|
{fake-face-detection/fake_face_detection β fake_face_detection}/utils/visualize_images.py
RENAMED
File without changes
|
requirements.txt
CHANGED
@@ -3,5 +3,4 @@ torch
|
|
3 |
pillow
|
4 |
opencv-python
|
5 |
pandas
|
6 |
-
numpy
|
7 |
-
fake-face-detection
|
|
|
3 |
pillow
|
4 |
opencv-python
|
5 |
pandas
|
6 |
+
numpy
|
|