Skip to content

Instantly share code, notes, and snippets.

View Bhavesh-Joshi's full-sized avatar

Bhavesh Joshi Bhavesh-Joshi

View GitHub Profile
crim zn indus chas nox rm age dis rad tax ptratio b lstat
0.00632 18 2.31 0 0.538 6.575 65.2 4.09 1 296 15.3 396.9 4.98
0.02731 0 7.07 0 0.469 6.421 78.9 4.9671 2 242 17.8 396.9 9.14
0.02729 0 7.07 0 0.469 7.185 61.1 4.9671 2 242 17.8 392.83 4.03
0.03237 0 2.18 0 0.458 6.998 45.8 6.0622 3 222 18.7 394.63 2.94
0.06905 0 2.18 0 0.458 7.147 54.2 6.0622 3 222 18.7 396.9 5.33
0.02985 0 2.18 0 0.458 6.43 58.7 6.0622 3 222 18.7 394.12 5.21
0.08829 12.5 7.87 0 0.524 6.012 66.6 5.5605 5 311 15.2 395.6 12.43
0.14455 12.5 7.87 0 0.524 6.172 96.1 5.9505 5 311 15.2 396.9 19.15
0.21124 12.5 7.87 0 0.524 5.631 100 6.0821 5 311 15.2 386.63 29.93
1,PR-0000262,7560,New York,M1 and M2,4200,CRAN_Hub_BBU Module,Vendor A,-3360
2,PR-0000259,840,New York,M1 and M2,6720,CRAN_Hub_BBU Module,Vendor A,5880
3,PR-0000261,6720,New York,M1 and M2,7560,CRAN_Hub_BBU Module,Vendor A,840
4,PR-0000262,1680,New York,M1 and M2,5880,CRAN_Hub_BBU Module,Vendor B,4200
5,PR-0000259,5880,New York,M1 and M2,5040,CRAN_Hub_BBU Module,Vendor B,-840
6,PR-0000261,2520,New York,M1 and M2,3360,CRAN_Hub_BBU Module,Vendor B,840
7,PR-0000262,5040,New York,M1 and M2,1680,CRAN_Hub_BBU Module,Vendor C,-3360
8,PR-0000259,3360,New York,M1 and M2,2520,CRAN_Hub_BBU Module,Vendor C,-840
9,PR-0000261,4200,New York,M1 and M2,840,CRAN_Hub_BBU Module,Vendor C,-3360
10,PR-0000262,7560,New York,M1 and M2,4200,CRAN_Hub_BBU Module,Vendor D,-3360
This file has been truncated, but you can view the full file.
,ID,Name,Age,Photo,Nationality,Flag,Overall,Potential,Club,Club Logo,Value,Wage,Special,Preferred Foot,International Reputation,Weak Foot,Skill Moves,Work Rate,Body Type,Real Face,Position,Jersey Number,Joined,Loaned From,Contract Valid Until,Height,Weight,LS,ST,RS,LW,LF,CF,RF,RW,LAM,CAM,RAM,LM,LCM,CM,RCM,RM,LWB,LDM,CDM,RDM,RWB,LB,LCB,CB,RCB,RB,Crossing,Finishing,HeadingAccuracy,ShortPassing,Volleys,Dribbling,Curve,FKAccuracy,LongPassing,BallControl,Acceleration,SprintSpeed,Agility,Reactions,Balance,ShotPower,Jumping,Stamina,Strength,LongShots,Aggression,Interceptions,Positioning,Vision,Penalties,Composure,Marking,StandingTackle,SlidingTackle,GKDiving,GKHandling,GKKicking,GKPositioning,GKReflexes,Release Clause
0,158023,L. Messi,31,https://cdn.sofifa.org/players/4/19/158023.png,Argentina,https://cdn.sofifa.org/flags/52.png,94,94,FC Barcelona,https://cdn.sofifa.org/teams/2/light/241.png,€110.5M,€565K,2202,Left,5,4,4,Medium/ Medium,Messi,Yes,RF,10,"Jul 1, 2004",,2021,5'7,159lbs,88+2,88+2,88+2,92+2,93+2,93+2,93+
@Bhavesh-Joshi
Bhavesh-Joshi / vqa_train.py
Last active January 12, 2021 07:32
VQA_Ludwig
from ludwig.api import LudwigModel
import logging
import pandas as pd
data_dict = {'Path': ['/data/Antenna.jpg'], 'Question': ['is antenna visible?'], 'Answer': ['No']}
data = pd.DataFrame.from_dict(data_dict)
print(data)
config = {'combiner': {'type': 'concat'},
'input_features': [{'column': 'Path',
'encoder': 'stacked_cnn',
id point
1 POINT(117.70377121198904 3.810884525363238)
2 POINT(117.79245418549573 3.810884525363238)
polygon
POLYGON ((117.70377121198904 3.754552755990112, 117.70377121198904 3.810884525363238, 117.79245418549573 3.810884525363238, 117.79245418549573 3.754552755990112, 117.70377121198904 3.754552755990112))
@Bhavesh-Joshi
Bhavesh-Joshi / src_Calculator.css
Created July 6, 2017 03:24
Calculator using JavaFX in a simple way
.root{
-fx-background-color: darkgrey;
}
ToggleButton{
-fx-padding: 15;
-fx-font-size: 15;
}