A Python library for processing and analysis of electron backscatter diffraction patterns

kikuchipy kikuchipy is an open-source Python library for processing and analysis of electron backscatter diffraction (EBSD) patterns. The library builds on the tools for multi-dimensional data analysis provided by the HyperSpy library. User guide and API reference: https://kikuchipy.org. The guide consists of Jupyter Notebooks with many links to detailed explanations of the input parameters and output of functions and class methods (the API reference). The notebooks can be inspected statically on the web page or via nbviewer, downloaded and run […]

Read more

A python library with tools for the Molecular Simulation

This package is a python library with tools for the Molecular Simulation – Software Gromos. It allows you to easily set up, manage and analyze simulations in python. General informations about functions can be found in our wiki and usage example for many general functions and theire relations are shown in jupyter notebooks in the examples in the example folder. Content GROMOS wrappers GromosXX wrapper: for simulation execution GromosPP wrapper: for GROMOS++ program usage File handling of all GROMOS file […]

Read more

ETL pipeline on movie data using Python and postgreSQL

Movies-ETL ETL pipeline on movie data using Python and postgreSQL Overview This project consisted on a automated Extraction, Transformation and Load pipeline. This ETL extracted movie data from wikipedia, kaggle, and MovieLens to clean it, transform it, and merge it using Pandas. The product was a merged table with movies and ratings loaded to PostgreSQL. Resources Data sources: movies_metadata.csv ratings.csv wikipedia_movies.json Software: Python PostgreSQL Pandas SQLAlchemy Regular Expressions Results Summary The pipeline was created under the following assumptions: I was […]

Read more

A Brain Tumor Detection and Classification model built using RESNET50 architecture

TumorInsight TumorInsight is a Brain Tumor Detection and Classification model built using RESNET50 architecture. It aims to detect and classify the brain tumours from MRI scans. The detection is done using Image Processing algorithms and classification using Deep learning techniques.The model is also deployed as a web application using Flask framework. Download trained model from here. def main() text = “Hello World!” return text if __name__ == ‘__main__’: text = main() print(text) Lorem ipsum dolor sit amet, consectetur adipiscing elit. […]

Read more

A simple universal code generation tool in python

Żmija Żmija is a simple universal code generation tool. It is intended to be used as a means to generate code that is both efficient and easily maintainable. It is intended to be used in embdedded systems with limited resources, however it can be used anywhere else as well. Żmija lets you define sections in your code where code is generated automatically in accordance to a Python script that you provide. Such a section typically looks like this: /* ~ZMIJA.GENERATOR: […]

Read more

A basic educational Python timer used to learn python and software testing libraries

minutaria minutaria is a basic educational Python timer. The project is educational, it aims to teach myself programming, python programming, python’s stdlib, tools (pdb, venv, mypy…) and ecosystem, development best pratices, git and some software testing libraries or frameworks. The project is separed in 3 parts: a module as a library a CLI utility a simple ncurses GUI using parts of the module, also usable with CLI a GTK GUI using the full module and so also usable with CLI […]

Read more

A set of reliable implementations of reinforcement learning algorithms in PyTorch

Stable Baselines3 Stable Baselines3 (SB3) is a set of reliable implementations of reinforcement learning algorithms in PyTorch. It is the next major version of Stable Baselines. These algorithms will make it easier for the research community and industry to replicate, refine, and identify new ideas, and will create good baselines to build projects on top of. We expect these tools will be used as a base around which new ideas can be added, and as a tool for comparing a […]

Read more

A Python web framework built for super fast app development

appier Appier is an object-oriented Python web framework built for super fast app development. It’s as lightweight as possible, but not too lightweight. It gives you the power of bigger frameworks, without their complexity. Your first app can be just a few lines long: import appier class HelloApp(appier.App): @appier.route(“/”, “GET”) def hello(self): return “Hello World” HelloApp().serve() The same app using the async/await syntax (Python 3.5+) for async execution reads pretty much the same: import appier class HelloApp(appier.App): @appier.route(“/”, “GET”) async […]

Read more

A Python application to predict what is cooking

ez-cuisine-classifier A Python application to predict what is cooking. Environment Python 3.7 Windows 10 Install python -m venv venv .venvScriptsactivate python -m pip install -U pip setuptools pip install -r requirements-dev.txt Data Source The training data is from kaggle’s Recipe Ingredients Dataset. Demo GitHub https://github.com/zehengl/ez-cuisine-classifier    

Read more
1 560 561 562 563 564 912