Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

develop add #15

Merged
merged 1 commit into from
Aug 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions examples/image_super_resolution/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
fastnode
h5py>2
git+https://github.com/idealo/image-super-resolution
2 changes: 1 addition & 1 deletion examples/separate_audio/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fastnode
# apt-get install ffmpeg
numpy==1.18.5
numpy>=1.18.5
spleeter
2 changes: 0 additions & 2 deletions playground/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,6 @@ RUN pip install $RESOURCES_PATH/fastnode.tar.gz

# Copy playground app to demos folder
COPY resources/playground_app.py $RESOURCES_PATH/demos/
# Copy demos to demos folder
COPY resources/demos/ $RESOURCES_PATH/demos/

# Install ffmpeg for audio seperation demo
RUN \
Expand Down
2 changes: 1 addition & 1 deletion src/fastnode/_about.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Information about this library. This file will automatically changed."""

__version__ = "0.0.12"
__version__ = "0.0.10"
# __author__
# __email__
2 changes: 1 addition & 1 deletion src/fastnode/api/readyapi_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import inspect
from typing import Any, Type

from readyapi import ReadyAPI, Form
from pydantic import BaseModel
from readyapi import Form, ReadyAPI


def as_form(cls: Type[BaseModel]) -> Any:
Expand Down
2 changes: 1 addition & 1 deletion src/fastnode/ui/streamlit_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

import pandas as pd
import streamlit as st
from readyapi.encoders import jsonable_encoder
from loguru import logger
from pydantic import BaseModel, ValidationError, parse_obj_as
from readyapi.encoders import jsonable_encoder

from fastnode import Fastnode
from fastnode.core import name_to_title
Expand Down
Loading