3rd party stats file unknown encoding

This forum contains information about 3rd party applications which may be of use to those who run the FAH client and one place where you might be able to get help when using one of those apps.

Moderator: Site Moderators

Post Reply
Kakao
Posts: 30
Joined: Sun Dec 02, 2007 5:52 pm
Location: Brasília, Brazil
Contact:

3rd party stats file unknown encoding

Post by Kakao »

The daily_team_summary.txt.bz2 file is now encoded in an unknown 8 bit encoding, likely ISO-8859-2 according to python's chardet:

Code: Select all

>>> import chardet
>>> rawdata = open('daily_team_summary.txt', 'r').read()
>>> chardet.detect(rawdata)
{'confidence': 0.6944575439363857, 'encoding': 'ISO-8859-2'}
That is preventing the KakaoStats statistics processing. The previous encoding was ISO-8859-1 (latin1). Is it a mistake or will it stay as is?
Last edited by Kakao on Sat Oct 27, 2012 9:33 pm, edited 1 time in total.
Kakao
Posts: 30
Joined: Sun Dec 02, 2007 5:52 pm
Location: Brasília, Brazil
Contact:

Re: 3rd party stats file unknown encoding

Post by Kakao »

iconv can't convert it from ISO-8859-2:

Code: Select all

$ iconv -f ISO_8859-2 -t ISO_8859-1 daily_team_summary.txt -o daily_team_summary.txt.latin1
iconv: illegal input sequence at position 35135
P5-133XL
Posts: 2948
Joined: Sun Dec 02, 2007 4:36 am
Hardware configuration: Machine #1:

Intel Q9450; 2x2GB=8GB Ram; Gigabyte GA-X48-DS4 Motherboard; PC Power and Cooling Q750 PS; 2x GTX 460; Windows Server 2008 X64 (SP1).

Machine #2:

Intel Q6600; 2x2GB=4GB Ram; Gigabyte GA-X48-DS4 Motherboard; PC Power and Cooling Q750 PS; 2x GTX 460 video card; Windows 7 X64.

Machine 3:

Dell Dimension 8400, 3.2GHz P4 4x512GB Ram, Video card GTX 460, Windows 7 X32

I am currently folding just on the 5x GTX 460's for aprox. 70K PPD
Location: Salem. OR USA

Re: 3rd party stats file unknown encoding

Post by P5-133XL »

I pinged some people and hopefully they will address it quickly.
Image
Kakao
Posts: 30
Joined: Sun Dec 02, 2007 5:52 pm
Location: Brasília, Brazil
Contact:

Re: 3rd party stats file unknown encoding

Post by Kakao »

I fixed it. My mistake.
Last edited by Kakao on Sat Oct 27, 2012 9:59 pm, edited 1 time in total.
Jesse_V
Site Moderator
Posts: 2851
Joined: Mon Jul 18, 2011 4:44 am
Hardware configuration: OS: Windows 10, Kubuntu 19.04
CPU: i7-6700k
GPU: GTX 970, GTX 1080 TI
RAM: 24 GB DDR4
Location: Western Washington

Re: 3rd party stats file unknown encoding

Post by Jesse_V »

Kakao wrote:I fixed it.
Thanks! :)
F@h is now the top computing platform on the planet and nothing unites people like a dedicated fight against a common enemy. This virus affects all of us. Lets end it together.
VijayPande
Pande Group Member
Posts: 2058
Joined: Fri Nov 30, 2007 6:25 am
Location: Stanford

Re: 3rd party stats file unknown encoding

Post by VijayPande »

ok, so everything is set on your end then?
Prof. Vijay Pande, PhD
Departments of Chemistry, Structural Biology, and Computer Science
Chair, Biophysics
Director, Folding@home Distributed Computing Project
Stanford University
Kakao
Posts: 30
Joined: Sun Dec 02, 2007 5:52 pm
Location: Brasília, Brazil
Contact:

Re: 3rd party stats file unknown encoding

Post by Kakao »

Yes. Sorry for the noise.
Post Reply