Spaces:
Running
Running
A newer version of the Streamlit SDK is available:
1.45.1
metadata
license: mit
title: Nano AI Image Analyzer
sdk: streamlit
emoji: π
colorFrom: indigo
colorTo: red
pinned: false
short_description: analyze image using gen ai
π± Nano AI Image Analyzer
this is a Gen-AI project. that utilizes various AI models to analyze a picture.
steps
create your virtual environment (venv) [optional]
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
.\venv\Scripts\Activate.ps1 #powershell
venv\Scripts\activate.bat #cmdinstall all modules under
requirements.txt
using -->pip install -r requirements.txt
run the app using
streamlit run app.py
make sure to check
.streamlit/config.toml
for your streamlit settings
features offered
π Detect Objects
detects person, car, watch, TV etccreates a bounded box around it
provides a table with rows representing object type, box coordinates, score
π Describe Image
generates a very small captionπ Generate Story
creates a story based on caption㪠Chat system
ask about imagemodels used π€π»
why don't you read the apps.py
? π
file structure
|-- .streamlit
| |-- config.toml --> streamlit configuration
|
|-- app.py --> main app
|-- functions.py --> functions used in the app. (it is not a module)
|-- instruction.txt --> draft of README.md
|-- requirements.txt --> all the pakages under venv. generated using `pip freeze`
|-- type2.py \
|-- type3.py --> some extra template i used while developing
|-- type4.py /