Giter VIP home page Giter VIP logo

tira's Introduction

๐Ÿ”๏ธ mountainplot

mountainplot provides an easy to API to plot a chart showing triangles "mountains" representing the fulfilement of goals. It is meant as an enhancement for the famous matplotlib.

For example if you have climbed 5678m (64.2%) of the Mount Everest ๐Ÿ”๏ธ and you would like to plot your gain on a pretty chart. (and possible other mountains of the seven summits)

Usage

Basically two things are relevant for the usage of mountainplot, namely:

  • Mountain (a named tuple providing parameter for the mountain plot)
  • mountainplot (function taking an axes.Axes matplotlib object and a list of mountains)

Seven Summits Example

Seven Summits

Code for the upper plot.

import matplotlib.pyplot as plt
from mountainplot import Mountain, mountainplot

SEVEN_SUMMITS = [
    Mountain(name='Everest', height=8848 , level=0.642, color='lime', text_color='white'),
    ...
]

plt.style.use('dark_background')
fig, ax = plt.subplots()

ax.axes.get_xaxis().set_visible(False)
mountainplot(ax, SEVEN_SUMMITS)

plt.box(False)
plt.show()

tira's People

Contributors

murthy10 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

kevin-kibet

tira's Issues

Problem with self trained tensorflow model

Hi,

The model isn't working when I replaced your graph.pb and labels.txt file with mine in specified directory.
The error I am getting is 500(Server Error) but its working fine with your model.
Can you please help me out.

Also it would be very helpful for my use case if you can provide 5-10 images of some flowers which you have used to train your model.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.