Skip to content

Commit

Permalink
develop add
Browse files Browse the repository at this point in the history
  • Loading branch information
gitworkflows committed Aug 4, 2024
1 parent 58d0917 commit 527d7c4
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 14 deletions.
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

0 comments on commit 527d7c4

Please sign in to comment.