All Projects → wwj718 → Jobsvisualization

wwj718 / Jobsvisualization

换一种姿势找合适的工作

Projects that are alternatives of or similar to Jobsvisualization

Pydy Tutorial Human Standing
PyDy tutorial materials for MASB 2014, PYCON 2014, and SciPy 2014/2015.
Stars: ✭ 135 (-0.74%)
Mutual labels:  jupyter-notebook
Site
Course materials for the Automating GIS processes -course, University of Helsinki, Finland
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
R
Using R with Jupyter / RStudio on Binder
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Monthly Challenges
Repository containing monthly challenges about quantum computing.
Stars: ✭ 126 (-7.35%)
Mutual labels:  jupyter-notebook
Spanet
Spatial Attentive Single-Image Deraining with a High Quality Real Rain Dataset (CVPR'19)
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Python Deep Learning Projects
Python Deep Learning Projects, published by Packt
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Google refexp toolbox
The toolbox for the Google Refexp dataset proposed in this paper: http://arxiv.org/abs/1511.02283
Stars: ✭ 135 (-0.74%)
Mutual labels:  jupyter-notebook
Python for data science
python_for_data_science
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Data Driven Pdes
Stars: ✭ 135 (-0.74%)
Mutual labels:  jupyter-notebook
Pytorchviz
A small package to create visualizations of PyTorch execution graphs
Stars: ✭ 2,054 (+1410.29%)
Mutual labels:  jupyter-notebook
Kyle School
쏘카 데이터 그룹 사내 신입/인턴을 대상으로 한 카일 스쿨
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Pytorch 101 Tutorial Series
PyTorch 101 series covering everything from the basic building blocks all the way to building custom architectures.
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Deep Steganography
Hiding Images within other images using Deep Learning
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Poppy
Physical Optics Propagation in Python
Stars: ✭ 135 (-0.74%)
Mutual labels:  jupyter-notebook
Hierarchical Rnn
Tensorflow implementation of a Hierarchical and Multiscale RNN, described in https://arxiv.org/abs/1609.01704
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Blog stuff
experiments and snippets used on the blog
Stars: ✭ 135 (-0.74%)
Mutual labels:  jupyter-notebook
Reproduce Chexnet
Reproduce CheXNet
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Machine Learning Notes
机器学习笔记
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Data X
This repository is for the Data-X project materials
Stars: ✭ 136 (+0%)
Mutual labels:  jupyter-notebook
Deeplearningfornlpinpytorch
An IPython Notebook tutorial on deep learning for natural language processing, including structure prediction.
Stars: ✭ 1,744 (+1182.35%)
Mutual labels:  jupyter-notebook

jobsVisualization

可视化筛选你中意的工作。

Inspired by bokeh example app movies

该项目的的可视化和交互部分由bokeh驱动,近期@DonaldDai同学在做bokeh文档的翻译工作,欢迎大家参与。项目地址为:Bokeh-CN

Usage(local/dev)

demo

jobs.just4fun.site/jobsVisualization (建议用chrome打开,数据比较多,可能要加载一会儿,这是个待优化地方)

demo

开发环境

mac OSX python2.7

依赖

浏览器兼容性

  • 在max osx下dev状态的应用兼容对html5友好的浏览器:chrome/firefox/safiri
  • 在ubuntu14.04下部署的应用,仅支持chrome,尚不清楚原因,似乎是静态文件出现了乱码(怀疑是nginx的缘故)

todo

优化

计算在server,交互在client,往返传输数据太大,响应迟钝

策略

  1. 思路1:原始数据存在浏览器端,远程用pandas做分析,只传输item_id
  2. 思路2:爬虫的爬取结果允许下载,项目跑在本地,远程响应速度太慢

生产环境/部署

收集静态文件:

cp -r `bokeh info --static` /home/wwj/jobsVisualization/static

启动进程:bokeh serve jobsVisualization --host jobs.just4fun.site --port 5100

nginx反向代理:

server {
    listen 80 ;
    server_name jobs.just4fun.site;

    access_log  /tmp/bokeh.access.log;
    error_log   /tmp/bokeh.error.log debug;

    location / {
        proxy_pass http://127.0.0.1:5100;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_http_version 1.1;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $host:$server_port;
        proxy_buffering off;
    }
    location /apps/static {
                alias /home/wwj/jobsVisualization/static;
            }

}

代码风格

采用google的yapf来统一代码风格

yapf -i filename.py

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].